Tagged Questions
1
vote
1answer
36 views
Playing video HTML5 and Apache
What I'd like to do is to play a video served by an request to a URL.
The webserver is Django
Here the HttpResponse to serve the video is formed:
filename = rec_path(recording_id) + '/rgb_video.mp4'
...
0
votes
1answer
31 views
poor performance with http live streaming ogv
I have a http live streaming video with ogv format which should be read and presented in a web page player on desktop and tablets.
but the problem is poor performance, since it may be a very long ...
1
vote
0answers
43 views
Using websocket to stream in video tag
I'm trying to stream a (WebM or MP4) video from Node.js to HTML5 using websockets (the websocket library is Socket.IO on both server and client). The browser in use is the latest version of Chrome ...
0
votes
0answers
35 views
HTML5 video, socket.io and Node.js
I would like to know what is the state of art by now of the html5 tag and the possible applications.
In particular, i would like to develop an architecture which on a client side (let's call it A) ...
0
votes
0answers
39 views
HTML5 Videos on Localhost Stop After 15-30 Minutes
I have a video site in development that's currently running on my WAMP server. The videos were all encoded to .mp4 using Handbrake, and none of them will play for longer than 15-30 minutes. I have ...
0
votes
1answer
29 views
Html5 video player not been auto resumed
I have an Html5 video player:
<video
video id="videoObj" class="video-js vjs-default-skin center" webkit-playsinline autobuffer preload="auto" poster="http://SomePoster.png">
...
0
votes
2answers
66 views
Possible to stream videos using Amazon S3/CloudFront with HTML5 player?
I want to use an HTML5 video player and stream videos. Is this possible with S3/CloudFront? I understand Amazon uses the RTMP streaming protocol and HTML5's video tag does not support RTMP. Is there ...
0
votes
1answer
98 views
Video/Audio streaming from Amazon S3 to phonegap apps?
I want to setup a CMS using wordpress on Amazon Ec2 & then create apps in different platforms using phonegap which will act as a presentation to the content in CMS.
The CMS will include high ...
0
votes
0answers
30 views
html5/ divx not playing a_ac3
im am looking for a way to play mkv files with ac3 audio codec on my website unfortunatly the code i am using at the moment will not play the audio (html5) and the video will not play using divx ...
1
vote
0answers
69 views
Playing Video from RTMPT Stream in JwPlayer
I'm use JwPlayer to play video from Red 5 Media Server.
How do We play video which streamed via RTMPT protocol?
Thanks,
0
votes
0answers
28 views
MediaSource Api does not behave properly if Each media Segment contain single I frmae
I am experimenting on chrome Media source API . I have some data H264 data . In this data every frame is I-frame( Random Access Point) . Then Media-Segment is created per I frame .and then this ...
0
votes
0answers
48 views
Dynamically loading Sublime HTML5 Video player
I am trying to dynamically load a bunch of sublime videos in from my page, and I am having trouble with the difference between the 'sublime' and 'sublimevideo' objects, and the docs aren't too ...
0
votes
1answer
171 views
WebRTC fallback
I am trying to choose the right way to organize conference video chat from browser. It should work both on iPad/iPhone/Chrome/etc(with WebRTC and without Flash sometimes) and on IE/Firefox/etc(with ...
0
votes
1answer
26 views
Understanding HTML5 Video Tag and streamed Chunks
I am trying to understand the HTML5 video tag and how it plays/buffers chunks of streamed data from a WEBM file.
If I break a WEBM file up into say 10 chunks and feed them all into the video tag, the ...
0
votes
0answers
17 views
Mark/tag video sections
Is there a way or a script that allows you to load a video and lets the user viewing the video mark certain sections of the video as 'interesting' for example, and then link directly to these sections ...
0
votes
1answer
48 views
Streaming video from a server download
I sure this could be a stupid question after all but i have a personal project in mind, i want to develop a app web with a html5 video that buffer video from a server service of hosting files ...
1
vote
1answer
175 views
Using Node to stream Video to HTML5
I've been playing around with node and websockets and built a small test app that streams audio using websockets. The server breaks apart the mp3 using createReadStream, throttles the stream using ...
0
votes
0answers
28 views
Is uploadify a viable solution for youtube / vimeo type site
I am about to start a project for a client where users will upload videos they've created. I'm going to have a queue on the server that encodes the videos with FFMPEG but as far as client side ...
0
votes
1answer
104 views
Playing Video in HTML email via HTML5
I'm trying to get an MP4 video playing in an email via HTML tag. (code below).
This code has been taken and adapted from a trusted source ...
0
votes
1answer
213 views
Unable to stream from MJPEG server
I am trying to stream from MJPEG server by using <video> but i get following error:
HTTP "Content-Type" of "multipart/x-mixed-replace" is not supported. Load of media resource ...
1
vote
1answer
627 views
Youtube video blocked on mobile bypass
Is there anyway to bypass the blocked videos on mobile? First I tried to fire up normal youtube intent, then I used WebView (using both video and iframe tags), and lastly I changed the user agent of ...
2
votes
0answers
453 views
RTSP streaming with HTML5 video results in server died error (100,0) on Android
I have a very simple HTML5 video streaming application for Android built with Phonegap. The device I am testing this is Samsung Galaxy Tab 2. The video does not stream at all. I see the following ...
0
votes
0answers
77 views
Applet + Html5 video tag
I have the next issue
I have an html page which runs an applet method and then recovers the result of the applet (byte[]) and tries to put it in html5 video tag.
The task of the applet is to generate ...
0
votes
0answers
155 views
Mac Safari html5 video not working
I'm using video-js player for .webm, .mp4 videos, in all players is working fine but not on Mac Safari 6 (didn't test other versions).
I have MIME type in my .htaccess file for webm and mp4.
Does ...
-2
votes
1answer
74 views
How to get started with Video Streaming? [closed]
I want to get started in video streaming, live video broad-casting and streaming media etc, but I am really not sure where to start.
For what I am looking to do, I am taking "influence" from ...
2
votes
1answer
214 views
Video Streaming in HTML5
How does one go about streaming video in HTML5 ? I can go with using a single browser of the latest version if I have to.I need to be able to start playing from any location of the movie even if the ...
0
votes
2answers
228 views
Is it possible to stream a html5 video?
I have a website that displays videos. It seems to work OK with 5 minute "webm" and "mp4" videos that are referenced by the HTML5 video tag. But if I ever use long videos, I'm worried that the ...
2
votes
0answers
251 views
Video Streaming: WebRTC vs. VLC vs. Other? [closed]
I am trying to create a media streaming app and am contemplating over which method of streaming video from a local directory on a PC. I am considering using WebRTC through HTML5 and Javascript. This ...
0
votes
1answer
102 views
Flash/HTML5 video partial playback
I'm looking for feature, that's implemented on youtube.
For example client have 100mbit download speed.
Client pressed play
Streaming server started streaming video file
Client started to watch ...
1
vote
1answer
420 views
Safari does not play HTML 5 video (IE 9, Firefox and Chrome all do)
I am aware that I need ogg for Chrome and Firefox and H.264 for IE 9 and I use multiple sources to support all browsers with my video, and I also have the required meta to keep IE 9 happy enough:
...
7
votes
1answer
237 views
HTML5 Video playing LAN
I use HTML5 <video> tag to play videos in my LAN from different computers. In my current setup, I have got a server, which provides the html page and all the videos I want to play. There are ...
0
votes
0answers
80 views
Explorer does not show ogg stream gotten from HTML5 page
I'm getting a stream from internet and I'm trying to showing it in webpage:
<!DOCTYPE html>
<html>
<head>
<title>Video Test</title>
<meta ...
0
votes
2answers
1k views
Error with HTML5 video in Chrome, using RangeFilePathResult
Using MVC3 and flowplayer, I have a video player that is set up to get video files with the following markup:
<div id="video">
<div id="video-viewport">
<!-- The data-ratio ...
0
votes
0answers
123 views
Dynamically create video (stream) with createObjectURL
I wonder if it is possible to create a html5 video on the fly. Some of you may noticed the new webrtc and its behavior with the video tag.
navigator.webkitGetUserMedia('video', gotStream, noStream);
...
1
vote
0answers
887 views
html5 video streaming
I am working to stream a video screencast on our cakephp site using mediaViews and html5. I am using videojs for the player and am running into a few problems:
Will not stream in safari/ipad/iphone ...
0
votes
0answers
102 views
Can't seek backwards in VideoJS
I am using VideoJS, and running into an issue.
The HTML5 version will not 'seek' backwards (rewind). It throws an error "DOM EXCEPTION: INDEX_SIZE_ERR(1)". However when using Flash, it seeks ...
0
votes
1answer
485 views
Play streaming videos on firefox with html5 or flash
I am trying to stream video file on web. my server is httpd 2.2 runnin gon centos 5 64 bit. So far it has worked well with ie9, chrome, opera but I have issues with firefox. I cannot rely on a user to ...
2
votes
1answer
54 views
Video player that allows HTML embedding for questions and other user interactions
I'm looking for a video player that allows HTML embedding for questions and other user interactions, to build an educacion site similar to Coursera. The idea is to allow pop-quiz and other material to ...
1
vote
1answer
510 views
html5 video fullscreen with streaming hls
I have a bit of problem with streaming hls using video tag.
Originally I'm using flowplayer with the fallback flowplayer.ipad.js, it actually just generate video for using on fail to use flash (such ...
0
votes
1answer
200 views
HTTP streaming mp4 video on ipad
I have some mp4 files stored on one of my servers. The files have been encoded to H.264. I created a page on another server and embedded a html5 video.
<video width='400' ...
1
vote
0answers
112 views
Sydroid direct RTSP URL
I'm playing around with Spydroid a bit and wants to display the RTSP stream in an web browser, preferably in HTML5 to be able to view the stream on mobile devices. I've been looking around quite alot ...
0
votes
1answer
436 views
Live video stream from android mobile to desktop web browser
I have to develop an application that will record video and audio on desktop browser and android smartphone and share it between them. Just like the skype video call.
The application will consist of ...
3
votes
3answers
1k views
Player for video streaming from Amazon S3 CloudFront
Which players can I user for video streaming from Amazon S3 CloudFront except of Adobe Flash Player, Flowplayer and JW Player?
I need to stream mp4, with both flash and html5 support.
Ideally it ...
0
votes
3answers
135 views
Prevent stealing HTML5 video in the browser?
I'm looking for a way to securely deliver video to mobile devices. There are two options:
HLS in tag. This works very nicely for iOS and supports adaptive bitrate, perfect for mobile. However, is ...
0
votes
0answers
104 views
Is it possible to grab an image from a video stream from an HTML5/Flash/iOS player?
Ok, the context here is that I have a web page with either a Flash player, or an HTML5 player, or a native iOS app with the native player.
While the video is playing, is it possible to grab a frame ...
0
votes
0answers
175 views
Stream video with ac3 audio codec
I'm building a video streaming service for my self and I have trying to stream videos with video codec h.264 and audio codec ac3 in a matroska container.
I tried the html5 video element but ac3 is ...
0
votes
0answers
137 views
HTML5 Video Playlist for mobile devices
Is it possible to have an html 5 video tag play any amount of videos seamlessly after each other on mobile devices (iOS and Android mainly)?
I have tried various solutions and plugins but none of ...
0
votes
1answer
316 views
play http live stream MP3 in iphone Browser?
i have successfully transcode RTSP live stream to HTTP live stream (audio MP3) using VLC
this is the url to my new live stream if i stream this url in VLC it works fine
...
0
votes
2answers
227 views
HTML5 peer to peer video?
I am having trouble finding out if W3C has actually specified something for peer to peer voice and video.
There are several old solutions (2011), with several blogs and posts on here saying those ...
1
vote
1answer
228 views
Android Video - Flash is Dead, is HTML5 the only option to play videos?
I'm developing an app for android that plays mp4 video files from the web. My problem is that I initially relied on adobe flash player to play the videos but a couple of weeks ago adobe stopped ...



