[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 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



User(s) browsing this thread: 1 Guest(s)
Thread Closed 
Batch video_ts > ISO conversion using Imgburn
03-04-2010, 12:49 AM (This post was last modified: 06-06-2010 03:53 PM by chris57.)
Post: #1
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:
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
Find all posts by this user
[+] 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
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" /MODE BUILD /BUILDMODE IMAGEFILE /SRC "%%I\" /DEST "E:\ISO\%%I.iso" /FILESYSTEM "ISO9660 + UDF" /UDFREVISION "1.02" /VOLUMELABEL "%%I"  /rootfolder yes /start /close /noimagedetails
***********************

(03-04-2010 12:49 AM)Noeslee Wrote:  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:
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
Find all posts by this user
[+] 1 user says Thank You to Gravityz for this post
07-22-2010, 11:21 PM
Post: #3
RE: Batch video_ts > ISO conversion using Imgburn
Thanks and nice job on the improvements.Cool
Find all posts by this user
07-29-2010, 11:31 AM
Post: #4
RE: Batch video_ts > ISO conversion using Imgburn
It would make a nice WIKI article.Wink

A400: SSD+SD Card(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
Find all posts by this user
07-29-2010, 12:26 PM
Post: #5
RE: mass video_ts conversion to ISO using imgburn
(06-06-2010 10:39 AM)Gravityz Wrote:  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
Find all posts by this user
07-29-2010, 01:43 PM
Post: #6
RE: mass video_ts conversion to ISO using imgburn
(07-29-2010 12:26 PM)lordy Wrote:  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+SD Card(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
Find all posts by this user
07-29-2010, 05:00 PM
Post: #7
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)

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
Find all posts by this user
08-02-2010, 05:26 AM
Post: #8
RE: Batch video_ts > ISO conversion using Imgburn
Seen that one before I think:-
http://www.networkedmediatank.com/showth...hlight=iso

A400: SSD+SD Card(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
Find all posts by this user
08-10-2010, 10:55 PM
Post: #9
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 Cool
Find all posts by this user
09-05-2010, 05:22 AM (This post was last modified: 09-05-2010 05:23 AM by sunflashx.)
Post: #10
RE: Batch video_ts > ISO conversion using Imgburn
(03-04-2010 12:49 AM)Noeslee Wrote:  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.
Find all posts by this user
Thread Closed 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  DVD Ripping & ISO Guide chris57 198 129,526 03-21-2011 08:57 AM
Last Post: chris57
  Flippers (How to make a dual sided dvd into a single ISO file) tivo1 2 7,175 04-02-2009 12:46 AM
Last Post: acoate
  How to create a DVD ISO chris57 0 15,249 08-06-2008 09:21 AM
Last Post: chris57

Forum Jump: