[Python-modules-commits] r20044 - in packages/audioread/trunk/debian (5 files)

laarmen-guest at users.alioth.debian.org laarmen-guest at users.alioth.debian.org
Wed Jan 18 17:08:34 UTC 2012


    Date: Wednesday, January 18, 2012 @ 17:08:32
  Author: laarmen-guest
Revision: 20044

New upstream release and switch from ffmpeg to avconv

Added:
  packages/audioread/trunk/debian/patches/
  packages/audioread/trunk/debian/patches/avconv.patch
  packages/audioread/trunk/debian/patches/series
Modified:
  packages/audioread/trunk/debian/changelog
  packages/audioread/trunk/debian/control

Modified: packages/audioread/trunk/debian/changelog
===================================================================
--- packages/audioread/trunk/debian/changelog	2012-01-18 16:34:28 UTC (rev 20043)
+++ packages/audioread/trunk/debian/changelog	2012-01-18 17:08:32 UTC (rev 20044)
@@ -1,3 +1,11 @@
+audioread (0.3-1) UNRELEASED; urgency=low
+
+  * New upstream release
+  * Patch: avconv.patch make audioread use the avconv executable instead of
+    the deprecated ffmpeg. 
+
+ -- Simon Chopin <chopin.simon at gmail.com>  Wed, 18 Jan 2012 18:05:57 +0100
+
 audioread (0.2-1) unstable; urgency=low
 
   * Initial release (Closes: #651935)

Modified: packages/audioread/trunk/debian/control
===================================================================
--- packages/audioread/trunk/debian/control	2012-01-18 16:34:28 UTC (rev 20043)
+++ packages/audioread/trunk/debian/control	2012-01-18 17:08:32 UTC (rev 20044)
@@ -17,7 +17,7 @@
  ${misc:Depends},
  ${python:Depends}
 Recommends:
- python-gst0.10 | ffmpeg,
+ python-gst0.10 | libav-tools,
  python-pymad
 Description: Backend-agnostic audio decoding Python package
  Decode audio files using whichever backend is available. The library
@@ -25,5 +25,5 @@
  .
   * GStreamer via gst-python.
   * MAD via the pymad bindings.
-  * FFmpeg via its command-line interface.
+  * FFmpeg via the avconv command-line interface.
   * The standard library wave and aifc modules (for WAV and AIFF files).

Added: packages/audioread/trunk/debian/patches/avconv.patch
===================================================================
--- packages/audioread/trunk/debian/patches/avconv.patch	                        (rev 0)
+++ packages/audioread/trunk/debian/patches/avconv.patch	2012-01-18 17:08:32 UTC (rev 20044)
@@ -0,0 +1,17 @@
+Description: Use the avconv executable instead of ffmpeg
+ In Debian, ffmpeg has been deprecated in favor of  the avconv executable
+ since the switch to libav upstream.
+Forwarded: not-needed
+Author: Simon Chopin <chopin.simon at gmail.com>
+Last-Update: 2012-01-18
+--- a/audioread/ffdec.py
++++ b/audioread/ffdec.py
+@@ -35,7 +35,7 @@
+     def __init__(self, filename):
+         try:
+             self.proc = subprocess.Popen(
+-                ['ffmpeg', '-i', filename, '-f', 's16le', '-'],
++                ['avconv', '-i', filename, '-f', 's16le', '-'],
+                 stdout=subprocess.PIPE, stderr=subprocess.PIPE
+             )
+         except OSError:

Added: packages/audioread/trunk/debian/patches/series
===================================================================
--- packages/audioread/trunk/debian/patches/series	                        (rev 0)
+++ packages/audioread/trunk/debian/patches/series	2012-01-18 17:08:32 UTC (rev 20044)
@@ -0,0 +1 @@
+avconv.patch




More information about the Python-modules-commits mailing list