Re: Segfault when trying to author a menu.
Lawrence D'Oliveiro <ldo-kC51rjc0cqs1dNLGKZg6taU/[email protected]>
| Newsgroups | gmane.comp.multimedia.dvdauthor.user |
|---|---|
| Organization | Geek Central |
| Message-ID | <[email protected]> |
On Mon, 1 Nov 2010 04:55:55 +0000 Kit Rule <[email protected]> wrote: > menu.mpg is produced with the following commands: > > ffmpeg -t 1 -f s16le -ac 2 -i /dev/zero -ab 32k -y silent.mp2 > jpeg2yuv -j pal.jpg -n 25 -f 25 -I p | mpeg2enc -n p -f 8 -a 3 -o > menu.m2v mplex -f 8 -o menu.mpg menu.m2v silent.mp2 This seems overly complicated. Given you’re already depending on FFmpeg, you can use it to produce the whole menu: ffmpeg -loop_input -t 1.0 -i pal.jpg \ -ar 48000 -f s16le -i <(dd if=/dev/zero bs=96000 count=1) \ -target pal-dvd menu.mpg Or even simpler, using my slidify script <http://github.com/ldo/slidify>: slidify --magicksrc=xc:black menu.mpg As for your crashes, it looks like you’re using the command-line options in some inconsistent way that dvdauthor isn’t checking for. Frankly, I’m not sure I have much enthusiasm for maintaining all those menu- and title-building command-line options anyway; I prefer to use the XML file. Any reason you can’t do the same? ------------------------------------------------------------------------------ Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia N8 for consumers in U.S. and Canada $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store http://p.sf.net/sfu/nokia-dev2dev _______________________________________________ Dvdauthor-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dvdauthor-users