1

I am sending stream to flash media server from Adobe Flash Media Live Encoder and I am trying to copy this stream to another FMS using FFmpeg

ffmpeg -analyzeduration 0 -i "rtmp://x.x.x.x/live/stream1 live=1" \
  -vcodec copy -acodec copy -f flv rtmp://y.y.y.y/live/stream1

but there is no audio. Can anyone help me?

Zombo
  • 1
  • 62
  • 391
  • 407
piowit
  • 51
  • 4
  • this is output for copied string 'frame= 488 fps= 25 q=31.0 Lsize= 1148kB time=00:00:19.60 bitrate= 479.7kbits/s dup=0 drop=96 video:1140kB audio:0kB subtitle:0 global headers:0kB muxing overhead 0.714349%' – piowit Apr 16 '13 at 14:11

1 Answers1

0

try like this : ffmpeg -i "rtmp://x.x.x.x/live/stream1 live=1" \ -vcodec copy -acodec copy -f flv rtmp://y.y.y.y/live/stream1

ZmX
  • 9
  • 1