rtmp

Rtmp streaming via gstreamer-1.0 appsrc to rtmpsink

旧街凉风 提交于 2019-12-10 23:34:48
问题 I am trying to stream my webcam via rtmp. I tried to stream data via following pipe line: gst-launch-1.0 -v v4l2src ! 'video/x-raw, width=640, height=480, framerate=30/1' ! queue ! videoconvert ! omxh264enc ! h264parse ! flvmux ! rtmpsink location='rtmp://{MY_IP}/rtmp/live' and it works like a charm. I can see the video on my website. Then I would like to capture frames firstly, and do some process. I streamed processed data by pushing data into appsrc and streaming through pipeline just like

How to play a streaming video from URL in android?

…衆ロ難τιáo~ 提交于 2019-12-10 22:37:49
问题 I want to play a streaming video in android from a website. For example, I want to play the streaming video from this url: http://florotv.com/canal2.html Using URL Helper, I have been able to capture the rtmp URL that it's rtmp://198.144.153.139:443/kuyo<playpath>ver44?id=acf6f5271f8ce567ed6c8737ce85a044&pid=32342e3136362e37332e323139 <swfUrl>http://yukons.net/yplay2.swf <pageUrl>http://yukons.net/embed/37363635373233343334/eeff74c57593ca38defc902fa6d88005/600/400 Now that I have this URL, I

Convert Flex ByteArray in Java byte[]

南楼画角 提交于 2019-12-10 19:19:50
问题 I'm trying to upload file on server which send from Flex GUI with rtmp protocol. I asked yesterday how to send file's data on server: Upload file on server through rtmps+java But now i have problem with how to convert org.red5.io.amf3.ByteArray in something that i can correctly save in file. Cam some one help me? 回答1: To get the array: byte[] bytes = new byte[byteArray.length()]; byteArray.readBytes(bytes); 来源: https://stackoverflow.com/questions/23126842/convert-flex-bytearray-in-java-byte

Android: how to send a rtmp stream address to an external videoplayer (e.g. MX player)

我是研究僧i 提交于 2019-12-10 17:51:08
问题 Like my question states, how do i sent a rtmp stream address to an external media player? Mx Player is able to play my stream but i'm unable to sent the address to it. I've tried this: String videoUrl = "rtmp://mystream"; Intent i = new Intent(android.content.Intent.ACTION_VIEW); i.setDataAndType(Uri.parse(videoUrl), "video/*"); startActivity(i); but it only works with online videos, my rtmp gives me an application error. 回答1: MX Video Player does not support the combination of the scheme

Embed RTMP live streaming link to browser

笑着哭i 提交于 2019-12-10 15:54:58
问题 Anyone knows how to embed rtmp link to be viewed in a browser? I already tried Moeya but it is still not running. Anyone knows other solution to how can I embed this to a browser? thanks. 回答1: below is a sample code, hope it helps. <embed width="768" height="456" src="http://www.focusonthefamily.com/family/JWPlayer/mediaplayer.swf" flashvars="allowfullscreen=true&allowscriptaccess=always&autostart=true&shownavigation=true&enablejs=true&volume=50&file=20100809-wait-no-more-v1.mp4&streamer=rtmp

RTMP implementation in nodejs is possible?

自作多情 提交于 2019-12-10 14:38:25
问题 i'm trying to make a implementation of RTMP in Node.js but after seeing the documentation and trying, i'm unable to, and i suspect this is not possible to make it seeing how node.js handle the streams of data. i'm forking this code: https://github.com/timwhitlock/node-amf/tree/master/node-rtmp according to the code and the poorly written adobe documentation, after the connection, the handshaking process starts, the clients send a stream of 1537 octets, where the first one is the rtmp version

Play audio RTMP stream on android

邮差的信 提交于 2019-12-10 13:13:06
问题 Has anyone had any success playing back an audio RTMP stream on Android using http://code.google.com/p/android-rtmp-client or know of any other non-flash solutions. The example that comes with the android rtmp source records the audio to a file but I'm looking for example code that plays back over speakers (or bluetooth). The easiest way to play an audio RTMP stream in Android has a partial discussion of what's needed. 来源: https://stackoverflow.com/questions/11494721/play-audio-rtmp-stream-on

ffmpeg rtmp streaming issue

老子叫甜甜 提交于 2019-12-10 12:32:55
问题 I am trying to stream my webcam video using the ffmpeg to wowza media server on linux.. ffmpeg -re -f video4linux2 -i /dev/video0 -acodec libfacc -vcodec libx264 -f h264 rtmp://localhost:1935/live/test This is the command I used for some reason it doesn't seem to work as I am not able to run the example that came with wowza. I tried using flash media live encoder to send a rtmp to my wowza server and it works. Any pointers on how to solve this problem. I build ffmpeg from their git repo with

How do I play rtmp streams with JW Player?

六眼飞鱼酱① 提交于 2019-12-10 11:33:32
问题 I want to know how to stream RTMP with JW Player I just begun this, the embed didnt help so if someone can share a code that works for him, would be helpful. 回答1: We have a guide here for this - http://www.longtailvideo.com/support/jw-player/28854/using-rtmp-streaming And an example - http://www.longtailvideo.com/support/jw-player/29395/rtmp-single-stream 来源: https://stackoverflow.com/questions/17869592/how-do-i-play-rtmp-streams-with-jw-player

Need help transcoding Red5 RTMP stream to MPEG2-TS

爷,独闯天下 提交于 2019-12-10 11:28:31
问题 Me and my friend are going to make live shows and for that purpose I have set up a Red5 server on my old 2006 Intel Core Duo Mac mini running Mac OS X Snow Leopard Server 10.6.8. I use Flash Media Live Encoder to broadcast to Red5's oflaDemo application and the stream works great, except for the fact that I want the stream to work with iOS. I am developing an app for it, but I still need to convert my stream to Apple's HTTP Live Streaming protocol for it to work. Can anybody help me convert