Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 150
View file
ffx264.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Feb 10 19:50:00 UTC 2021 - neutrino8@opensuse.org + +- Update to version 4.1.6 + * Support forcing an H.264 level + +------------------------------------------------------------------- Tue Feb 02 14:05:00 UTC 2021 - neutrino8@opensuse.org - Update to version 4.1.5
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 4.1.5 +Version: 4.1.6 Release: 0 Summary: A small shell script for encoding to H.264/AVC with FFmpeg License: GPL-2.0+
View file
ffx264-4.1.5.tar.gz/ChangeLog -> ffx264-4.1.6.tar.gz/ChangeLog
Changed
@@ -1,3 +1,10 @@ +2021-02-10 - ffx264 4.1.6 + * Support forcing an H.264 level + +2021-02-03 - ffx264 4.1.5 + * Replace the yadif deinterlacer with bwdif. It's + faster and provides higher quality + 2021-01-22 - ffx264 4.1.4 * Remove "a" from the -ac audio option * Fix possible negative index in the audio option
View file
ffx264-4.1.5.tar.gz/ffx264 -> ffx264-4.1.6.tar.gz/ffx264
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.264/AVC video using FFmpeg and libx264. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 4.1.5 -# Date: 2021-02-02 +# Version: 4.1.6 +# Date: 2021-02-10 # # ffx264 is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,7 +24,7 @@ brown() { echo -e "\e[0;33m$1\e[0;39;49m"; } error() { echo -e "\e[1;31m$1\e[0;39;49m"; } -version="4.1.5" +version="4.1.6" CFG="$HOME/.ffx264" cfgversion="41" @@ -740,6 +740,66 @@ test -z "$vbv_buf" && vbv_bufsize=":vbv_bufsize=6000"; ffvbv_bufsize="-bufsize 6000k" || vbv_bufsize=":vbv_bufsize=$vbv_buf"; ffvbv_bufsize="-bufsize ${vbv_buf}k" fi +printf "Set the Maximum Decoder Level? [y/N]: " +read mdl +if [ "$mdl"= "y" -o "$mdl"= "Y" ]; then + echo + brown "Decoder Levels" + brown "~~~~~~~~~~~~~~" + echo " 0 --> Auto" + echo " 1 --> Level 1.0" + echo " 2 --> Level 1.1" + echo " 3 --> Level 1.2" + echo " 4 --> Level 1.3" + echo " 5 --> Level 2.0" + echo " 6 --> Level 2.1" + echo " 7 --> Level 2.2" + echo " 8 --> Level 3.0" + echo " 9 --> Level 3.1" + echo " 10 -> Level 3.2" + echo " 11 -> Level 4.0" + echo " 12 -> Level 4.1" + echo " 13 -> Level 4.2" + echo " 14 -> Level 5.0" + echo " 15 -> Level 5.1" + echo " 16 -> Level 5.2" + echo " 17 -> Level 6.0" + echo " 18 -> Level 6.1" + echo " 19 -> Level 6.2" + echo + printf "Specify the H.264 Level [default is 0]: " + read deflev + case "$deflev" in + 0|"") true ;; + 1) dlevel="1.0" ;; + 2) dlevel="1.1" ;; + 3) dlevel="1.2" ;; + 4) dlevel="1.3" ;; + 5) dlevel="2.0" ;; + 6) dlevel="2.1" ;; + 7) dlevel="2.2" ;; + 8) dlevel="3.0" ;; + 9) dlevel="3.1" ;; + 10) dlevel="3.2" ;; + 11) dlevel="4.0" ;; + 12) dlevel="4.1" ;; + 13) dlevel="4.2" ;; + 14) dlevel="5.0" ;; + 15) dlevel="5.1" ;; + 16) dlevel="5.2" ;; + 17) dlevel="6.0" ;; + 18) dlevel="6.1" ;; + 19) dlevel="6.2" ;; + *) + error "-> Unsupported option!" + exit 1 + ;; + esac + if [ ! -z "$dlevel" ]; then + level_idc=":level_idc=$dlevel" + fi +fi + video_denoise_func() { printf "Denoise the Input File? [y/N]: " read dn @@ -3597,7 +3657,7 @@ test ! -z "$vidfilters" && vfilters="-vf $vidfilters" -test ! -z "$vpreset" && X264PARAMS=":force-cfr=1:threads=auto$colorprim$interlaced$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize $vpreset $vtune" || X264PARAMS=":$X264PARAMS$colorprim$interlaced$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize" +test ! -z "$vpreset" && X264PARAMS=":force-cfr=1:threads=auto$colorprim$interlaced$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize$level_idc $vpreset $vtune" || X264PARAMS=":$X264PARAMS$colorprim$interlaced$min_keyint$max_keyint$chromaloc$vbv_maxrate$vbv_bufsize$level_idc" test ! -z "$COMMENT" && METACOMMENT="-metadata comment=\"$COMMENT\""
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.