Questions tagged [video-streaming]

Video streaming is the process of delivering a video from a server to a client. This is different from simply downloading the entire video file, as the client is able to watch the video while it's being downloaded.

Video streaming is the process of delivering a video from a server to a client. This is different from simply downloading the entire video file, as the client is able to watch the video while it's being downloaded.

8577 questions
3
votes
1 answer

Play a mp4 file in android videoview

I am trying to play a mp4 videoin my simple android VideoView. Here is my code VideoView videoView; videoView = (VideoView) findViewById(R.id.videoViewa); MediaController mediaController = new…
ramesh
  • 4,008
  • 13
  • 72
  • 117
3
votes
3 answers

Cache the video in Android application

I am developing an android application in which users can see the list of the videos in our database. All the videos are saved in Ooyala video platform. Now when the user clicks on "download video" button, that video needs to be saved in the…
ramesh
  • 4,008
  • 13
  • 72
  • 117
3
votes
1 answer

Playing m3u8 files on jwplayer without rtmp

I built this bit of code from a pretty long search on the web full of failures trying with various players to play this, http://85.132.71.4:1935/turktv/ntv.sdp/playlist.m3u8 m3u8 stream. I will put up my compact(paste it into an html file) code in…
whotheman
  • 117
  • 1
  • 2
  • 13
3
votes
1 answer

JWplayer won't change source

Background I have a JWplayer setup which uses an SMIL file to list multiple sources for a RTMP stream. The list of sources for HTML5 playback (where RTMP is not supported) is not contained in the SMIL file. The problem When playing in Flash mode the…
user3009618
  • 191
  • 3
  • 7
3
votes
0 answers

Streaming from IP camera using chromecast

I am trying to stream through IP camera through my android device. I have edited the URL from the code posted on GitHub It is streaming on chrome browser when I tried to run from IP address of camera. But when I try to cast it, It shows me player…
Rohit
  • 2,646
  • 6
  • 27
  • 52
3
votes
3 answers

Capturing/segmenting video on iOS and rejoining via HLS results in audio dropouts

I'm attempting to capture video on an iPhone 5 for realtime upload and HLS streaming. I'm at the stage where I'm generating the video on the device (not yet uploading to the server). Like these links on SO suggest, I've hacked together some code…
chickeneye
  • 43
  • 1
  • 4
3
votes
1 answer

How to measure delay in video streaming?

I have created a video conferencing and video streaming application using webRTC. It is working perfectly fine. But how can I measure the delay in the transmitting and receiving sides. Are there any utilities for it ?
krammer
  • 2,598
  • 2
  • 25
  • 46
3
votes
1 answer

OpenTok NodeJS Video Chat

I've been following along with this https://github.com/songz/OpenTokNodeJS I posted an issue but thought I would try here as well. I've been working at this for a minute and can't seem to get it running. Here's my error TypeError: Object Error:…
BobbySwan
  • 33
  • 2
3
votes
0 answers

Writing a series of images into a video file using libavcodec (ffmpeg)

Requirements : I have a bunch of images (to be more specific they are 1024x768, 24bpp RGB PNG files) that I want to encode into a video files. And I need to use 'libavcodec' library, not 'ffmpeg' tool. (well I know they are basically same in the…
Echomania
  • 31
  • 2
3
votes
2 answers

Android VideoView Quality is so bad on TV Box using Vitamio Library

Struggling to get a better quality for G-Box by implementing the Vitamio library for live Streaming. A sample online Video URL having .mp4 video is used in code. but When we play it in Media player after downloading thats works fine and when i try…
3
votes
0 answers

Realtime video conversion using nodejs and ffmpeg

I'm trying to create very simple server-side video conversion using ffmpeg and nodejs. So far, I have 2 UDP servers, one for converting video input and second one for listening for converted video and passing it to websocket. I've created one UDP…
LadislavM
  • 414
  • 1
  • 6
  • 22
3
votes
0 answers

Send H264 encoded data via webrtc rtp layer

I am trying to add H264 codec support to webrtc. I have encoded my video stream into H264 using x264 library. Now I need to send that encoded data via rtp layer. In webrtc code in rtp part I see some H264 related things but they are not included in…
mkd156
  • 435
  • 3
  • 5
  • 16
3
votes
2 answers

Nginx with rtmp-module streaming video on demand with HLS/http

I am planning to do a video on demand streaming solution which will have around 500 to 1000 clicks per week. I am streaming a live event once a week via Wowza Media Server an Amazons EC2. The plan is now to have a record of that event during the…
user1925121
  • 188
  • 1
  • 2
  • 9
3
votes
1 answer

Caching time and frame rate in video streaming using vlc media player

I'm streaming a video captured on a webcam to a remote computer using vlc media player. In 'Show more options' under 'Stream', there is an option for setting 'Caching time' which is set to 300ms by default. In the vlc streaming manual, it is given…
Vigo
  • 707
  • 4
  • 11
  • 29
3
votes
1 answer

How to continuously extract video frames from streaming RTMP using avconv / ffmpeg?

We're dealing with streaming video on RTMP and my goal is to extract frames from the stream at a given interval, e.g. every 1 second. Currently I run a command in a loop, which takes a frame and exports it as base64 JPEG: avconv -i -y -f…
mvbl fst
  • 5,213
  • 8
  • 42
  • 59