Thread: curl rtmp
View Single Post
  #8  
Old 05-07-2014, 03:05 PM
blimey blimey is offline
Former Member
 
Join Date: Jul 2006
Posts: 286
blimey is on a distinguished road
Default

Re: curl rtmp


Brightcove won't process a http url unless it has all (or most) of the params included at the end of the url. Like;
Code:
?playerId=1364138050001&lineupId=&affiliateId=&pubId=1290862567001&videoId=3426600466001
Most of them don't change (for a given client/domain), except perhaps "videoId=", so you can just append the same params to the end of the url (after .mp4).
So, in this case;
Code:
http://tg4.uds.ak.o.brightcove.com.edgesuite.net/1290862567001/1290862567001_3426600466001_WCL027080.mp4?playerId=1364138050001&lineupId=&affiliateId=&pubId=1290862567001&videoId=3426600466001
On the other hand, the rtmp url you provided;
Code:
rtmp://cp201884.edgefcs.net/ondemand/mp4:videos/1290862567001/1290862567001_3426600466001_WCL027080.mp4
Will download as simple rtmp, without any (special) parameters. So, it may just be easier to use rtmp.
Reply With Quote