Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
|
|
Thread Tools | Search this Thread | Display Modes |
14th October 2009, 21:15 | #1 | Link | |
BluRay Maniac
Join Date: Dec 2005
Posts: 2,419
|
ChapterGen: manipulate with chapters in various i/o formats, with CLI support
Ok, I finally finished completly new (from scratch) tool for chapters. This is completly different than my previous qpfilegen tool. BIG Thanks goes to jdobbs who helped and share part of code, the application is no longer dependent on eac3to, it have own Blu-Ray/HDDVD/DVD support.
Supported input formats: - .mpls (Blu-Ray playlists) - .xpl (HD DVD playlists) - .ifo (DVD playlists) - OGG/Matroska File format - Celltimes File format - Blu-Ray, HD DVD, DVD media with stream selector (GUI mode only) Supported Output formats: - OGG Text File - x264 QP Text File - HC Enc Text File - CCE SP Text File - Sonic Cinevision CSV File - Sonic Scenarist CSV File - Spruce DVD Maestro CHP File - tsMuxer Meta File - Timecodes Text File - Celltimes Text File - DVDAuthor Text File - Muxman Text File Additional features: - Converting between framerates - Stream selector when Blu-Ray, HD DVD, DVD media or folder selected - Command line support - Drag & Drop support CLI options: Code:
Syntax: ChapterGen -i <inputfile> -o <outputfile> -f <destination format> -infps <inputFPS> -outfps <outputFPS> Options: -i <string> Specify input file -o <string> Specify output file -f <string> Specify destination format: - OGG: OGG Text File - x264: x264 QP Text File - HC: HC Enc Text File - CCE: CCE SP Text File - Cinevision: Sonic Cinevision CSV File - Scenarist: Sonic Scenarist CSV File - Maestro: Spruce DVD Maestro CHP File - tsMuxer: tsMuxer Meta File - Timecodes: Timecodes Text File - Celltimes: Celltimes Text File - DVDAuthor: DVDAuthor Text File - Muxman: Muxman Text File -infps <float> Specify InputFPS [24/1.001] - 23.976 - 24.000 - 25.000 - 29.970 - 30.000 - 50.000 - 59.940 - 60.000 -outfps <float> Specify OutputFPS [24/1.001] - 23.976 - 24.000 - 25.000 - 29.970 - 30.000 - 50.000 - 59.940 - 60.000 NOTES: fps values can be aslo entered in this formats: 24000/1001 or 24/1.001 for example Current version 1.0.8 Download, Webpage Changelog: Quote:
Last edited by shon3i; 27th July 2011 at 10:56. |
|
15th October 2009, 08:21 | #4 | Link |
HDConvertToX author
Join Date: Nov 2003
Location: Cesena,Italy
Posts: 6,552
|
thanks for your tool!
got error on this ifo (using command line) http://www.64k.it/andres/data/Varie/VTS_02_0.zip (it's Matrix, DVD PAL) using this command line ChapterGen.exe -i "d:\matrix\video_ts\VTS_02_0.IFO" -o matrix.txt -f OGG -infps 25.000 -outfps 25.000 error is number 9 translated from italian.. "Index out of bounds" (or similar) BHH
__________________
HDConvertToX: your tool for BD backup MultiX264: The quick gui for x264 AutoMen: The Mencoder GUI AutoWebM: supporting WebM/VP8 Last edited by buzzqw; 15th October 2009 at 08:23. Reason: added some more info |
19th October 2009, 15:15 | #7 | Link |
HDConvertToX author
Join Date: Nov 2003
Location: Cesena,Italy
Posts: 6,552
|
got some problem...
from cmd prompt ChapterGen.exe -i VTS_02_0.IFO -o zgh.txt -f OGG -infps 25 -outfps 25 now is Error 53 , unable to find file (or something similar) BHH
__________________
HDConvertToX: your tool for BD backup MultiX264: The quick gui for x264 AutoMen: The Mencoder GUI AutoWebM: supporting WebM/VP8 |
19th October 2009, 21:12 | #10 | Link |
BluRay Maniac
Join Date: Dec 2005
Posts: 2,419
|
hmm it's realy strange, here at home i can't reproduce this. Can you please take a screenshot of error to see what is possible reason. I use same cmd and put VTS_02_0.IFO in same folder as ChapterGen.exe, and everything is fine?
|
7th November 2009, 16:30 | #13 | Link |
Registered User
Join Date: Sep 2003
Location: Berlin, Germany
Posts: 3,105
|
Many thanks shon3i for this app. Especially for the fps conversion capability.
Just one request: I still use DVDAuthor a lot for DVD creation, and your app does not support its chapter format. The required format is hh:mm:ss, Just hours, minutes and seconds, no cents and no line breaks, and the separator is a comma. Would you consider adding this format? Cheers manolito |
15th November 2009, 12:42 | #14 | Link | |
BluRay Maniac
Join Date: Dec 2005
Posts: 2,419
|
Quote:
|
|
15th November 2009, 13:47 | #15 | Link |
Registered User
Join Date: Sep 2003
Location: Berlin, Germany
Posts: 3,105
|
Thanks, much appreciated...
The corresponding text in DVDAuthor.xml looks like this: Code:
chapters="00:00:00,00:06:00,00:12:00,00:18:00,00:24:00,00:30:00,00:36:00,00:42:00,00:48:00,00:54:00,01:00:00,01:06:00,01:12:00,01:18:00,01:24:00" Thanks again Cheers manolito |
2nd December 2009, 00:26 | #17 | Link |
Registered User
Join Date: Sep 2003
Location: Berlin, Germany
Posts: 3,105
|
Looks like shon3i is busy with other things right now...
For DVDAuthor compatible output I made a little workaround myself in the meantime. A small batch file converts a Sonic Cinevision CSV file (using sed for Windows). Code:
REM Converts a Sonic Cinevision CSV Chapter file REM to a DVDAuthor compatible Chapter file. REM REM Usage: REM Convert.bat "Drive\Path\Filename" REM REM You can also create a shortcut to Convert.bat REM on your desktop and drag the file you want to REM convert on this shortcut. @echo off sed "s/:/./"3 "%1" >temp.txt sed -e ":a" -e "$!N;s/\n/,/;ta" -e "P;D" temp.txt >"%1" del temp.txt Please rename the executable to Sed.exe... Cheers manolito Last edited by manolito; 8th March 2010 at 21:53. Reason: improved script |
29th June 2010, 04:22 | #18 | Link |
Registered User
Join Date: Mar 2006
Posts: 1,538
|
I just ran into a problem with Serenity Blu-ray. Here is a copy/paste of the chapter file extracted using eac3to:
Code:
CHAPTER01=00:00:00.000 CHAPTER01NAME=Living Weapon CHAPTER02=00:05:00.750 CHAPTER02NAME=A Better World CHAPTER03=00:09:31.938 CHAPTER03NAME=Aboard Serenity (Main Titles) CHAPTER04=00:14:49.088 CHAPTER04NAME=Going for a Ride CHAPTER05=00:19:49.856 CHAPTER05NAME=Reavers CHAPTER06=00:29:13.001 CHAPTER06NAME=Triggered CHAPTER07=00:36:18.259 CHAPTER07NAME=Mr. Universe CHAPTER08=00:44:09.264 CHAPTER08NAME=Safe Haven CHAPTER09=00:49:54.692 CHAPTER09NAME=Civilized Resolution CHAPTER10=00:55:44.041 CHAPTER10NAME=Posing a Threat CHAPTER11=00:59:28.315 CHAPTER11NAME=Miranda CHAPTER12=01:04:45.248 CHAPTER12NAME="Just Believe" CHAPTER13=01:09:13.733 CHAPTER13NAME=Suicide Mission CHAPTER14=01:13:33.776 CHAPTER14NAME=Learning the Secret CHAPTER15=01:22:38.571 CHAPTER15NAME=Caught in the Middle CHAPTER16=01:30:18.580 CHAPTER16NAME=Can't Stop the Signal CHAPTER17=01:36:57.479 CHAPTER17NAME=Fighting for a Belief CHAPTER18=01:45:56.217 CHAPTER18NAME=Do We Have an Order? CHAPTER19=01:47:37.034 CHAPTER19NAME=It's Not Over CHAPTER20=01:53:21.578 CHAPTER20NAME=End Titles Code:
CHAPTER01=00:00:00.000 CHAPTER01NAME=Living Weapon CHAPTER02=00:05:00.750 CHAPTER02NAME=A Better World CHAPTER03=00:09:31.938 CHAPTER03NAME=Aboard Serenity (Main Titles) CHAPTER04=00:14:49.088 CHAPTER04NAME=Going for a Ride CHAPTER05=00:19:49.856 CHAPTER05NAME=Reavers CHAPTER06=00:29:13.001 CHAPTER06NAME=Triggered CHAPTER07=00:36:18.259 |
29th June 2010, 07:40 | #19 | Link | |
BluRay Maniac
Join Date: Dec 2005
Posts: 2,419
|
I can't reproduce problem. Can you send me your mpls from your Blu-Ray
Here what i get from 00000.mpls Quote:
|
|
Thread Tools | Search this Thread |
Display Modes | |
|
|