Skip to content
Commits on Source (3)
......@@ -86,7 +86,11 @@ Recording a multicast address to a file:
multicat @239.255.0.1:5004 /tmp/myfile.ts
This will also create file /tmp/myfile.aux. Playing back the file:
Recording a udp multicast address to a file:
multicat -u @239.255.0.1:5004 /tmp/myfile.ts
These recordings will also create a file /tmp/myfile.aux. Playing back the file:
multicat -p 68 /tmp/myfile.ts 239.255.0.2:5004
......
......@@ -124,7 +124,7 @@ static void usage(void)
msg_Raw( NULL, " -r: in directory mode, rotate file after this duration (default: 97200000000 ticks = 1 hour)" );
msg_Raw( NULL, " -O: in directory mode, rotate file after duration + this offset (default: 0 tick = calendar hour)" );
msg_Raw( NULL, " -S: overwrite or create RTP SSRC" );
msg_Raw( NULL, " -u: source has no RTP header" );
msg_Raw( NULL, " -u: source has no RTP header, possibly a udp source" );
msg_Raw( NULL, " -U: destination has no RTP header" );
msg_Raw( NULL, " -m: size of the payload chunk, excluding optional RTP header (default 1316)" );
msg_Raw( NULL, " -R: size of the optional RTP header (default 12)" );
......