Projects
Multimedia
h264enc
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 378
View file
h264enc.spec
Changed
@@ -1,7 +1,7 @@ # norootforbuild Name: h264enc -Version: 10.3.2 +Version: 10.3.3 Release: 1 License: GPL-2.0+ @@ -58,6 +58,10 @@ %changelog +* Tue Jan 20 2015 Grozdan Nikolov <neutrino8@gmail.com> 10.3.3 + * Improved original resolution detection. Patch by Markus Grunwald + * Update copyright dates + * Thu Oct 02 2014 Grozdan Nikolov <neutrino8@gmail.com> 10.3.2 * Add the $cache var to a few more places in the audio code * Reorder the audio codec conditionals in the case statements for
View file
h264enc-10.3.2.tar.gz/doc/ChangeLog -> h264enc-10.3.3.tar.gz/doc/ChangeLog
Changed
@@ -1,3 +1,7 @@ +2015-01-20 - h264enc 10.3.3 + * Improved original resolution detection. Patch by Markus Grunwald + * Update copyright dates + 2014-10-02 - h264enc 10.3.2 * Add the $cache var to a few more places in the audio code * Reorder the audio codec conditionals in the case statements for
View file
h264enc-10.3.2.tar.gz/h264enc -> h264enc-10.3.3.tar.gz/h264enc
Changed
@@ -1,10 +1,10 @@ #!/usr/bin/env bash -# $Id: h264enc, v 10.3.2, 2014/10/02, gn Exp $ +# $Id: h264enc, v 10.3.3, 2015/01/20, gn Exp $ # # Encode BDs/DVDs/VCDs/video files to the H.264/AVC/MPEG-4 Part 10 # video format using MEncoder from MPlayer # -# Copyright (C) 2006-2014, Grozdan Nikolov +# Copyright (C) 2006-2015, Grozdan Nikolov # # h264enc is free software ; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +23,7 @@ shopt -u expand_aliases export PATH=$PATH:/usr/local/bin -version=10.3.2 +version=10.3.3 configversion=33 green() { echo -e "\e[1;32m$1\e[0;39;49m"; } @@ -203,7 +203,7 @@ DEFAULT_AUD_CODEC="" DEFAULT_OUTPUT="" TEMPDIR="" -PRIORITY="10" +PRIORITY="19" DVD_DEVICE="" BLURAY_DEVICE="" CDROM_DEVICE="" @@ -3435,7 +3435,7 @@ brown "+=============================================================+" brown "|<<<<<<< h264enc - the interactive shell script ripper >>>>>>>|" brown "|-------------------------------------------------------------|" -brown "|<<<<<< version: $version - (C) 2006-2014, Grozdan Nikolov >>>>>|" +brown "|<<<<<< version: $version - (C) 2006-2015, Grozdan Nikolov >>>>>|" brown "+=============================================================+" echo echo @@ -4420,7 +4420,10 @@ demuxer="-demuxer lavf" fi $MPLAYER "$sourcetype" $MPLAYEROPTS $device $vid $demuxer $cache -vo null -nosound -identify -frames 1 2>/dev/null > "$TEMPDIR/resolution" - GETRES="$(grep '^VIDEO:' "$TEMPDIR/resolution" | tail -n 1 | awk '{print $3}' | sed 's|,$||')" + #GETRES="$(grep '^VIDEO:' "$TEMPDIR/resolution" | tail -n 1 | awk '{print $3}' | sed 's|,$||')" + WORIG=$(awk -F= '/^ID_VIDEO_WIDTH/ { print $2 }' < "$TEMPDIR/resolution" ) + HORIG=$(awk -F= '/^ID_VIDEO_HEIGHT/ { print $2 }' < "$TEMPDIR/resolution" ) + GETRES="${WORIG}x${HORIG}" fi if [ ! -z "$GETRES" ]; then
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
.