Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 05-07-2017, 04:05 PM
Arslan Arslan is offline
Junior Member
 
Join Date: May 2017
Posts: 3
Arslan is on a distinguished road
Question

Help With Playing This RTMP Dump


Hi All,

Hope you are well!

I am struggling with this RTMP Dump.

rtmp://82.145.43.51/data4<playpath>tt1 <swfUrl>http://www.3patti.net/tv/player.swf <pageUrl>http://www.3patti.net/tv/ri.aspx

Can you please help me how I can play in VLC or any any video player for web.

Here is my HTML Code

HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
   <head>
      <title></title>
   </head>
   <script src="http://www.3patti.net/tv/flowplayer-3.2.4.min.js"></script>
   <body>
      <script type="text/javascript" src="http://www.3patti.net/tv/swfobject.js"></script>
      <DIV id=player>
         <OBJECT id=mlp height=540 width=720 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>
            <PARAM NAME="_cx" VALUE="11906">
            <PARAM NAME="_cy" VALUE="8943">
            <PARAM NAME="FlashVars" VALUE="">
            <PARAM NAME="Movie" VALUE="http://www.3patti.net/tv/player.swf">
            <PARAM NAME="Src" VALUE="http://www.3patti.net/tv/player.swf">
            <PARAM NAME="WMode" VALUE="Window">
            <PARAM NAME="Play" VALUE="0">
            <PARAM NAME="Loop" VALUE="-1">
            <PARAM NAME="Quality" VALUE="High">
            <PARAM NAME="SAlign" VALUE="LT">
            <PARAM NAME="Menu" VALUE="-1">
            <PARAM NAME="Base" VALUE="">
            <PARAM NAME="AllowScriptAccess" VALUE="always">
            <PARAM NAME="Scale" VALUE="NoScale">
            <PARAM NAME="DeviceFont" VALUE="0">
            <PARAM NAME="EmbedMovie" VALUE="0">
            <PARAM NAME="BGColor" VALUE="">
            <PARAM NAME="SWRemote" VALUE="">
            <PARAM NAME="MovieData" VALUE="">
            <PARAM NAME="SeamlessTabbing" VALUE="1">
            <PARAM NAME="Profile" VALUE="0">
            <PARAM NAME="ProfileAddress" VALUE="">
            <PARAM NAME="ProfilePort" VALUE="0">
            <PARAM NAME="AllowNetworking" VALUE="all">
            <PARAM NAME="AllowFullScreen" VALUE="true">
         </OBJECT>
      </DIV>
      <SCRIPT type=text/javascript>
      var s1 = new SWFObject("http://www.3patti.net/tv/player.swf","mlp","720","540","9");
      s1.addParam("allowfullscreen","true");
      s1.addParam("allowscriptaccess","always");
      s1.addVariable("streamer","rtmp://82.145.43.51/data4");
      s1.addVariable("file","tt1");
      s1.addVariable('type', 'video');
      s1.addVariable('displayclick', 'fullscreen');
      s1.addVariable('bufferlength', '1');
      s1.addVariable('autostart', 'true');
      s1.addVariable('image', 'abc.jpg');
      s1.write("player");
     </SCRIPT>
   </body>
</html>

Last edited by Arslan : 05-07-2017 at 04:13 PM. Reason: Formatting HTML
Reply With Quote
  #2  
Old 05-07-2017, 08:08 PM
troller12 troller12 is offline
Senior Member
 
Join Date: Sep 2013
Posts: 433
troller12 is on a distinguished road
Default

Re: Help With Playing This RTMP Dump


Hi,

so the paramters are ok so far and you just need to add a output paramter (-o or | player -) to download or play that stream.Like this..
Code:
rtmpdump -r rtmp://82.145.43.51/data4//tt1 -W http://www.3patti.net/tv/player.swf -p http://www.3patti.net/tv/ri.aspx | "C:\Programme\VideoLAN\VLC\vlc.exe" -
greetz
Reply With Quote
  #3  
Old 05-08-2017, 02:22 AM
confused.com confused.com is offline
Senior Member
 
Join Date: Jan 2017
Posts: 165
confused.com is on a distinguished road
Default

Re: Help With Playing This RTMP Dump


Code:
rtmpdump -v -r rtmp://82.145.43.51/data4/tt1 -W http://www.3patti.net/tv/player.swf -p http://www.3patti.net/tv/ri.aspx | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -
Reply With Quote
  #4  
Old 05-08-2017, 08:02 AM
Arslan Arslan is offline
Junior Member
 
Join Date: May 2017
Posts: 3
Arslan is on a distinguished road
Default

Re: Help With Playing This RTMP Dump


Quote:
Originally Posted by confused.com View Post
Code:
rtmpdump -v -r rtmp://82.145.43.51/data4/tt1 -W http://www.3patti.net/tv/player.swf -p http://www.3patti.net/tv/ri.aspx | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -
Thanks!!!

You made my day. I can play this url in VLC. Can you please help me how I can embed this on website with some player like JWPlayer or FlowPlayer. I already have HTML syntax in my original post. Can you please correct where I am doing wrong.
Reply With Quote
  #5  
Old 05-10-2017, 01:18 AM
avsrf410 avsrf410 is offline
Junior Member
 
Join Date: Apr 2017
Posts: 17
avsrf410 is on a distinguished road
Default

Re: Help With Playing This RTMP Dump


I could not play this rtmpink below in xmtv player
rtmpdump -v -r rtmp://82.145.43.51/data4/tt1 -W http://www.3patti.net/tv/player.swf -p http://www.3patti.net/tv/ri.aspx | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -

Any ideas to write the parameters for the stream?
Reply With Quote
  #6  
Old 05-10-2017, 05:23 AM
confused.com confused.com is offline
Senior Member
 
Join Date: Jan 2017
Posts: 165
confused.com is on a distinguished road
Default

Re: Help With Playing This RTMP Dump


Quote:
Originally Posted by avsrf410 View Post
I could not play this rtmpink below in xmtv player
rtmpdump -v -r rtmp://82.145.43.51/data4/tt1 -W http://www.3patti.net/tv/player.swf -p http://www.3patti.net/tv/ri.aspx | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -

Any ideas to write the parameters for the stream?

http://xmtvplayer.com/

XMTV PLAYER – NEXT GENERATION MULTIMEDIA AND STREAMING PLAYER FOR ANDROID
Reply With Quote
Reply Post New Thread
Tags: , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 09:47 PM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons