You are on page 1of 6

Batch video_ts > ISO conversion using Imgburn http://www.networkedmediatank.com/showthread.php?

tid=37372

Twitter Facebook NMT Wiki Search Member List Help

Hello There, Guest! (Login — Register) Current time: 04-04-2013, 05:35 PM

Sales Bonanza

[11 Jan. 2013] Customize your A-400 Home Screen | [13 Jan. 2013] NMJ Mockup for a possible
new design (UPDATE)

Firmware: A-400 [2 Apr. 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21
Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware &
Official NMT News | Popcornhour manuals

Networked Media Tank / General / Guides & Tutorials / Batch video_ts > ISO conversion using
Imgburn

User(s) browsing this thread: 1 Guest(s)

Batch video_ts > ISO conversion using Imgburn Threaded Mode | Linear Mode

03-04-2010, 12:49 AM (This post was last modified: 06-06-2010 03:53 PM by chris57.) Post: #1

Noeslee Posts: 36
Junior Member Thanks Given: 4
Thanks Received: 2 in 2
posts
Joined: Feb 2010
Reputation: 0

Batch video_ts > ISO conversion using Imgburn

Guide to convert a whole lot of video_ts folders to ISO without interaction (to run overnight), beware, I had
two DVD9 video_ts folders which lead to interact about a layerbreak, maybe it is possible to automate that to,
but I haven't.

Hope you will like it and I'm sure there are improvements, but this worked for me.

install imgburn (freeware) (use google)

make sure your folders are setup like this:


\example.movies\movie.name1\VIDEO_TS
\example.movies\movie.name2\VIDEO_TS
...

create in example.movies a batchfile batch_to_iso.bat with this code:

Code:
for /F "usebackq delims=;" %%I in (file_list.txt) do "C:\Program Files (x86)\ImgBurn\ImgBurn.exe"
/MODE BUILD /BUILDMODE IMAGEFILE /SRC "%%I\" /DEST "d:\ISOs\%%I.iso" /FILESYSTEM "ISO9660 + UDF"
/UDFREVISION "1.02" /VOLUMELABEL "%%I"  /rootfolder yes /start /close /noimagedetails
make sure you have a d:\ISOS folder or alter the batch file with your own destination, the location of the
imgburn.exe can be different in your setup, so please check before execute.

open a dos box, cd to your \example.movies\


to create your file_list.txt enter:

Code:

1 of 6 04/04/2013 17:42
Batch video_ts > ISO conversion using Imgburn http://www.networkedmediatank.com/showthread.php?tid=37372

dir /A:D /B /O:N > file_list.txt

open the just created file with notepad and put an ; at the end of each line, something like this:

Code:
Aladdin (1992);
Aladdin and the King of Thieves (1995);
Aladdin The Return of Jafar (1994);
The Lion King (1994);
The Lion King 3 (2004);
The Lion King II Simba's Pride (1998);

open a dos box cd to your \example.movies\ en then type batch_to_iso.bat

1 user says Thank You to Noeslee for this post

06-06-2010, 10:39 AM (This post was last modified: 06-06-2010 10:41 AM by Gravityz.) Post: #2

Gravityz Posts: 248


Member Thanks Given: 5
Thanks Received: 13 in 13
posts
Joined: Jan 2009
Reputation: 0

RE: mass video_ts conversion to ISO using imgburn

Thanks,

really good info.

i am currently facing the fact that the a110 will not play video_ts anymore so i probably need to convert to
iso.

i modified your script and made it better(i think.)

i added some code which automates the adding ; part.

just install imgburn, put the script in the root of your drive(or in the directory containing al your dvd's(your
example.movies)and start it up.

You can allways add an extra command to delete every dvd folder when it is done but i like to test first and
delete later.

here is the script.


********************

Code:
;create list of all titles
dir /A:D /B /O:N > listtmp.txt
;add ; to end of name
set addtext=;
if exist tmpfile.txt del /q tmpfile.txt
for /f "delims=" %%l in (listtmp.txt) Do (
      echo %%l%addtext% >> file_list.txt
)
del /q listtmp.txt
;convert every name in file to iso version using imgburn
for /F "usebackq delims=;" %%I in (file_list.txt) do "C:\Program Files (x86)\ImgBurn\ImgBurn.exe"
***********************

Noeslee Wrote: (03-04-2010 12:49 AM)


Guide to convert a whole lot of video_ts folders to ISO without interaction (to run overnight), beware, I had
two DVD9 video_ts folders which lead to interact about a layerbreak, maybe it is possible to automate that
to, but I haven't.

2 of 6 04/04/2013 17:42
Batch video_ts > ISO conversion using Imgburn http://www.networkedmediatank.com/showthread.php?tid=37372

Hope you will like it and I'm sure there are improvements, but this worked for me.

install imgburn (freeware) (use google)

make sure your folders are setup like this:


\example.movies\movie.name1\VIDEO_TS
\example.movies\movie.name2\VIDEO_TS
...

create in example.movies a batchfile batch_to_iso.bat with this code:

Code:
for /F "usebackq delims=;" %%I in (file_list.txt) do "C:\Program Files (x86)\ImgBurn\ImgBurn.exe"
/MODE BUILD /BUILDMODE IMAGEFILE /SRC "%%I\" /DEST "d:\ISOs\%%I.iso" /FILESYSTEM "ISO9660 + UDF"
/UDFREVISION "1.02" /VOLUMELABEL "%%I"  /rootfolder yes /start /close /noimagedetails
make sure you have a d:\ISOS folder or alter the batch file with your own destination, the location of the
imgburn.exe can be different in your setup, so please check before execute.

open a dos box, cd to your \example.movies\


to create your file_list.txt enter:

Code:
dir /A:D /B /O:N > file_list.txt

open the just created file with notepad and put an ; at the end of each line, something like this:

Code:
Aladdin (1992);
Aladdin and the King of Thieves (1995);
Aladdin The Return of Jafar (1994);
The Lion King (1994);
The Lion King 3 (2004);
The Lion King II Simba's Pride (1998);

open a dos box cd to your \example.movies\ en then type batch_to_iso.bat

1 user says Thank You to Gravityz for this post

07-22-2010, 11:21 PM Post: #3

Noeslee Posts: 36
Junior Member Thanks Given: 4
Thanks Received: 2 in 2
posts
Joined: Feb 2010
Reputation: 0

RE: Batch video_ts > ISO conversion using Imgburn

Thanks and nice job on the improvements.

07-29-2010, 11:31 AM Post: #4

chris57 Posts: 28,612


Super Moderator Thanks Given: 690
Thanks Received: 2,469 in
1,947 posts
Joined: Oct 2007
Reputation: 51

RE: Batch video_ts > ISO conversion using Imgburn

It would make a nice WIKI article.

A400: SSD(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI
CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407

3 of 6 04/04/2013 17:42
Batch video_ts > ISO conversion using Imgburn http://www.networkedmediatank.com/showthread.php?tid=37372

07-29-2010, 12:26 PM Post: #5

lordy Posts: 4,752


Community Software Developer Thanks Given: 175
Thanks Received: 678 in
538 posts
Joined: Feb 2008
Reputation: 36

RE: mass video_ts conversion to ISO using imgburn

Gravityz Wrote: (06-06-2010 10:39 AM)


Thanks,

i am currently facing the fact that the a110 will not play video_ts anymore so i probably need to convert to
iso.

Did I miss something re video_ts support ???

FWIW for anyone using Linux.. and probably OSX?

Code:
for name in ...list of folders containing video_ts ... ; do

    mkisofs ‐dvd‐video ‐o $name.iso $name

done

Oversight: Jukebox | FeedTime: Automatic nzbs

07-29-2010, 01:43 PM Post: #6

chris57 Posts: 28,612


Super Moderator Thanks Given: 690
Thanks Received: 2,469 in
1,947 posts
Joined: Oct 2007
Reputation: 51

RE: mass video_ts conversion to ISO using imgburn

lordy Wrote: (07-29-2010 12:26 PM)


Did I miss something re video_ts support ???

I thought the same but as the guide is really just a conversion process, and personally I use ISO for finished
rips rather than video_ts, thought it could have it's uses.

A400: SSD(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI
CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407

07-29-2010, 05:00 PM Post: #7

Gravityz Posts: 248


Member Thanks Given: 5
Thanks Received: 13 in 13
posts
Joined: Jan 2009
Reputation: 0

RE: Batch video_ts > ISO conversion using Imgburn

Well actually it does play video_ts folders also but i found it a hit and miss after i upgraded my tv from
SCART to HDMI(this really can affect al you movies)

4 of 6 04/04/2013 17:42
Batch video_ts > ISO conversion using Imgburn http://www.networkedmediatank.com/showthread.php?tid=37372

converting to iso seemed to have speed up the player also

i recently had one dvd which did play as video_ts but did not as ISO.

it turned out that al the sections hat a VTS_XX_00.VOB exept the main movie

this was the cause of the A110 not playing the iso file.

i just added a fake VTS_03_00.VOB and it played on both video_ts and ISO

08-02-2010, 05:26 AM Post: #8

chris57 Posts: 28,612


Super Moderator Thanks Given: 690
Thanks Received: 2,469 in
1,947 posts
Joined: Oct 2007
Reputation: 51

RE: Batch video_ts > ISO conversion using Imgburn

Seen that one before I think:-


http://www.networkedmediatank.com/showth...hlight=iso

A400: SSD(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI
CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407

08-10-2010, 10:55 PM Post: #9

Noeslee Posts: 36
Junior Member Thanks Given: 4
Thanks Received: 2 in 2
posts
Joined: Feb 2010
Reputation: 0

RE: Batch video_ts > ISO conversion using Imgburn

I have made the sript because my scraping software doesn't/didn't handle video_ts folders very well, so my
database became messy and needed a lot of attention. Secondly I don't like files and folders in my movie
folder, so now my movie folder only contains files. My PCH a-200 plays iso and video_ts very well

09-05-2010, 05:22 AM (This post was last modified: 09-05-2010 05:23 AM by sunflashx.) Post: #10

sunflashx Posts: 1
Newbie Thanks Given: 0
Thanks Received: 0 in 0
posts
Joined: Sep 2010
Reputation: 0

RE: Batch video_ts > ISO conversion using Imgburn

Noeslee Wrote: (03-04-2010 12:49 AM)


Guide to convert a whole lot of video_ts folders to ISO without interaction (to run overnight), beware, I had
two DVD9 video_ts folders which lead to interact about a layerbreak, maybe it is possible to automate that
to, but I haven't.

I found a solution for the layerbreak issue here:

http://forum.imgburn.com/index.php?showtopic=13338

I haven't seen the dual side warning since I fixed it. The actual setting seemed somewhat elusive to locate
though.

5 of 6 04/04/2013 17:42
Batch video_ts > ISO conversion using Imgburn http://www.networkedmediatank.com/showthread.php?tid=37372

« Next Oldest | Next Newest »

Possibly Related Threads...


Thread: Author Replies: Views: Last Post

03-21-2011 08:57 AM
DVD Ripping & ISO Guide chris57 198 127,553
Last Post: chris57

04-02-2009 12:46 AM
Flippers (How to make a dual sided dvd into a single ISO file) tivo1 2 6,961
Last Post: acoate

08-06-2008 09:21 AM
How to create a DVD ISO chris57 0 15,134
Last Post: chris57

View a Printable Version Forum Jump: -- Guides & Tutorials


Send this Thread to a Friend

Subscribe to this thread

Contact Us | Networked Media Tank | Return to Top | Return to Content | Mobile Version | RSS Syndication

Powered By MyBB, © 2002-2013 MyBB Group.


Copyright © 2001-2011 Syabas Technology , All Rights Reserved

6 of 6 04/04/2013 17:42

You might also like