Hi all,

I'd like to help update the xwax package in Debian to the latest
upstream 1.6-beta2, which Ubuntu already has. Then I would like to
backport this new version to jessie-backports, as jessie currently has
xwax version 1.5.

There appears to be a typo in the current patch for Debian
0001-use_either_ffmpeg_or_avconv.patch as follows:

which avconf -> which avconv

I attach an updated copy of the patch.

I am not a Debian Developer but I have done some packaging work in
collab-maint. If it would be possible to have commit access to
pkg-multimedia/xwax on alioth I would gladly push some other fixes
there, for lintian issues etc.

My alioth user name is dhj-guest.

Cheers!

Daniel
Description: Pick either avconv or ffmpeg.
Author: Alessio Treglia <ales...@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722487
Forwarded: no
---
 import |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- xwax.orig/import
+++ xwax/import
@@ -13,6 +13,8 @@
 FILE="$1"
 RATE="$2"
 
+g_fallback_tool="$(which avconv || which ffmpeg)"
+
 case "$FILE" in
 
 *.cdaudio)
@@ -27,7 +29,7 @@ case "$FILE" in
 
 *)
     echo "Calling fallback decoder..." >&2
-    exec ffmpeg -v 0 -i "$FILE" -f s16le -ar "$RATE" -
+    exec "$g_fallback_tool" -v 0 -i "$FILE" -f s16le -ar "$RATE" -
     ;;
 
 esac
_______________________________________________
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Reply via email to