FFmpeg UDP livestream de áudio

1

Tendo problemas para obter o seguinte comando para transmitir áudio através do UDP, há algum parâmetro faltando?

ffmpeg -f alsa -ac 1 -i hw:1 -ar 44100 -f mpegts udp://10.255.255.255:10000?pkt_size=1316

O servidor reconhece, aqui está um tcpdump na porta 10000 :

IP 10.255.255.255.54260 > 10.255.255.253.10000: UDP, length 1316
IP 10.255.255.255.54260 > 10.255.255.253.10000: UDP, length 1316
IP 10.255.255.255.54260 > 10.255.255.253.10000: UDP, length 940
IP 10.255.255.255.54260 > 10.255.255.253.10000: UDP, length 1316
IP 10.255.255.255.54260 > 10.255.255.253.10000: UDP, length 1316

Depois de analisar os pacotes em WireShark :

source         destination    protocol size   description
192 kb/s       44.1 kHz       MPEG-1   1358   Audio Layer 3[Malformed Packet]
10.255.255.255 10.255.255.253 MPEG TS  1358   Source port: 46947  Destination port: distinct

Eu tenho seguido este tutorial .

    
por hinekyle 19.03.2013 / 17:01

1 resposta

1

este é o comando que funcionou:

ffmpeg -f alsa -i hw:1 -acodec libvo_aacenc -f mpegts udp://10.255.255.255:9999?pkt_size=1316
    
por 19.03.2013 / 20:32