video

Stream Video with ASP.NET

Is there a good way to stream video through asp.net to a normal webpage and mobile? I've tried the following but it doesn't work in my Sony Ericsson K810i. When I try it in my browser, I can see the clip (don't know if it's streaming though). html: <object type="video/3gpp" data="handlers/FileHandler.ashx" id="player...

Problem with MPMoviePlayerViewController frame while ipad orientation change

i m developing ipad app and using MPMoviePlayerViewController in it to play videos.. it works ok everything.i set frame of MPMoviePlayerViewController in potrait mode.that is half of potrait scree. but in landscape mode i want movie to play in full screen. so i set frame accordingly. now when i launch app in potrait mode .. i works ok as...

HTML5 <audio>/<video> and live transcoding with FFMPEG...

So from my web server, I would like to use FFMPEG to transcode a media file for use with an HTML <audio> or <video> tag. Easy enough right? The conversion would need to take place in real-time, when an HTTP client requested the converted file. Ideally the file would be streamed back to the HTTP client as it is being transcoded (and not ...

dynamic xna video playback speed?

When calling getTexture from a video object in XNA 3.1 you get the current frame of the playing video based on how much time elapsed since the video started to play. However, I need to play back the video while changing the playback speed dynamically based on the players actions. I wonder if there is a way to play back the video at a f...

Playing HTML5 Video and Audio simultaneously

At this URL I have HTML5 video and audio elements both set to autoplay but it appears as though only the video is auto-playing. Clicking on the thumbnails should start up a new video as well as a new audio file but I am only seeing a response from the video element. This page is being developed in FF 3.6 for now. http://jeromecovingt...

HTML5 video player, loop only specific frames

I am looking to play and loop only certain parts of a video with the html5 video player. I am hoping for something like loopstart and loopend attributes for the audio player, but have not found documentation that states that this is available for video. An example of what I would like to do: when the page loads, the src video plays f...

What topic is more perspective in terms of market - Cloud computing or Video restoration?

I am choosing topic for a paper to work on during this year at university, I wonder which one is more wanted by market \ job providers here are ones I have some knowledge on: cloud \ farm computing ( meaning task management, process control, creation of environment, messaging between parts of system etc) and 2d video to 3d reconstruc...

How to architect a video site, from a performance point of view

Hi guys, I want to build a high traffic video site, which has many videos and visitors, using ASP.NET. But I have no experience of high traffic sites and video sites. Anyone can give me some stuff to read or some keywords for me to google? In the performance point of view. Many thanks :) UPDATE: I said our site is similar to Youtube...

take snapshot from hd movie file

Hello, I'm currently using directshow.net to take information about video files(including snapshots) and my app got stuck on large files(5 gigs). Does anyone know how can i take info about large video files in C#? ...

Communication between PHP application with Web Cam

In my website I am trying to interact the php application with Video Cam. I am not getting proper way to proceed. Please suggest me ???? ...

How to encode video at multiple framerates?

Hello, I'm making an application which imports several videos from different sources and joins them together. The problem is that the source videos can be at different framerates - so for example I want to join a 2 fps video (call it Video A) to a 5fps video (Video B). I want to keep it looking right in the final export. I could pick a...

iPad Video with Transparency

Hi, is it possible to have a QuickTime video with alpha layer (transparency) play on top of a static dynamic background UIView (i.e. a view that changes occasionally) on the iPad? Thanks! ...

html 5 video tag file without extension

I have this sample code, that works: <video src="./ellen.ogv" width="320" height="240" type='video/ogg; codecs="theora, vorbis"' controls></video> And this one that doesn't work: <video src="./ellen" width="320" height="240" type='video/ogg; codecs="theora, vorbis"' controls></video> The only change was on the name of the file. Fir...

Serving WMV on a drupal site?

I have a WMV file that I need to host on my drupal 6.13 site (on ubuntu 9.x). Is a there a relatively painless way to do this. Do I need the "Video" module to do this? Or can I just install a video player and point my WMV file to it? My other concern is the user should be able to view this video on my site without needing to download a...

JW Player Shows Blank Video In Explorer After Hiding and Showing

In Internet Explorer 7 and 8 (WinXP/Flash 10), if I play my videos using the JW Player in the slider they work. However if I move to the next slide and then return to the original slide the video is no longer displayed - the audio is still audible and the video can be played and paused, but there is no image. I've asked this question on...

GPU or hardware-based h.264 encoder with API?

We'd like to stream h.264 video to a browser based on frames generated on the server. The frames would be synthetic, i.e. not coming from another "real movie", mpeg, etc. We'd be generating them separately as part of a simulation, potentially using OpenGL/DirectX to render individual frames. In my naive approximation, we'd have a bitmap ...

How can I hide/disable the fullscreen button in the iPad’s standard HTML5 video controls?

I’m writing an HTML5 page with a embedded video tag for the iPad. How can I hide or disable the fullscreen button? I just need to show the video without the fullscreen option. ...

Are subtitles supported in any of the native video controls?

I'm writing an application with some embedded video content, it's Android 2.2 that I'm targetting. I need to show localized subtitles for the video content. The video content can be mp4 or 3gp video, played from the SD card. There are some third party video players out there that already support subtitles, but I haven't seen any open s...

Pause Multiple HTML5 Videos

I have multiple HTML5 videos in a slider at http://ghostpool.com/wordpress/phideo and when I click on any of the slider buttons the first video is paused using the following onclick function. <a href="#" onclick="pausePlayer();">LINK</a> var htmlPlayer = document.getElementsByTagName('video')[0]; function pausePlayer() { htmlPlaye...

Play youtube videos on iOS4

Hi all, I'm facing a problem with playing youtube videos in iOS4. I'm using the standard method of embedded webview and providing the youtube url to it but it's breaking after a couple of seconds. It's working completely fine in iOS <= 3.1. Also I read that you can't play youtube videos using MPMoviewPlayerViewController. Can anybody ...