rtmp

How to play Brightcove RTMP URLs on JWPlayer?

﹥>﹥吖頭↗ 提交于 2019-12-25 01:55:08
问题 I am trying to implement the dynamic RTMP streaming supported by JWPplayer and Brightcove. I'm currently using the find_video_by_id method to get a JSON package with the available RTMP streams, you can get an example by selecting the renditions field in this sample. Basically any of the URLs will look like the one bellow but won't reproduce in the player (I am testing with JWPlayer and VLC). rtmp://brightcove.fcod.llnwd.net/a500/e1/uds/rtmp/ondemand/&mp4:1937897674001/1937897674001

LIBRTMP Delphi: use dll

倖福魔咒の 提交于 2019-12-24 14:28:46
问题 I have before me the task of loading and saving rtmp stream from the server to your computer. Exploring the internet, I came to the conclusion that it is necessary to use the library LIBRTMP . I work in Delphi XE2 and the only appropriate code I found on this page and sales on Pascal page. I am having difficulties with the translation of this code into a usable form for delphi, because types cint , pcchar and etc I did not recognize. I do not work with C or C + +, could you give me directions

Why would I receive input/output error with testsrc ffmpeg?

白昼怎懂夜的黑 提交于 2019-12-24 09:29:06
问题 I am trying to write an integration test which requires actually RTMP streaming to a 3rd party service. How to generate an RTMP test stream using ffmpeg command? seems like the right answer, however I can't get it to work. As a baseline, without RTMP, ffmpeg -f lavfi -i testsrc -t 30 -pix_fmt yuv420p test.mp4 works. ffmpeg -f lavfi -i testsrc -t 30 -pix_fmt yuv420p -f flv rtmp://mylocation gives me the error rtmp://mylocation: Input/output error I should note that the URL is valid, otherwise

YouTube Live API Stream Status and Quality Callback

丶灬走出姿态 提交于 2019-12-24 05:12:58
问题 In the "Live Control Room" of a YouTube Live broadcast, I can see a "Stream Status" view which shows me details of the video being sent to YouTube's RTMP endpoint. I hit the liveStreams endpoint to get the "status" of the stream, but that only returns active , meaning that the video stream is being successfully sent to YouTube's RTMP endpoint, but no information about video data or quality. Is this information exposed somewhere in the API? Can I also see additional details about the video,

“Undefined Reference” when compiling FFMPEG with librtmp on Android

廉价感情. 提交于 2019-12-24 03:53:20
问题 I have searched, and while Building FFMPEG with librtmp for android answered part of my question, I ran into other issues further along in the compilation process. First, I am trying to use the script in this github repo, changing the flags to include --enable-librtmp \ --extra-cflags=-I/home/bradford/Development/FFMPEG/rtmp/rtmpdump/librtmp/ \ --extra-ldflags=-L/home/bradford/Development/FFMPEG/rtmp/rtmpdump/librtmp" I build librtmp with polarSSL following S74ck3r's instructions on his

as3 rtmp video stream on localhost red5 path issue

大城市里の小女人 提交于 2019-12-24 02:09:34
问题 Below is a basic code bit in as3 flash.A simple video streaming example using rtmp red5. But i seem to be having issues connecting to the stream.I am using the same video files as given with the red5 server demo installation.( i have verified the installed demo of ofla by running it properly) my output trace traces out as a connection success and the play start of the video file. But i am unable to get its metadata or get it actually playing. netStatusHandler NetConnection.Connect.Success

WOWZA + RTMP + HTML5 Playback?

Deadly 提交于 2019-12-23 23:42:42
问题 I have Wowza and testing RTMP streaming. Now as in Wowza RTMP Example, i can now: Playback via Flash http://www.wowza.com/gettingstarted Server: rtmp://xx.xx.xx.xx:1935/live Stream: myStream Playback via HTML5 for iOS <video x-webkit-airplay="allow" type="video/m3u8" src="http://xx.xx.xx.xx:1935/live/myStream/playlist.m3u8" /> So means, til now, i can playback via: Flash (I DON'T WANT IT IN THE END) iOS HTML5 So how to make it to play on: HTML5 for non iOS Browsers? For iOS on HTML5: <video x

H264 Video Streaming over RTMP on iOS

假装没事ソ 提交于 2019-12-22 10:05:22
问题 With a bit of digging, I have found a library that extracts NAL units from .mp4 file while it is being written. I'm attempting to packetize this information to flv over RTMP using libavformat and libavcodec . I setup a video stream using: -(void)setupVideoStream { int ret = 0; videoCodec = avcodec_find_decoder(STREAM_VIDEO_CODEC); if (videoCodec == nil) { NSLog(@"Could not find encoder %i", STREAM_VIDEO_CODEC); return; } videoStream = avformat_new_stream(oc, videoCodec); videoCodecContext =

free video player for RTMP & support ads

陌路散爱 提交于 2019-12-20 20:34:12
问题 I want to stream and play my videos (RTMP) from my custom server. Can anybody let me know any flash player than can play rtmp stream? and I want this player supports video Ads :) I took a look on JWPLAYER and FlowPlayer but these are paid solutions Thank you in advance. 回答1: Open source and free player supports ads and rtmp is Video-JS . Player homepage: http://www.videojs.com Player plugins: https://github.com/videojs/video.js/wiki/Plugins Video-js vast plugins: http://theonion.github.io

Does the iphone sdk support playing an mp4 from rtmp stream?

限于喜欢 提交于 2019-12-20 18:43:23
问题 Does the iphone sdk support playing mp4 files from RTMP streams? I am looking to store the files in CloudFront (in a bucket marked to stream) and would like to have an iphone app be able to play them. Is this possible, or am I better off storing the files as mp3 on CloudFront and not enabling streaming via RTMP? 回答1: No. The iOS SDK does not support the RTSP protocol. You may be allowed to include an implementation of RTSP into your app, but Apple is strongly pushing their HTTP streaming