View Single Post
  #8  
Old 03-13-2017, 09:35 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: RTMPDump query to ffmpeg query? (nginx rtmp module)


This is not right:

flashVer=WIN%%24,0,0,221

It is about handling empty space within parameter.
From beginning to the end of parameter no empty space is allowed.
It is replaced with %%20 in batch file, with %20 on command line.

You can see real life example in my old post,

http://stream-recorder.com/forum/sho...57&postcount=3

and here it says it right.

http://www.robvanderwoude.com/escapechars.php

Your progress is good, it is troubleshooting little bits from here now on.

One more to "escape":

? with \?

pageUrl=http://sportstream365.com/viewer?game=107954793

pageUrl=http://sportstream365.com/viewer\?game=107954793

Last edited by j_cool : 03-13-2017 at 10:11 AM.
Reply With Quote