Sie sind auf Seite 1von 6

Batch video_ts > ISO conversion using Imgburn

1 of 6

http://www.networkedmediatank.com/showthread.php?tid=37372

Twitter

Facebook

NMT Wiki

Hello There, Guest! (Login Register)

Search

Member List

Help

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
Imgburn

/ Batch video_ts > ISO conversion using

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

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.)

Noeslee
Junior Member

Threaded Mode | Linear Mode


Post: #1
Posts: 36
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"usebackqdelims=;"%%Iin(file_list.txt)do"C:\ProgramFiles(x86)\ImgBurn\ImgBurn.exe"
/MODEBUILD/BUILDMODEIMAGEFILE/SRC"%%I\"/DEST"d:\ISOs\%%I.iso"/FILESYSTEM"ISO9660+UDF"
/UDFREVISION"1.02"/VOLUMELABEL"%%I"/rootfolderyes/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:

04/04/2013 17:42

Batch video_ts > ISO conversion using Imgburn

2 of 6

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);
AladdinandtheKingofThieves(1995);
AladdinTheReturnofJafar(1994);
TheLionKing(1994);
TheLionKing3(2004);
TheLionKingIISimba'sPride(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.)

Gravityz
Member

Post: #2
Posts: 248
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:
;createlistofalltitles
dir/A:D/B/O:N>listtmp.txt
;add;toendofname
setaddtext=;
ifexisttmpfile.txtdel/qtmpfile.txt
for/f"delims="%%lin(listtmp.txt)Do(
echo%%l%addtext%>>file_list.txt
)
del/qlisttmp.txt
;converteverynameinfiletoisoversionusingimgburn
for/F"usebackqdelims=;"%%Iin(file_list.txt)do"C:\ProgramFiles(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.

04/04/2013 17:42

Batch video_ts > ISO conversion using Imgburn

3 of 6

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"usebackqdelims=;"%%Iin(file_list.txt)do"C:\ProgramFiles(x86)\ImgBurn\ImgBurn.exe"
/MODEBUILD/BUILDMODEIMAGEFILE/SRC"%%I\"/DEST"d:\ISOs\%%I.iso"/FILESYSTEM"ISO9660+UDF"
/UDFREVISION"1.02"/VOLUMELABEL"%%I"/rootfolderyes/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);
AladdinandtheKingofThieves(1995);
AladdinTheReturnofJafar(1994);
TheLionKing(1994);
TheLionKing3(2004);
TheLionKingIISimba'sPride(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

Noeslee

Post: #3
Posts: 36
Thanks Given: 4
Thanks Received: 2 in 2
posts
Joined: Feb 2010
Reputation: 0

Junior Member

RE: Batch video_ts > ISO conversion using Imgburn

Thanks and nice job on the improvements.

07-29-2010, 11:31 AM

chris57
Super Moderator

Post: #4
Posts: 28,612
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

04/04/2013 17:42

Batch video_ts > ISO conversion using Imgburn

4 of 6

http://www.networkedmediatank.com/showthread.php?tid=37372

07-29-2010, 12:26 PM

lordy
Community Software Developer

Post: #5
Posts: 4,752
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:
fornamein...listoffolderscontainingvideo_ts...;do
mkisofsdvdvideoo$name.iso$name
done
Oversight: Jukebox | FeedTime: Automatic nzbs

07-29-2010, 01:43 PM

chris57
Super Moderator

Post: #6
Posts: 28,612
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

Gravityz
Member

Post: #7
Posts: 248
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)

04/04/2013 17:42

Batch video_ts > ISO conversion using Imgburn

5 of 6

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

chris57
Super Moderator

Post: #8
Posts: 28,612
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

Noeslee
Junior Member

Post: #9
Posts: 36
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.)

sunflashx
Newbie

Post: #10
Posts: 1
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.

04/04/2013 17:42

Batch video_ts > ISO conversion using Imgburn

6 of 6

http://www.networkedmediatank.com/showthread.php?tid=37372

Next Oldest | Next Newest

Possibly Related Threads...


Thread:

DVD Ripping & ISO Guide


Flippers (How to make a dual sided dvd into a single ISO file)
How to create a DVD ISO

View a Printable Version

Forum Jump:

Author

Replies:

Views:

Last Post

chris57

198

127,553

03-21-2011 08:57 AM
Last Post: chris57

tivo1

6,961

04-02-2009 12:46 AM
Last Post: acoate

chris57

15,134

08-06-2008 09:21 AM
Last Post: chris57

-- 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

04/04/2013 17:42

Das könnte Ihnen auch gefallen