google-code-export / tovid

Automatically exported from code.google.com/p/tovid
1 stars 0 forks source link

Error 30 FPS for PAL... #167

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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
> TV_STANDARD=pal

< PIXEL_AR="10:11"
> PIXEL_AR="59:54"

94,96c94,96
< FRAME_RATE=29.970 
> FRAME_RATE=25 

< ff_frame_rate="30000/1001"
> ff_frame_rate="25/1"

< VIDSIZE=720x480
> VIDSIZE=720x576

#!/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 reported on code.google.com by kazikkaz...@gmail.com on 18 May 2014 at 2:32

GoogleCodeExporter commented 9 years ago
This was also reported to the tovid-users list and the discussion went on 
there. It is now fixed and verified.

Original comment by grepper@gmail.com on 21 May 2014 at 1:10