diff options
author | Cecil <knoppmyth@gmail.com> | 2012-07-24 06:57:16 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2012-07-24 06:57:16 (GMT) |
commit | 4e1a5ca0eb48a0b32731542069579edb826492ab (patch) | |
tree | 1e7a0e77b94e3207ef8d680cc0df6c293bdd03bc /abs/core/linhes-scripts/myth2mkv | |
parent | c30bce893f57b62c0966278c5758ded160f4a98a (diff) | |
parent | d51e88d864876da3582e1a0bfa7e2890c383c126 (diff) | |
download | linhes_pkgbuild-4e1a5ca0eb48a0b32731542069579edb826492ab.zip linhes_pkgbuild-4e1a5ca0eb48a0b32731542069579edb826492ab.tar.gz linhes_pkgbuild-4e1a5ca0eb48a0b32731542069579edb826492ab.tar.bz2 |
Merge branch 'testing' of git@linhes.org:linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/linhes-scripts/myth2mkv')
-rw-r--r-- | abs/core/linhes-scripts/myth2mkv | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/abs/core/linhes-scripts/myth2mkv b/abs/core/linhes-scripts/myth2mkv index 5035748..f180b31 100644 --- a/abs/core/linhes-scripts/myth2mkv +++ b/abs/core/linhes-scripts/myth2mkv @@ -2,7 +2,7 @@ # # Convert video to AVC-1 / h264 # -# version 0.25-001 +# version 0.25-002 # # Prerequisites: # - mythtv >= 0.25 @@ -156,6 +156,11 @@ if [[ ${FPS} = "29.970" ]] ; then FPS="29.97" fi +# HandBrake does not like a framerate of 59.940, so let's drop the 0 +if [[ ${FPS} = "59.940" ]] ; then + FPS="59.94" +fi + # A rough guestimation that if the video width is 1920, 1440, 852, 704, 640 or # 528 pixels it is probably interlaced. if [[ ${DEINT} = Y ]] ; then |