logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
dotinga00  
#1 Posted : Thursday, April 17, 2014 2:07:03 PM(UTC)
dotinga00

Rank: Newbie

Groups: Registered
Joined: 1/14/2014(UTC)
Posts: 7
Location: The Netherlands (Europe)

Thanks: 1 times
On a website we like to transmit there is the next code:

<param name="wmode" value="transparent" />
<param name="movie" value="http://www.raad-achtkarspelen.nl/flash/player.swf" />
<param name="allowscriptaccess" value="always" />
<param name="allowfullscreen" value="true" />
<param name="flashvars" value="file=livestream&amp;autostart=true&amp;streamer=rtmp://go-fms01v.gemeenteoplossingen.nl/rd-mp4/achtkarspelen_3&amp;plugins=gapro-1&amp;gapro.accountid=UA-26108244-1" />

I have tried many things, but couldn't get the right stream. Wahtever i tried in this string rtmp://go-fms01v.gemeenteoplossingen.nl/rd-mp4/achtkarspelen_3&amp;plugins=gapro-1&amp;gapro.accountid=UA-26108244-1 i always get a media playback error

I know this is not vMIX related, but can someone point this out for me?

Thanks in advance,

marcel
Maximus  
#2 Posted : Monday, April 21, 2014 2:20:41 PM(UTC)
Maximus

Rank: Advanced Member

Groups: Registered
Joined: 10/25/2012(UTC)
Posts: 174
Location: Barbados

Thanks: 2 times
Was thanked: 24 time(s) in 24 post(s)
Hi dotinga00,

The following format usually works for me:

RTMP-URL/Streamname

E.G
rtmp://mystreamingCDN/myStreamname, as taken from encoder settings (FMLE).

Your mileage might vary.

Maxi
coskel22  
#3 Posted : Monday, April 21, 2014 6:43:38 PM(UTC)
coskel22

Rank: Advanced Member

Groups: Registered
Joined: 4/9/2014(UTC)
Posts: 109
Location: USA

Thanks: 2 times
Was thanked: 4 time(s) in 4 post(s)
<param name="flashvars" value="file=livestream&amp;autostart=true&amp;streamer=rtmp://go-fms01v.gemeenteoplossingen.nl/rd-mp4/achtkarspelen_3&amp;plugins=gapro-1&amp;gapro.accountid=UA-26108244-1" />

what service are you using to stream?

the above doesn't look correct.

it should look like this, depending on your provider:
<script type="text/javascript" src="http://DOMAINTOJAVASCRIPTPLAYER.com/swfobject.js"></script>

<div id="player">Name of Event</div>

<script type="text/javascript">
var so = new SWFObject('http://DOMAINTOPLAYER.com/player.swf','mpl','480','290','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('type', 'video');
so.addVariable('skin', 'stylish.swf');
so.addParam('flashvars','&streamer=rtmp://URLOFSTREAMER/vod&file=YOURFILENAME.mp4&autostart=true');
so.write('player');
</script>


vod can also be replaced by live if you are live, then you leave off the file extension .mp4
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.