Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 147
View file
ffhevc.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Sun Oct 13 05:35:00 UTC 2019 - neutrino8@opensuse.org + +- Update to version 3.8.6 + * Fixed a typo in the keyframe code + * Use readlink -e and realpath -e where needed + * Updated default encoding options and CRF value + * Updated the preset.txt example file + +------------------------------------------------------------------- Fri Oct 11 10:26:00 UTC 2019 - neutrino8@opensuse.org - Update to version 3.8.5
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 3.8.5 +Version: 3.8.6 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with ffmpeg License: GPL-2.0+
View file
ffhevc-3.8.5.tar.gz/ChangeLog -> ffhevc-3.8.6.tar.gz/ChangeLog
Changed
@@ -1,3 +1,9 @@ +2019-10-13 - ffhevc 3.8.6 + * Fixed a typo in the keyframe code + * Use readlink -e and realpath -e where needed + * Updated default encoding options and CRF value + * Updated the preset.txt example file + 2019-10-11 - ffhevc 3.8.5 * Support hardcoding external or embedded subtitles. Requires libass support in FFmpeg
View file
ffhevc-3.8.5.tar.gz/ffhevc -> ffhevc-3.8.6.tar.gz/ffhevc
Changed
@@ -2,8 +2,8 @@ # # Small script to encode to H.265/HEVC video using FFmpeg and libx265. # Author: Grozdan "microchip" Nikolov <neutrino8@opensuse.org> -# Version: 3.8.5 -# Date: 2019-10-11 +# Version: 3.8.6 +# Date: 2019-10-13 # # ffhevc is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -24,10 +24,10 @@ 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.5" +version="3.8.6" CFG="$HOME/.ffhevc" -cfgversion="44" +cfgversion="45" genconfig_func() { cat<<EOF>>"$CFG" @@ -52,7 +52,7 @@ # CRF value (0-51) # Leave empty to ask each time -CRF="20" +CRF="21" # Automatically crop the input? AUTOCROP="y" @@ -116,7 +116,7 @@ # libx265 parameters. Modify, if needed, # to fit your needs # merange is calculated as: ctu size - 4(luma) - 2(chroma) (- 1 if me=hex is used) -X265PARAMS="ref=4:me=star:hme=0:bframes=6:rd=4:subme=4:merange=58:strong-intra-smoothing=0:ctu=64:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=3:tu-intra-depth=3:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rdoq=1.5:psy-rd=2.5:limit-modes=0:limit-refs=1:limit-tu=0:rd-refine=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=0:wpp=1:pmode=0:pme=0:b-intra=1:b-adapt=2:b-pyramid=1:tskip-fast=0:fast-intra=0:early-skip=0:min-keyint=24:keyint=240" +X265PARAMS="ref=4:me=star:hme=0:bframes=6:rd=4:subme=4:merange=58:strong-intra-smoothing=0:ctu=64:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=3:tu-intra-depth=3:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rdoq=1.5:psy-rd=2.5:limit-modes=1:limit-refs=1:limit-tu=1:rd-refine=0:deblock=-3,-3:weightb=1:weightp=1:rect=1:amp=0:wpp=1:pmode=0:pme=0:b-intra=1:b-adapt=2:b-pyramid=1:tskip-fast=0:fast-intra=0:early-skip=0:min-keyint=24:keyint=240" # Leave empty to auto-detect ffmpeg/ffprobe/mplayer # or set your custom ones (eg, /path/to/bin/ffmpeg) @@ -1365,7 +1365,7 @@ error "-> No such file! Skipping" echo else - dolby_vision_rpu=":dolby-vision-rpu=\"$(readlink -m "$dvrpu")\"" + dolby_vision_rpu=":dolby-vision-rpu=\"$(readlink -e "$dvrpu")\"" fi fi fi @@ -1739,7 +1739,7 @@ if [ ! -z "$keyint" ]; then if [ -z "$(echo "$keyint" | grep ':')" ]; then echo - error "-> Invalid setting! Valide is: <min>:<max>" + error "-> Invalid setting! Valid is: <min>:<max>" error "-> Using defaults" echo min_keyint=":min-keyint=24" @@ -2212,7 +2212,7 @@ error "-> No such file! Skipping!" echo else - subtitles="subtitles=\"$(realpath -s "$subfile")\"," + subtitles="subtitles=\"$(realpath -e "$subfile")\"," fi fi ;; @@ -2222,7 +2222,7 @@ if [ ! -z "$batchmode" ]; then test -z "$subpos" && subtitles="subtitles=\"\$i\":si=0," || subtitles="subtitles=\"\$i\":si=$subpos," else - test -z "$subpos" && subtitles="subtitles=\"$(realpath -s "$input")\":si=0," || subtitles="subtitles=\"$(realpath -s "$input")\":si=$subpos," + test -z "$subpos" && subtitles="subtitles=\"$(realpath -e "$input")\":si=0," || subtitles="subtitles=\"$(realpath -e "$input")\":si=$subpos," fi ;; ""|*) @@ -3320,7 +3320,7 @@ echo green "-> Starting to encode in $pass mode..." test -z "$batchmode" && OUT="$OUTPUT" || OUT="'$(dirname "$OUTPUT")' directory" -green "-> Outputting to: $OUT" +green "-> Output to: $OUT" echo color_func blue && printf "Starting to encode in: " && counter_func color_func normal && echo
View file
ffhevc-3.8.5.tar.gz/hdr -> ffhevc-3.8.6.tar.gz/hdr
Changed
@@ -4,7 +4,7 @@ test -z "$1" && echo "Usage: hdr <file>" && exit 1 -FILE="$(realpath -s "$1")" +FILE="$(realpath -e "$1")" hdrfile="/tmp/hdr$$"
View file
ffhevc-3.8.5.tar.gz/preset.txt -> ffhevc-3.8.6.tar.gz/preset.txt
Changed
@@ -1,6 +1,6 @@ # Example of a custom preset file for ffhevc # Can be loaded with: ffhevc -c /path/to/this/file/preset.txt -CRF="20" +CRF="21" -X265PARAMS="ref=4:me=star:bframes=6:rd=5:subme=6:merange=32:strong-intra-smoothing=1:ctu=64:sao=0:cu-lossless=1:cutree=1:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=1:aq-strength=1.1:rdoq-level=1:psy-rdoq=5.5:psy-rd=3.0:limit-modes=1:limit-refs=1:rd-refine=1:deblock=-2,-2:weightb=1:weightp=1:rect=1:amp=0:wpp=1:pmode=0:pme=0:b-intra=1:b-adapt=2:b-pyramid=1:tskip-fast=0:fast-intra=0:early-skip=0:min-keyint=24:keyint=240:colormatrix=bt709:transfer=bt709:colorprim=bt709" +X265PARAMS="ref=4:me=star:bframes=6:rd=4:subme=4:merange=26:strong-intra-smoothing=0:ctu=64:sao=0:cu-lossless=0:cutree=1:rskip=1:max-merge=3:rc-lookahead=60:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rdoq=1.5:psy-rd=2.5:limit-modes=1:limit-refs=1:limit-tu=1:rd-refine=0:deblock=-2,-2:weightb=1:weightp=1:rect=1:amp=0:wpp=1:pmode=0:pme=0:b-intra=1:b-adapt=2:b-pyramid=1:tskip-fast=0:fast-intra=0:early-skip=0:min-keyint=24:keyint=240:colormatrix=bt709:transfer=bt709:colorprim=bt709"
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
.