video-streaming

How to use Media Segmenter for split video?

自古美人都是妖i 提交于 2019-12-19 04:15:18
问题 I have read many documents still very confused about HTTP Live Streaming . But i am still trying for solution.. and i have convert my video in .ts format with ffmpeg . Now i know that i have to split my video and have to create playlist with the use of mediasegmenter . But i don't know where is mediasegmenter and how to use it to split video. I am very new to this so sorry for this silly Question.. Any help would be appreciated..!! Thanks in advance..!! 回答1: Here: 35703_streamingtools_beta

How seperate y-planar, u-planar and uv-planar from yuv bi planar in ios?

一笑奈何 提交于 2019-12-19 04:09:48
问题 In application i used AVCaptureVideo. i got video in kCVPixelFormatType_420YpCbCr8BiPlanarFullRange format. now i am getting y-planar and uv-planar from imagebuffer. CVPlanarPixelBufferInfo_YCbCrBiPlanar *planar = CVPixelBufferGetBaseAddress(imageBuffer); size_t y-offset = NSSwapBigLongToHost(planar->componentInfoY.offset); size_t uv-offset = NSSwapBigLongToHost(planar->componentInfoCbCr.offset); here yuv is biplanar format(y+UV). what is UV-planar? is this uuuu,yyyy format or uvuvuvuv format

How to play online videos in Android?

可紊 提交于 2019-12-19 00:57:35
问题 I am developing a sample media player app in Android to play online videos, I have developed some code to play videos. It plays video from SD card very well, but I am facing two issues in this respect. 1- when I open the app for online videos it shows the video but it does not play the video and after a while it displays an alert dialog having message "Sorry, this video cannot be played". 2- I have code for "Progress bar", but I don't know where to put the code when the video is downloading

How to play html5 video play m3U8 on mobile and desktop?

痴心易碎 提交于 2019-12-18 19:34:46
问题 I have HLS m3u8 that plays well on IOS and Android with html5 <video> But does not play on desktop PC or desktop MAC (Chrome, Firefox) How to play m3u8 on desktop PCs ? Is there a streaming format of video that would play both on desktop and mobile ? 回答1: HLS will only work on desktop in Mac OS Safari 6+. Have a look here for reference. For HTML5 video on desktop you can think about using MPEG DASH. It has a JS lib that works both live and on demand with the following browsers: As of 8/30/13,

Live Video Stream iphone

对着背影说爱祢 提交于 2019-12-18 13:47:15
问题 I am new to iphone and Objective-c. I want to show a live going match suppose football match to the users who use my app. What do i need for live video streaming in iphone app ? any info on this is appreciated ! Thanks Guys please help anyone must have done this before ? 回答1: You only need to give the URL of the movie file and the streams will automatically be setup according to the speed of your connection. Mind you, only those videos whose resolution is within iPhone's limits will get

Streaming live footage from camera to Unity3D

拈花ヽ惹草 提交于 2019-12-18 13:27:17
问题 Let's say I have a wireless camera that I want to stream footage from to unity in real-time. Is there a way to achieve this? Bonus questions: What about cameras with wider angles (180, perhaps even 360) How much of an issue would the delay be if this is a footage I want to be interacting with Possible to send more data such as depth perception(using depth perception camera) aside from the regular footage only? Am I crazy or has this been done? Thanks in advance 回答1: I assume this is a camera

Transcoding MJPEG to FLV or MP4

我怕爱的太早我们不能终老 提交于 2019-12-18 12:47:10
问题 I want to transcode MJPEG stream that comes from IP camera (http://xx.yy.zz.tt:8080/video.cgi) to FLV or MP4 stream under Linux OS so that users can play the file using a web based Flash player such as Flowplayer. I discovered VLC for that purpose but I cannot figure out the exact command line string. I also need HTTP authentication feature since IP camera access is password protected. I also interested in any non-VLC solution if any (ffmpeg?). 回答1: appears VLC can do HTTP authentication.

Reduce video buffering

≡放荡痞女 提交于 2019-12-18 12:42:14
问题 I'm playing video on Android using media player via RTSP. The player takes about 12s to buffer before it starts playing. Anyone know how I can convince the player to buffer less? I have full control over the RTSP server and the SDP it returns. 回答1: As per usual, as soon as I decide I should ask a question I work out the answer. I have a line "b=AS:91" in my SDP. If I reduce the number the amount of buffering decreases - so b=AS:2 gives about 4 or 5s buffering. 来源: https://stackoverflow.com

H264 NAL unit prefixes

你离开我真会死。 提交于 2019-12-18 12:39:02
问题 I need some clarification on H264 NAL unit delimiter prefixes ( 00 00 00 01 and 00 00 01 ), I am using Intel Media SDK to generate a H264 and pack it into RTP. The issue is that so far I was looking only for 00 00 00 01 as a unit separator and basically was able to find only AUD,SPS,PPS and SEI units in the bitstream. Looking at the memory I saw that after the SEI there was a byte sequence 00 00 01 25 that could be a start of an IDR unit, but my search algorithm did not detect it because of a

How can I use java to download a video file from http url(video streaming link)? [duplicate]

佐手、 提交于 2019-12-18 12:03:03
问题 This question already has an answer here : Closed 8 years ago . Possible Duplicate: how to get video link from of live streaming videos using java? Hello all! I have to develop an application to download any video file from http url (video stream) to local system. Is there any free api for this. also there are some sites like youtube. Here no direct links available for video file. In such cases how can I get the exact video file link. Also I need java source to save video file from url.