On Tue, Nov 17, 2009 at 6:59 PM, Simon <grem...@gmail.com> wrote: > > > On Wed, Nov 18, 2009 at 12:56 PM, Simon <grem...@gmail.com> wrote: >> >>> This version is too old. >>> >>> Christian >>> >> >> OK. At the moment i am using ffmpeg from debian lenny. I guess i should >> look at building the latest ffmpeg first correct? > > OK - i have managed to compile transcode 1.1.5 with everything... when i run > the command i get a "Segmentation fault". Any ideas here? > > # /usr/local/bin/transcode -i preview.m4v -o preview_out11.m4v -y ffmpeg -F > mpeg4 -J logo=file=watermark-24bit.png >
> Segmentation fault typical next step, run it under gdb, get a back trace, post that. try this: (ve)c...@gw42:~/dev/vv/VotaVox/trunk/Votavox/src/VotaVox$ gdb transcode GNU gdb 6.8-debian Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu"... (no debugging symbols found) (gdb) run -i preview.m4v -o preview_out11.m4v -y ffmpeg -F mpeg4 -J logo=file=watermark-24bit.png Starting program: /usr/bin/transcode -i preview.m4v -o preview_out11.m4v -y ffmpeg -F mpeg4 -J logo=file=watermark-24bit.png [Thread debugging using libthread_db enabled] [New Thread 0x7f42189766f0 (LWP 8623)] [New Thread 0x7f42177f1950 (LWP 8646)] transcode v1.0.7 (C) 2001-2003 Thomas Oestreich, 2003-2004 T. Bitterberg, 2004-2008 Transcode Team [transcode] critical: invalid filename or host "preview.m4v" [Thread 0x7f42177f1950 (LWP 8646) exited] Program exited with code 01. (gdb) bt full No stack. only instead of "exited with code 01." you should see "Segmentation fault" and the bt full will dump useful stuff. -- Carl K