Re: [FFmpeg-user] duration problem of concatenated audio in powerpoint

2014-11-24 Thread yimi...@gmail.com
-write_xing 0 could fix the problem. Thank you very much!! yimi...@gmail.com From: Carl Eugen Hoyos Date: 2014-11-24 22:57 To: ffmpeg-user Subject: Re: [FFmpeg-user] duration problem of concatenated audio in powerpoint yiminhe gmail.com gmail.com> writes: > But if I inserted them into PPT

Re: [FFmpeg-user] Mixing two audio files to left/right channels, but using a (stream-copied) video from a third input

2014-11-24 Thread Alfredo Di Napoli
You are exactly right Lou, that were my assumptions. Thank you very much for the help and the ready-to-use video filter! Many thanks, Alfredo Sent from my iPad > On 24/nov/2014, at 20:20, Lou wrote: > > On Mon, 24 Nov 2014 17:04:24 +0100 > Alfredo Di Napoli wrote: > >> Hello everyone, >> >>

[FFmpeg-user] RTP Multicast doesn't play

2014-11-24 Thread Eric Lovelace
Hello all, I am attempting to take an rtmp stream and push it out over multicast. It appears like it is working on the server end and I can see the packets pushed out; however the video does not play in any player. If I run wireshark on the receiving machine I can see the rtp packets arriving

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread n32
On 2014-11-24 15:30, James Darnley wrote: > You are setting VBV options for ffmpeg and not in mencoder (and forcing > CBR at that) do I'm not surprised you get different output. I think this is not the source of the problem: I saw the same bitrate in the time of frame which I visually compared; s

Re: [FFmpeg-user] Mixing two audio files to left/right channels, but using a (stream-copied) video from a third input

2014-11-24 Thread Lou
On Mon, 24 Nov 2014 17:04:24 +0100 Alfredo Di Napoli wrote: > Hello everyone, > > and sorry if the title is convoluted, I couldn't find a better one. What > I'm trying to accomplish is simple, in practice: Assume I have three files: > - Left_Audio.mp3 > - Right_Audio.mp3 > - Video.mov > > (Exte

[FFmpeg-user] Mixing two audio files to left/right channels, but using a (stream-copied) video from a third input

2014-11-24 Thread Alfredo Di Napoli
Hello everyone, and sorry if the title is convoluted, I couldn't find a better one. What I'm trying to accomplish is simple, in practice: Assume I have three files: - Left_Audio.mp3 - Right_Audio.mp3 - Video.mov (Extensions are not important). What I would like to achieve is to come up with a CLI

Re: [FFmpeg-user] ffmpeg is not building in my mac os

2014-11-24 Thread Carl Eugen Hoyos
mohanraj kandregula stellentsoft.com> writes: > /bin/ld: error: cannot open crtbegin_dynamic.o: No such file or directory Does it work if you try to compile hello world for Android? Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http:

Re: [FFmpeg-user] config error

2014-11-24 Thread Carl Eugen Hoyos
Hugh Welles gmail.com> writes: > $ PKG_CONFIG_PATH=/tmp/ffmpeg/lib/pkgconfig ./configure --disable-yasm Do not use --disable-yasm unless you want a slow, unsupported output. yasm is a small, selfcontained binary, compile it yourself and put it somewhere in your patch (no need to "make install

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread n32
On 2014-11-24 15:45, Reindl Harald wrote: "that's not the problem *but* you set the 1000k on more places and so force CBR instead VBR which is bad, especially in context of 2-pass because that can *heavily* benefit of VBR in both directions for a optimized balance quality/size" Omitting maxrate

Re: [FFmpeg-user] duration problem of concatenated audio in powerpoint

2014-11-24 Thread Carl Eugen Hoyos
yiminhe gmail.com gmail.com> writes: > But if I inserted them into PPT files with Microsoft > PowerPoint, the duration displayed in powerpoint is > smaller than actual duration. [...] > How can I fix this? 1. Send an email to Microsoft. 2. Try -write_xing 0 Carl Eugen

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread n32
On 2014-11-24 15:44, James Darnley wrote: "Why do you want CBR? I don't think mencoder is giving you CBR." Mainly because of network throughput. Mencoder can make it pretty well. "I did not mean that bitrate but the maxrate and bufsize you have given." I tried to encode it without maxrate and t

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread Reindl Harald
Am 24.11.2014 um 15:40 schrieb n...@email.cz: If you mean "-b:v 1000k", ffmpeg doesn't allow me to run 2-pass without it. Is there another way to get CBR with ffmpeg? that's not the problem *but* you set the 1000k on more places and so force CBR instead VBR which is bad, especially in contex

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread James Darnley
On 2014-11-24 15:40, n...@email.cz wrote: > If you mean "-b:v 1000k", ffmpeg doesn't allow me to run 2-pass without it. > Is there another way to get CBR with ffmpeg? Why do you want CBR? I don't think mencoder is giving you CBR. I did not mean that bitrate but the maxrate and bufsize you have

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread n32
If you mean "-b:v 1000k", ffmpeg doesn't allow me to run 2-pass without it. Is there another way to get CBR with ffmpeg? P. S. Thanks for your very quick answer. On 2014-11-24 15:30, James Darnley wrote: "You are setting VBV options for ffmpeg and not in mencoder (and forcing CBR at that) do I

Re: [FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread James Darnley
On 2014-11-24 15:11, n...@email.cz wrote: > Hi all, > > I used these commands to encode my videos: > > for pass in 1 2; do > mencoder -oac mp3lame -lameopts cbr:br=128 -ovc x264 -x264encopts pass=$ > pass:preset=veryslow:fast_pskip=0:tune=film:frameref=15:bitrate=1000 -o out. > avi in.avi > don

[FFmpeg-user] Worse quality than mencoder

2014-11-24 Thread n32
Hi all, I used these commands to encode my videos: for pass in 1 2; do   mencoder -oac mp3lame -lameopts cbr:br=128 -ovc x264 -x264encopts pass=$ pass:preset=veryslow:fast_pskip=0:tune=film:frameref=15:bitrate=1000 -o out. avi in.avi done I wanted to change to ffmpeg because of troubles with A/V

[FFmpeg-user] duration problem of concatenated audio in powerpoint

2014-11-24 Thread yimi...@gmail.com
Hi all, I'm using ffmpeg to concatenate some mp3 audios. There is no problem when playing the concatenated audio with VLC and WMP. But if I inserted them into PPT files with Microsoft PowerPoint, the duration displayed in powerpoint is smaller than actual duration. And the player stopped very