Projects
Multimedia
ffhevc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 216
View file
ffhevc.changes
Changed
@@ -1,4 +1,16 @@ ------------------------------------------------------------------- +Mon Jul 13 09:37:00 UTC 2020 - neutrino8@opensuse.org + +- Update to version 4.3.1 + * Enable tskip and hme in default encoding options + * Merge mp4 audio support with ts/m2ts/mts + in the case statement for additional + container formats + * Removed not in use, commented out code + * Lower default AAC audio bitrate from 448 to + 384 kbps + +------------------------------------------------------------------- Sat Jul 04 18:52:00 UTC 2020 - neutrino8@opensuse.org - Update to version 4.3.0
View file
ffhevc.spec
Changed
@@ -17,7 +17,7 @@ Name: ffhevc -Version: 4.3.0 +Version: 4.3.1 Release: 0 Summary: A small shell script for encoding to H.265/HEVC with FFmpeg License: GPL-2.0+
View file
ffhevc-4.3.0.tar.gz/ChangeLog -> ffhevc-4.3.1.tar.gz/ChangeLog
Changed
@@ -1,3 +1,12 @@ +2020-07-13 - ffhevc 4.3.1 + * Enable tskip and hme in default encoding options + * Merge mp4 audio support with ts/m2ts/mts + in the case statement for additional + container formats + * Removed not in use, commented out code + * Lower default AAC audio bitrate from 448 to + 384 kbps + 2020-07-04 - ffhevc 4.3.0 * Switch to rskip mode 2 (edge density). Should prevent onion artifacts and speed up encoding a bit
View file
ffhevc-4.3.0.tar.gz/ffhevc -> ffhevc-4.3.1.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: 4.3.0 -# Date: 2020-07-04 +# Version: 4.3.1 +# Date: 2020-07-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="4.3.0" +version="4.3.1" CFG="$HOME/.ffhevc" -cfgversion="72" +cfgversion="73" genconfig_func() { cat<<EOF>>"$CFG" @@ -123,7 +123,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:hme=0:me=star:merange=58:bframes=8:rd=4:rd-refine=0:subme=5:qcomp=0.7:fades=1:strong-intra-smoothing=0:ctu=64:qg-size=64:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=4:tu-intra-depth=4:rskip=2:max-merge=2:rc-lookahead=100:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rd=3.3:psy-rdoq=16.0:limit-modes=0:limit-refs=0:limit-tu=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:hme=1:hme-search=umh,umh,star:bframes=8:rd=4:rd-refine=0:subme=5:qcomp=0.7:fades=1:strong-intra-smoothing=0:ctu=64:qg-size=64:sao=0:selective-sao=0:cu-lossless=0:cutree=1:tu-inter-depth=4:tu-intra-depth=4:rskip=2:max-merge=2:rc-lookahead=100:aq-mode=1:aq-strength=1.0:rdoq-level=1:psy-rd=3.3:psy-rdoq=16.0:limit-modes=0:limit-refs=0:limit-tu=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=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) @@ -617,9 +617,8 @@ ;; esac case "$1" in - mp4) green "-> ac3|eac3|truehd|dts|aac|fdk-aac|mp3|vorbis|flac|copy" ;; - mov) green "-> ac3|eac3|dts|aac|fdk-aac|mp3|vorbis|alac|copy" ;; - ts|mts|m2ts) green "-> ac3|eac3|truehd|dts|aac|fdk-aac|mp3|vorbis|flac|copy" ;; + mov) green "-> ac3|eac3|dts|aac|fdk-aac|mp3|vorbis|alac|copy" ;; + mp4|ts|mts|m2ts) green "-> ac3|eac3|truehd|dts|aac|fdk-aac|mp3|vorbis|flac|copy" ;; other) error "-> HEVC video not supported by the $i container!" error "-> Supported containers are: mkv, mp4, mov, m2ts, mts and ts" @@ -1672,7 +1671,6 @@ read autocrop if [ "$autocrop" = "y" -o "$autocrop" = "Y" ]; then CROPVAL="\$($FFMPEG -ss \$((\$VLENGTH/2)) -i \"\$i\" $vidmap -vf cropdetect=24:4 -frames:v 1000 -f null - 2>&1 | awk '/crop/ {print \$NF}' | awk -F= '{print \$2}' | tail -1)" - # CROPVAL="\$($MPLAYER \"\$i\" -noconfig all -loop 1 -vid $vidtrack -frames 250 -ss \$((\$VLENGTH/2)) -vf cropdetect=24:4 -ao null -vo null -nocache 2>/dev/null | tr '\r' '\n' | grep 'crop=' | tail -n 1 | awk '{print \$9}' | sed 's|crop=||g; s|).||g')" crop="crop=\$CROPVAL," fi else @@ -1685,7 +1683,6 @@ vlength="$VLENGTH" fi CROPVAL="$($FFMPEG -ss $(($vlength/2)) -i "$input" $vidmap -vf cropdetect=24:4 -frames:v 1000 -f null - 2>&1 | awk '/crop/ {print $NF}' | awk -F= '{print $2}' | tail -1)" - # CROPVAL="$($MPLAYER "$input" -noconfig all -loop 1 -vid $vidtrack -frames 250 -ss $(($vlength/2)) -vf cropdetect=24:4 -ao null -vo null -nocache 2>/dev/null | tr '\r' '\n' | grep 'crop=' | tail -n 1 | awk '{print $9}' | sed 's|crop=||g; s|).||g')" if [ ! -z "$CROPVAL" ]; then green "-> Found crop values: $CROPVAL" else @@ -2618,7 +2615,7 @@ acdc[i]="aac" acdcmeta[i]="LC-AAC" abropts[i]="32-512" - abrdef[i]="448" + abrdef[i]="384" ;; fdk*) acdc[i]="libfdk_aac"
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
.