Creating DVD with PAL option (script below) creates the file animenu1-1.mpg (the file for spumux) with 30/FPS. The value 30/FPS is for NTSC and isn't correct for PAL.
Temporary I found for PAL the solution - I changed (forced) in the todisc file the values as follow:
From kazikkaz...@gmail.com on May 18, 2014 10:32:17
Hi,
Creating DVD with PAL option (script below) creates the file animenu1-1.mpg (the file for spumux) with 30/FPS. The value 30/FPS is for NTSC and isn't correct for PAL.
Temporary I found for PAL the solution - I changed (forced) in the todisc file the values as follow:
< TV_STANDARD=ntsc
< PIXEL_AR="10:11"
94,96c94,96 < FRAME_RATE=29.970
< ff_frame_rate="30000/1001"
< VIDSIZE=720x480
!/bin/bash
export LANG=en_US
tovid disc \ -menu-title "" \ -overwrite \ -files \ 001.mpeg \ 002.mpeg \ 003.mpeg \ 004.mpeg \ -titles \ "Title 1" \ "Title 2" \ "Title 3" \ "Title 4" \ -out ../out \ -pal \ -aspect 4:3 \ -noask \ -loop 1 \ -menu-audio-fade 3 \ -menu-length 45 \ -background background.jpg \ -bgaudio menu.wav \ -playall \ -button-style rect \ -align south \ -keepfiles \ -keep-files \ -3dthumbs \ -dvd
Regards, Kazik
Original issue: http://code.google.com/p/tovid/issues/detail?id=167