Skip to content
Advertisement

How can I run command line FFMPEG and accept multiple pipes (video and audio) without blocking on the first input?

I’m trying to mux h264 and aac created with MediaCodec using FFMPEG, and also use FFMPEG’s RTMP support to send to youtube. I’ve created two pipes, and am writing from java (android) through WriteableByteChannels. I can send to one pipe just fine (accepting null audio) like this:

JavaScript

YouTube streaming works perfectly (but I have no audio). Using two pipes this is my command:

JavaScript

The pipes are created with mkfifo , and opened from java like this:

JavaScript

The order of execution (for now in my test phase) is creation of the files, starting ffmpeg (through adb shell) and then starting recording which opens the channels. ffmpeg will immediately open the h264 stream and then wait, since it is reading from the pipe the first channel open (for video) will successfully run. When it comes to trying to open the audio the same way, it fails because ffmpeg has not actually started reading from the pipe. I can open a second terminal window and cat the audio file and my app spits out what i hope is encoded aac, but ffmpeg fails, usually just sitting there waiting. Here is the verbose output:

JavaScript

I think if I could just get ffmpeg to start listening to both pipes, the rest would work out!

Thanks for your time.

EDIT: I’ve made progress by decoupling the audio pipe connection and encoding, but now as soon as the video stream has been passed it errors on audio. I started a separate thread to create the WriteableByteChannel for audio and it never gets passed the FileOutputStream creation.

JavaScript

Here is where I attempt to open the audio pipe.

JavaScript

Thanks.

Advertisement

Answer

Your explanation isn’t very clear, I can see you’re trying to explain exactly what you’re doing, but it’s not working.

First: can you describe the actual issue. I have to read until halfway your post into an 8-line paragraph and it looks like you’re suggesting ffmpeg is hanging. Is that the issue? You really want to be explicit about that.

Secondly: how do you pipe data into the FIFOs? This matters. Your post is entirely unclear, you seem to suggest ffmpeg reads an entire video file and then moves to the audio. Is that correct? Or are both streams fed to ffmpeg concurrently?

Lastly: if ffmpeg hangs, it’s likely because one of your input pipes is blocking (you’re pushing data to FIFO-1 and the buffer is full, but ffmpeg wants data from FIFO-2 and the buffer is empty). Both FIFOs need to always be independently filled with data.

Advertisement