Hi Robert, On Mon, Mar 22, 2021 at 18:08:23 +1300, Robert Jeffares wrote: > I am getting... > > [rtp @ 0x55e52ffe8c00] AAC with no global headers is currently not > supported.
You are usually asked to provide the full, uncut console output of your command. > ffmpeg -i http://localhost:8000/wireless.aacp -acodec copy -vn -flags > +global_header -f rtp rtp://192.168.1.100:7001 > > is there support for aac coming? AAC is supported. Your input seems to be raw AAC, which ffmpeg cannot (yet) add information about to RTP. Since you are copying, not reencoding, the option "-flags +global_header", which is encoding flags, has no effect. You might try a different RTP format as suggested here: https://video.stackexchange.com/a/24454 i.e. using -rtpflags latm but I don't know whether your RTP target supports this. Cheers, Moritz _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
