Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
documenting udp option
· eef3cf91
Greg O'Brien
authored
Oct 17, 2019
eef3cf91
adding udp reference to help
· 9e9a4544
Greg O'Brien
authored
Oct 17, 2019
9e9a4544
Merge branch 'Greglobrien-develop'
· d03d536e
Christophe Massiot
authored
Oct 19, 2019
d03d536e
Hide whitespace changes
Inline
Side-by-side
README
View file @
d03d536e
...
...
@@ -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
...
...
multicat.c
View file @
d03d536e
...
...
@@ -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)"
);
...
...