View Single Post
Old 2nd December 2009, 00:26   #16  |  Link
manolito
Registered User
 
manolito's Avatar
 
Join Date: Sep 2003
Location: Berlin, Germany
Posts: 3,078
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
You can download sed here: http://sed.sourceforge.net/grabbag/ssed/sed-3.59.zip
Please rename the executable to Sed.exe...

Cheers
manolito

Last edited by manolito; 8th March 2010 at 21:53. Reason: improved script
manolito is offline   Reply With Quote