Projects
Multimedia
h264enc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 384
View file
h264enc.spec
Changed
@@ -1,7 +1,7 @@ # norootforbuild Name: h264enc -Version: 10.3.8 +Version: 10.3.9 Release: 1 License: GPL-2.0+ @@ -14,7 +14,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch -Requires: findutils gpac bc gawk lsdvd nano ogmtools vorbis-tools opus-tools flac aften dcaenc mailx faac MPlayer mkvtoolnix pv +Requires: findutils gpac bc gawk lsdvd nano ogmtools vorbis-tools opus-tools flac aften dcaenc mailx faac MPlayer mkvtoolnix pv x264 %description @@ -58,6 +58,10 @@ %changelog +* Sun May 03 2015 Grozdan Nikolov <neutrino8@gmail.com> 10.3.9 + * Add a check for x264 in the sanity test + * Fix a typo in the x264params var for multi-pass encoding + * Thu Apr 30 2015 Grozdan Nikolov <neutrino8@gmail.com> 10.3.8 * Fixed an issue in the EDL code where tab completion wasn't working due to missing -e option to read
View file
h264enc-10.3.8.tar.gz/doc/ChangeLog -> h264enc-10.3.9.tar.gz/doc/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2015-05-03 - h264enc 10.3.9 + * Add a check for x264 in the sanity test + * Fix a typo in the x264params var for multi-pass encoding + 2015-04-30 - h264enc 10.3.8 * Fixed an issue in the EDL code where tab completion wasn't working due to missing -e option to read
View file
h264enc-10.3.8.tar.gz/h264enc -> h264enc-10.3.9.tar.gz/h264enc
Changed
@@ -1,5 +1,5 @@ #!/usr/bin/env bash -# $Id: h264enc, v 10.3.8, 2015/04/30, gn Exp $ +# $Id: h264enc, v 10.3.9, 2015/05/03, 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.8 +version=10.3.9 configversion=35 green() { echo -e "\e[1;32m$1\e[0;39;49m"; } @@ -945,6 +945,8 @@ echo "-> Checking for MEncoder...................... $(error "Failed")" fi echo + test -x "$X264" && STATUS="$(green "OK")" || STATUS="$(error "Failed")" + echo "-> Checking for 'x264'........................ $STATUS" test -x "$BC" && STATUS="$(green "OK")" || STATUS="$(error "Failed")" echo "-> Checking for 'bc'.......................... $STATUS" test -x "$PV" && STATUS="$(green "OK")" || STATUS="$(error "Failed")" @@ -5004,7 +5006,7 @@ # for multipass modes case "$1" in -[2-3]p) - x2-64params="$(echo "$x264params" | sed 's|:mbtree|:nombtree|')" + x264params="$(echo "$x264params" | sed 's|:mbtree|:nombtree|')" ;; esac
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
.