[Libav-user] using avconv to transmux MPEGTS over RTP to MPEGTS over UDP

2012-02-05 Thread aviad rozenhek
Dear libav, i'm trying to use avconv to read MPEGTS over RTP and transfer it to MPEGTS over udp. here is the command line i'm using >avconv -i rtp://234.5.5.5:10201 -c copy -f mpegts udp://localhost: and here's the output avconv version v0.8-293-g86b57e4, Copyright (c) 2000-2011 the Libav >

Re: [Libav-user] using avconv to transmux MPEGTS over RTP to MPEGTS over UDP

2012-02-05 Thread Andrey Utkin
Please run with adding option -loglevel debug It will make ./configure options appear in log, so we can try to reproduce the issue. Also maybe some more information will appear. What happens if you split this command into two? avconv -loglevel debug -i rtp://234.5.5.5:10201 -c copy out.ts then, i