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
0 answers

How to send Android's screen out as a video stream?

I'm now implementing a VNC-like app on Android. I wish to send my Android device's screen out in a video stream so that a PC client can receive and display it in real-time. I can capture single frame of Android device's screen by using ADB's…
hebothu
  • 269
  • 1
  • 9
3
votes
0 answers

objc_autoreleaseNoPool and Low memory warning crash during RTSP streaming using Gstreamer in iOS

I am using the gstreamer library for iOS for RTSP streaming from an ip camera in my local network. I'm using this code which was provided in the tutorials itself - #import #include #include…
Tushar Koul
  • 2,830
  • 3
  • 31
  • 62
3
votes
1 answer

Raspberry Pi RTSP steam in browser

I have set up a RTSP stream from my raspberry pi camera module using this: raspivid -o - -t 9999999 |cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/}' :demux=h264 I am able to view it using VLC with: rtsp://192.168.0.18:8554/ When I…
atwalsh
  • 3,622
  • 1
  • 19
  • 38
3
votes
1 answer

Can HTML5 be used to securely stream videos?

I was recently given an interesting problem: to securely (or at least as securely as flash & silverlight) stream video using HTML5. First off, yes, I know that the HTML5 video tag out of the box cannot do this, but what I'm wonder is if there's ANY…
Dylan Karr
  • 3,304
  • 4
  • 19
  • 29
3
votes
1 answer

How to play a video stream that requires authentication?

I have a Windows Store app (C#/XAML) which communicates with a REST service. At some point, I need to play a video stream provided by this service. If I just assign the stream URI to the MediaElement.Source property, it doesn't work, because the…
3
votes
1 answer

Using media player and camera to realize live video chat in android,based sockets

Yes,I have a requirement list as follows(maybe it can called simple ideas) 1.Using Camera and MediaRecoder to recording a video (Now I can record and save it to a file) refer: http://developer.android.com/guide/topics/media/camera.html 2.When…
aWang
  • 78
  • 6
3
votes
1 answer

VLC stream to MP4 WEBM and Flash

I am trying to stream video from a IP Cam to my my Wordpress site. I would like my stream to be available via common devices Windows, Mac, Android and IOS. Currently I am using VLC to stream,but I can only get a flash stream to work but I would like…
Eric Fluharty
  • 111
  • 2
  • 8
3
votes
3 answers

Capture video from vlc command line with a stop time

I'm trying to capture a video from an RPT stream to my pc (Ubuntu 12-04 LTS). I'm using vlc from command line as below: cvlc -vvv rtp://address:port --start-time=00 --stop-time=300 --sout file/ts:test.ts but vlc ignores the command --stop-time and…
sioale
  • 77
  • 1
  • 2
  • 10
3
votes
3 answers

I want to display a videothumbnail image of a video from url in my uiimageview for iphone

Is it possible to get the first image frame of a video and display it in uiimageview . My video is saved in the server. i need to call the url to play the video
manuthaliath
  • 33
  • 1
  • 3
3
votes
2 answers

FFMPEG Streaming using RTMP

I'm trying to create a stream using ffmpeg to send a video to a Red5 Server. I've already managed to do this using this command: ffmpeg -re -y -i "Videos\Video1.mp4" -c:v libx264 -b:v 600k -r 25 -s 640x360 -t 40 -vf yadif -b:a 64k -ac 1 -ar 44100 -f…
desto
  • 1,047
  • 3
  • 14
  • 19
3
votes
7 answers

Video editing using PHP

Is it possible to record a voice onto the uploaded video using PHP?
jose
  • 464
  • 4
  • 7
  • 20
3
votes
0 answers

Playing multiple video streams simultaneously in single layout using vitamio

I am trying to play 2 video streams in a single layout using vitamio MediaPlayer. I used example code specified here, activity based solution. I replaced the android MediaPlayer with vitamio MediaPlayer in the code because android is not supporting…
Nani
  • 171
  • 2
  • 6
3
votes
1 answer

Running ffplay video within a jframe

I wish to play a video in JFrame. I am already using ffmpeg in my project. As I wish to keep the project light, I am not willing to use other frameworks like JMF or other. I know that I can play video using ffplay. But the problem here is ffplay…
Optimus Prime
  • 6,817
  • 5
  • 32
  • 60
3
votes
1 answer

Support Both Desktop And Mobile Clients With HTML5 Video Tag

Normally to embed video into an HTML5 page I use the following:
3
votes
1 answer

Is there a way to implement video streaming in PhoneGap on Android/iOS?

Is there a way to implement video streaming in PhoneGap on Android? I need to implement a live video/TV stream on Android and iOS with PhoneGap. But I cannot get Android/iOS to show the stream. Does anyone know what format the stream needs to be…
Rajeev Barnwal
  • 1,349
  • 11
  • 14
1 2 3
99
100