Projects
Multimedia
ffx264
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 111
View file
ffx264.changes
Changed
@@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Oct 17 05:40:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.9 + * Support the WMV container format + +------------------------------------------------------------------- Wed Oct 16 05:20:00 UTC 2019 - neutrino8@opensuse.org - Update to version 3.8.8
View file
ffx264.spec
Changed
@@ -17,7 +17,7 @@ Name: ffx264 -Version: 3.8.8 +Version: 3.8.9 Release: 0 Summary: A small shell script for encoding to H.264 with ffmpeg License: GPL-2.0+
View file
ffx264-3.8.8.tar.gz/ChangeLog -> ffx264-3.8.9.tar.gz/ChangeLog
Changed
@@ -1,3 +1,6 @@ +2019-10-17 - ffx264 3.8.9 + * Support the WMV container format + 2019-10-16 - ffx264 3.8.8 * Support the fftdnoiz denoise filter
View file
ffx264-3.8.8.tar.gz/ffx264 -> ffx264-3.8.9.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: 3.8.8 -# Date: 2019-10-16 +# Version: 3.8.9 +# Date: 2019-10-17 # # 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="3.8.8" +version="3.8.9" CFG="$HOME/.ffx264" cfgversion="36" @@ -416,10 +416,10 @@ case "$CONFMT" in mp4|m4v|mov) movflags="-movflags +faststart" ;; avi|m2ts|mts|ts) annexb="-bsf:v h264_mp4toannexb" ;; - mkv|flv) true ;; + mkv|flv|wmv) true ;; *) error "-> H.264 video not supported by the chosen container!" - error "-> Supported containers are: mkv, mp4, mov, m4v, m2ts, mts, ts, flv and avi" + error "-> Supported containers are: mkv, mp4, mov, m4v, m2ts, mts, ts, flv, wmv and avi" error "-> Check your config file, if needed, in '$CFG'" exit 1 ;; @@ -571,7 +571,7 @@ printf "Output to Additional Container Formats? [y/N]: " read acf if [ "$acf" = "y" -o "$acf" = "Y" ]; then - printf "Specify the Container Formats [example: mp4,m2ts,mov - press 'Enter' to skip]: " + printf "Specify the Container Formats [example: mp4,m2ts,wmv,mov - press 'Enter' to skip]: " read rcon test ! -z "$rcon" && remuxcon="$(echo "$rcon" | tr '[:upper:]' '[:lower:]' | tr '[:punct:]' ' ')" if [ ! -z "$remuxcon" ]; then @@ -585,12 +585,13 @@ mp4) green "-> ac3|eac3|dts|aac|fdk-aac|mp3|vorbis|flac|copy" ;; mov) green "-> ac3|eac3|dts|aac|fdk-aac|mp3|vorbis|alac|copy" ;; m4v) green "-> ac3|aac|fdk-aac|alac|copy" ;; + wmv) green "-> ac3|eac3|dts|aac|fdk-aac|mp3|vorbis|wmav1|wmav2|flac|copy" avi) green "-> ac3|eac3|dts|aac|fdk-aac|mp3|vorbis|pcm|flac|wmav1|wmav2|copy" ;; flv) green "-> aac|fdk-aac|mp3|copy" ;; ts|mts|m2ts) green "-> ac3|eac3|truehd|dts|aac|fdk-aac|mp3|vorbis|flac|copy" ;; other) error "-> H.264 video not supported by the $i container!" - error "-> Supported containers are: mkv, mp4, mov, m4v, m2ts, mts, ts, flv and avi" + error "-> Supported containers are: mkv, mp4, mov, m4v, m2ts, mts, ts, flv, wmv and avi" echo exit 1 ;; @@ -621,6 +622,7 @@ mp4) container_func mp4 ;; mov) container_func mov ;; m4v) container_func m4v ;; + wmv) container_func wmv ;; avi) container_func avi ;; ts|mts|m2ts) container_func ts ;; *) container_func other ;; @@ -2416,7 +2418,7 @@ eac3|dts|vorbis|flac|pcm|libopus|opus|truehd|wmav1|wmav2) conerror_func ;; esac ;; - avi) + avi|wmv) case "${acodec[i]}" in libopus|opus|truehd|alac) conerror_func ;; esac @@ -3366,6 +3368,7 @@ echo "" >> "$OUTFILE" case "$i" in avi|m2ts|mts|ts) echo "$FFMPEG -i \"$OUTPUT\" -map 0 -c copy -bsf:v h264_mp4toannexb $strict \"${OUTPUT%.*}.$i\" >/dev/null 2>&1" >> "$OUTFILE" ;; + wmv) echo "$FFMPEG -fflags +genpts -i \"$OUTPUT\" -map 0 -c copy $strict \"${OUTPUT%.*}.$i\" >/dev/null 2>&1" >> "$OUTFILE" ;; *) echo "$FFMPEG -i \"$OUTPUT\" -map 0 -c copy $strict \"${OUTPUT%.*}.$i\" >/dev/null 2>&1" >> "$OUTFILE" ;; esac echo "test \"\$?\" = \"0\" && green \"-> Done\" || red \"-> Failed!\"" >> "$OUTFILE"
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
.