diff -Nru luciole-0.8.6/debian/changelog luciole-0.8.6/debian/changelog --- luciole-0.8.6/debian/changelog 2010-09-03 17:39:46.000000000 +0000 +++ luciole-0.8.6/debian/changelog 2013-11-24 13:33:46.000000000 +0000 @@ -1,3 +1,9 @@ +luciole (0.8.6-0ubuntu2) trusty; urgency=low + + * Use avconv instead of ffmpeg. + + -- Dmitrijs Ledkovs Sun, 24 Nov 2013 13:33:36 +0000 + luciole (0.8.6-0ubuntu1) maverick; urgency=low * New upstream release. Bug fixing only release. Fixes: diff -Nru luciole-0.8.6/debian/control luciole-0.8.6/debian/control --- luciole-0.8.6/debian/control 2010-02-15 06:34:40.000000000 +0000 +++ luciole-0.8.6/debian/control 2013-11-24 13:33:34.000000000 +0000 @@ -25,7 +25,7 @@ python-imaging, imagemagick, mencoder, - ffmpeg + libav-tools Description: Image per Image capture tool for movie animations Luciole is a stop motion software for animation movie realization. It can make live capture of images from external devices as webcam or DV cam. diff -Nru luciole-0.8.6/debian/patches/avconv.patch luciole-0.8.6/debian/patches/avconv.patch --- luciole-0.8.6/debian/patches/avconv.patch 1970-01-01 00:00:00.000000000 +0000 +++ luciole-0.8.6/debian/patches/avconv.patch 2013-11-24 13:34:14.000000000 +0000 @@ -0,0 +1,14 @@ +Description: Use avconv instead of ffmpeg. +Author: Dmitrijs Ledkovs + +--- luciole-0.8.6.orig/lucioLib/lcl_export/lcl_export_video.py ++++ luciole-0.8.6/lucioLib/lcl_export/lcl_export_video.py +@@ -250,7 +250,7 @@ class MyExportThread(threading.Thread): + # Build ffmpeg command + # + ffmpeg_cmd = [] +- ffmpeg_cmd.append("ffmpeg") ++ ffmpeg_cmd.append("avconv") + # add input video name + ffmpeg_cmd.append('-i') + ffmpeg_cmd.append(self._videoInPath) diff -Nru luciole-0.8.6/debian/patches/series luciole-0.8.6/debian/patches/series --- luciole-0.8.6/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ luciole-0.8.6/debian/patches/series 2013-11-24 13:34:04.000000000 +0000 @@ -0,0 +1 @@ +avconv.patch