From: hyc Date: Thu, 4 Mar 2010 16:19:21 +0000 (+0000) Subject: Fix typos X-Git-Tag: v2.4~238 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06dd8231306fc87a81ad6746f1240f65bc709e27;p=rtmpdump Fix typos git-svn-id: svn://svn.mplayerhq.hu/rtmpdump/trunk@291 400ebc74-4327-4243-bc38-086b20814532 --- diff --git a/rtmpdump.c b/rtmpdump.c index 8e8c305..21aa54f 100644 --- a/rtmpdump.c +++ b/rtmpdump.c @@ -1312,10 +1312,10 @@ main(int argc, char **argv) { case 'h': LogPrintf - ("\nThis program dumps the media content streamed over rtmp.\n\n"); + ("\nThis program dumps the media content streamed over RTMP.\n\n"); LogPrintf("--help|-h Prints this help screen.\n"); LogPrintf - ("--rtmp|-r url URL (e.g. rtmp//hotname[:port]/path)\n"); + ("--rtmp|-r url URL (e.g. rtmp//host[:port]/path)\n"); LogPrintf ("--host|-n hostname Overrides the hostname in the rtmp url\n"); LogPrintf @@ -1330,7 +1330,7 @@ main(int argc, char **argv) LogPrintf ("--tcUrl|-t url URL to played stream (default: \"rtmp://host[:port]/app\")\n"); LogPrintf("--pageUrl|-p url Web URL of played programme\n"); - LogPrintf("--app|-a app Name of player used\n"); + LogPrintf("--app|-a app Name of target app on server\n"); #ifdef CRYPTO LogPrintf ("--swfhash|-w hexstring SHA256 hash of the decompressed SWF file (32 bytes)\n"); @@ -1378,7 +1378,7 @@ main(int argc, char **argv) ("--skip|-k num Skip num keyframes when looking for last keyframe to resume from. Useful if resume fails (default: %d)\n\n", nSkipKeyFrames); LogPrintf - ("--quiet|-q Supresses all command output.\n"); + ("--quiet|-q Suppresses all command output.\n"); LogPrintf("--verbose|-V Verbose command output.\n"); LogPrintf("--debug|-z Debug level command output.\n"); LogPrintf diff --git a/rtmpgw.c b/rtmpgw.c index f94b142..13c99a0 100644 --- a/rtmpgw.c +++ b/rtmpgw.c @@ -1246,7 +1246,7 @@ main(int argc, char **argv) ("\nThis program serves media content streamed from RTMP onto HTTP.\n\n"); LogPrintf("--help|-h Prints this help screen.\n"); LogPrintf - ("--rtmp|-r url URL (e.g. rtmp//hotname[:port]/path)\n"); + ("--rtmp|-r url URL (e.g. rtmp//host[:port]/path)\n"); LogPrintf ("--host|-n hostname Overrides the hostname in the rtmp url\n"); LogPrintf @@ -1259,7 +1259,7 @@ main(int argc, char **argv) LogPrintf ("--tcUrl|-t url URL to played stream (default: \"rtmp://host[:port]/app\")\n"); LogPrintf("--pageUrl|-p url Web URL of played programme\n"); - LogPrintf("--app|-a app Name of player used\n"); + LogPrintf("--app|-a app Name of target app in server\n"); #ifdef CRYPTO LogPrintf ("--swfhash|-w hexstring SHA256 hash of the decompressed SWF file (32 bytes)\n"); @@ -1282,7 +1282,7 @@ main(int argc, char **argv) ("--flashVer|-f string Flash version string (default: \"%s\")\n", DEFAULT_FLASH_VER); LogPrintf - ("--live|-v Get a live stream, no --resume (seeking) of live strems possible\n"); + ("--live|-v Get a live stream, no --resume (seeking) of live streams possible\n"); LogPrintf ("--subscribe|-d string Stream name to subscribe to (otherwise defaults to playpath if live is specifed)\n"); LogPrintf @@ -1305,11 +1305,11 @@ main(int argc, char **argv) ("--sport|-g Streaming port (default: %d)\n\n", nHttpStreamingPort); LogPrintf - ("--quiet|-q Supresses all command output.\n"); + ("--quiet|-q Suppresses all command output.\n"); LogPrintf("--verbose|-x Verbose command output.\n"); LogPrintf("--debug|-z Debug level command output.\n"); LogPrintf - ("If you don't pass parameters for swfUrl, pageUrl, app or auth these propertiews will not be included in the connect "); + ("If you don't pass parameters for swfUrl, pageUrl, or auth these properties will not be included in the connect "); LogPrintf("packet.\n\n"); return RD_SUCCESS; break;