Page 1 of 1

rtp streaming each Audio Channel with ffmpeg

PostPosted: Wed Feb 19, 2014 10:16 am
by MichaelSchr
Hello

i have an i7 with windows and an Blackmagic Quadcard. Input HD SDI with 8 Audio Channel. I try to stream each Audio Channel with ffmpeg but it doesn't work. Can some help me how i can do this.

Like this audio 1 = englisch rtp://xxxxxx
audio 2 = german rtp://xxxxxx

and so on. Our someone know a Software that can do this.
best regards
Michael

Re: rtp streaming each Audio Channel with ffmpeg

PostPosted: Wed Feb 19, 2014 10:47 am
by Roman Pytkin Pekarek
do U need multiple output streams ? video + each individual audio ?

Re: rtp streaming each Audio Channel with ffmpeg

PostPosted: Wed Feb 19, 2014 11:00 am
by MichaelSchr
only Audio each Channel (mono) one rtp stream

Re: rtp streaming each Audio Channel with ffmpeg

PostPosted: Thu Feb 20, 2014 12:12 am
by Roman Pytkin Pekarek

Re: rtp streaming each Audio Channel with ffmpeg

PostPosted: Thu Feb 20, 2014 10:41 am
by MichaelSchr
yes i know this option but it only works with files not with live input (Blackmagic Card)

Re: rtp streaming each Audio Channel with ffmpeg

PostPosted: Thu Feb 20, 2014 1:50 pm
by Roman Pytkin Pekarek
why not with input ?

For example, assuming INPUT is a stereo audio file, you can switch the two audio channels with the following command:
ffmpeg -i INPUT -map_channel 0.0.1 -map_channel 0.0.0 OUTPUT


if you want to mute the first channel and keep the second:
ffmpeg -i INPUT -map_channel -1 -map_channel 0.0.1 OUTPUT