Projects
Multimedia
h264enc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 380
View file
h264enc.spec
Changed
@@ -1,7 +1,7 @@ # norootforbuild Name: h264enc -Version: 10.3.4 +Version: 10.3.5 Release: 1 License: GPL-2.0+ @@ -58,6 +58,10 @@ %changelog +* Wed Mar 11 2015 Grozdan Nikolov <neutrino8@gmail.com> 10.3.5 + * Support mono and tile format frame packing. Requires latest x264 + * Improved crop detection for files + * Fri Jan 23 2015 Grozdan Nikolov <neutrino8@gmail.com> 10.3.4 * Added support for setting a default software scaler in the config file * Ask for color primaries/transfers/matrics when using any preset, not
View file
h264enc-10.3.4.tar.gz/doc/ChangeLog -> h264enc-10.3.5.tar.gz/doc/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2015-03-11 - h264enc 10.3.5 + * Support mono and tile format frame packing. Requires latest x264 + * Improved crop detection for files + 2015-01-23 - h264enc 10.3.4 * Added support for setting a default software scaler in the config file * Ask for color primaries/transfers/matrics when using any preset, not
View file
h264enc-10.3.4.tar.gz/h264enc -> h264enc-10.3.5.tar.gz/h264enc
Changed
@@ -1,5 +1,5 @@ #!/usr/bin/env bash -# $Id: h264enc, v 10.3.4, 2015/01/23, gn Exp $ +# $Id: h264enc, v 10.3.5, 2015/03/11, gn Exp $ # # Encode BDs/DVDs/VCDs/video files to the H.264/AVC/MPEG-4 Part 10 # video format using MEncoder from MPlayer @@ -23,7 +23,7 @@ shopt -u expand_aliases export PATH=$PATH:/usr/local/bin -version=10.3.4 +version=10.3.5 configversion=34 green() { echo -e "\e[1;32m$1\e[0;39;49m"; } @@ -3052,7 +3052,10 @@ CROPOPTS="-frames 600 -ss 250" cropdetect="$cropdetect:50" ;; - *) CROPOPTS="-frames 500 -ss $(($VLENGTH/2))" ;; + *) + CROPOPTS="-frames 600 -ss $(($VLENGTH/2))" + cropdetect="$cropdetect:40" + ;; esac GETCROP=$($MPLAYER "$sourcetype" $MPLAYEROPTS $device $vid -vf $cropdetect -ao null -vo null $CROPOPTS -nocache 2>/dev/null | tr '\r' '\n' | grep "crop=" | tail -n 1 | awk '{print $9}' | sed 's|crop=||g; s|).||g') rm -f "$TEMPDIR/cropdetect" @@ -4846,7 +4849,9 @@ echo "3 -> side by side - L is on the left, R on the right" echo "4 -> top bottom - L is on top, R on bottom" echo "5 -> frame alternation - one view per frame" - echo "6 -> Skip this option" + echo "6 -> mono - 2D frame without any frame packing" + echo "7 -> tile format - L is on top-left, R split across" + echo "8 -> Skip this option" echo printf "Select the Frame Packing mode [default is 3]: " read fpm @@ -4857,7 +4862,9 @@ 3|"") frame_packing=":frame_packing=3" ;; 4) frame_packing=":frame_packing=4" ;; 5) frame_packing=":frame_packing=5" ;; - 6) true ;; + 6) frame_packing=":frame_packing=6" ;; + 7) frame_packing=":frame_packing=7" ;; + 8) true ;; *) error "-> Unknown option!" exit_func 1
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
.