]> granicus.if.org Git - rtmpdump/commitdiff
Notes for connect params
authorhyc <hyc@400ebc74-4327-4243-bc38-086b20814532>
Sat, 9 Jan 2010 00:46:23 +0000 (00:46 +0000)
committerhyc <hyc@400ebc74-4327-4243-bc38-086b20814532>
Sat, 9 Jan 2010 00:46:23 +0000 (00:46 +0000)
git-svn-id: svn://svn.mplayerhq.hu/rtmpdump/trunk@214 400ebc74-4327-4243-bc38-086b20814532

README
rtmpdump.c
streams.c

diff --git a/README b/README
index a8426e8a1f76aac9391bd04445e56965f120b50f..ac3ceae9da1007b80999966dfad144fa91cf590c 100644 (file)
--- a/README
+++ b/README
@@ -44,6 +44,34 @@ Note: all of this is now done automatically if you provide the SWF URL using
 the -W (--swfVfy) option instead of the -s (--swfUrl) option. Also, the hash info
 is cached in ~/.swfinfo so it doesn't need to be recalculated all the time.
 
+Connect Parameters
+------------------
+
+Some servers expect additional custom parameters to be attached to the
+RTMP connect request. The "--auth" option handles a specific case, where
+a boolean TRUE followed by the given string are added to the request.
+Other servers may require completely different parameters, so the new
+"--conn" option has been added. This option can be set multiple times
+on the command line, adding one parameter each time.
+
+The argument to the option must take the form <type> : <value> where
+type can be B for boolean, S for string, N for number, and O for object.
+For booleans the value must be 0 or 1. Also, for objects the value must
+be 1 to start a new object, or 0 to end the current object.
+
+Examples:
+  --conn B:0 --conn S:hello --conn N:3.14159
+
+Named parameters can be specified by prefixing 'N' to the type. Then the
+name should come next, and finally the value:
+  --conn NB:myflag:1 --conn NS:category:something --conn NN:pi:3.14159
+
+Objects may be added sequentially:
+  -C O:1 -C NB:flag:1 -C NS:status:success -C O:0 -C O:1 -C NN:time:12.30 -C O:0
+or nested:
+  -C O:1 -C NS:code:hello -C NO:extra:1 -C NS:data:stuff -C O:0 -C O:0
+
+
 Building OpenSSL 0.9.8k
 -----------------------
 arm:
index 751727d50b3d92f8992544d2caae3f305aa235a2..e83770965f9697eeb60ffa8f961e0ffe390baedc 100644 (file)
@@ -1113,6 +1113,9 @@ parseAMF(AMFObject *obj, const char *arg, int *depth)
           prop.p_type = AMF_NUMBER;
           prop.p_vu.p_number = strtod(p, NULL);
           break;
+        case 'O':
+          prop.p_type = AMF_OBJECT;
+          break;
         default:
           return -1;
         }
index 303130f391ae5fbcb3a70e259687c8d54aeff248..ccf53bf5b8431c6d10d0124570a97655a07da130 100644 (file)
--- a/streams.c
+++ b/streams.c
@@ -170,6 +170,9 @@ parseAMF(AMFObject *obj, const char *arg, int *depth)
           prop.p_type = AMF_NUMBER;
           prop.p_vu.p_number = strtod(p, NULL);
           break;
+        case 'O':
+          prop.p_type = AMF_OBJECT;
+          break;
         default:
           return -1;
         }