Author: hyc Date: Sat Oct 31 03:47:49 2009 New Revision: 17 Log: Update ChangeLog, misc stuff Modified: ChangeLog README rtmpdump.cpp Modified: ChangeLog ============================================================================== --- ChangeLog Sat Oct 31 03:25:22 2009 (r16) +++ ChangeLog Sat Oct 31 03:47:49 2009 (r17) @@ -1,5 +1,24 @@ RTMPDump Copyright 2008-2009 Andrej Stepanchuk; Distributed under the GPL v2 +Copyright 2009 Howard Chu + +30 October 2009, v1.7 + +- added --subscribe option for subscribing to a stream +- added --start / --stop options for specifying endpoints of a stream +- added --debug / --quiet / --verbose options for controlling output + +- restructured to support auto-restart of timed-out streams + +- rewritten byteswapping, works on all platforms + +- fixed errors in command / result parsing + +- support functions rewritten in C to avoid g++ compiler bugs on ARM + +- support for 65600 channels instead of just 64 + +- fixed signature buffer overruns 17 May 2009, v1.6 Modified: README ============================================================================== --- README Sat Oct 31 03:25:22 2009 (r16) +++ README Sat Oct 31 03:47:49 2009 (r17) @@ -8,11 +8,7 @@ To compile just type $ make rtmpdump $ make streams -or to cross compile - - $ make -f MakefileWIN32 rtmpdump - $ make -f MakefileARM rtmpdump - $ make -f MakefileARM streams +To cross compile you will need to edit the Makefile first. To download an rtmp stream use Modified: rtmpdump.cpp ============================================================================== --- rtmpdump.cpp Sat Oct 31 03:25:22 2009 (r16) +++ rtmpdump.cpp Sat Oct 31 03:47:49 2009 (r17) @@ -893,7 +893,7 @@ int main(int argc, char **argv) } LogPrintf("RTMPDump %s\n", RTMPDUMP_VERSION); - LogPrintf("(c) 2009 Andrej Stepanchuk, license: GPL\n\n"); + LogPrintf("(c) 2009 Andrej Stepanchuk, Howard Chu; license: GPL\n\n"); int opt; struct option longopts[] = {
participants (1)
-
hyc