video

Mp4 video won't play in the iPad

Good day, I've been working on this project and learning how to place a video on the ipad, and all the other browsers. But after writing the code for this, I noticed that the only thing I get from the iPad is the first keyframe of the video, but the video is not playing. When I press the "Play" button that appears in that screen of the...

DirectShow CBasePin::ConnectedTo() returns a VFW_E_NOT_CONNECTED error after returning from Windows Lock

Hello everyone, We have an application that uses DShow filters to play video off of IP cameras. I'm currently trying to fix the following bug: Normally, the app will build a graph, connecting the video renderer filter and the source filter on request for live video feed. Now, if while the player is running the PC goes into windows lock...

Best way to add video uploading, encoding and streaming functionality to my Rails app ?

Hi, What is the best way to add video uploading, encoding and streaming functionality to my Rails app ? I'm thinking about a mix as : Rails app + Video Online Encoder + Amazon S3. What do you think ? For the Video Online Encoder (VOE), which one is the easier to use with Rails : heywatch, panvidea, encoding.com, pandastream, ... ? By...

Generate a list of videos on Blackberry device

I am trying to find a way to generate a list of videos that are found on the Blackberry SD card. I recently did an Android app that did this using the MediaStore API; however, that obviously isn't available on the Blackberry. In that application, it searched through the phone for supported video files and added the name of the files in a...

Why does an embedded ogg video work on localhost, but not on the web server?

I have an ogg video which works just fine using the video tag when I run it on localhost in either Chrome or Firefox. However, when I try running the page on the server, the video player controls show up, but not the video. I know the video is up on the server, because I have a download link that works which has the same exact path.. I'...

How do I stop a video at a specific time using Blend/WPF.

How do I stop a video at a specific time using Blend/WPF in C#? Example: When I clicked on a "TreeViewItem" called "MONDAY", the video will start to play. But up to 10sec of that video, I want it to stop. As after 10sec, that video will be showing video of another "TreeViewItem" called "TUESDAY". So what is the coding for it? My codin...

Server-side video editing

This is what I need to do on a server. Let's say that I have 3 video files: video1.avi 2 minutes -> 640x320 video2.avi 1 minute -> 640x320 video3.avi 1 minute -> 640x320 I need to create video4.avi, that will be 2 minutes long and 1280x320, Containing the videos side by side (horizontally).I need video2 and video3 to be at the right s...

Embed a YouTube video in HTML5 without Flash

Is it possible to embed a YouTube video on your own website using HTML5, so it can be played on Safari on iPhone without Flash? ...

How do I stop a video at a specific time using Blend/WPF in C#?

How do I stop a video at a specific time using Blend/WPF in C#? Example: When I clicked on a "TreeViewItem" called "MONDAY", the video will start to play. But up to 10sec of that video, I want it to stop. As after 10sec, that video will be showing video of another "TreeViewItem" called "TUESDAY". And when the video is stop, the "Slide...

How do I stop a running video using Blend/WPF?

How to stop a video after playing 10 sec. And the video slider will also stop. thanks. My coding: if (threeA.IsSelected == true) { Video.Source = new Uri(@".\step_3.wmv", UriKind.Relative); Video.Play(); descriptionText.Text = "Stepping out."; // When the video play until 10sec, both ...

Having some issues streaming videos to JW Player using Nginx

I've compiled Nginx with the H264 streaming module and tested it using: wget http://cdn.mydomain.com/video.m4v?start=10 The file returned has the first 10 seconds chopped off it. So I know Nginx is successfully streaming the video. On my website, I have JW Player 4.5 setup using the following code: var time = false; var player = f...

[C#] How to play a running video from 1sec - 20sec in Blend/WPF

To play a video for just 20sec out of the whole video in Blend/WPF using C# language? Thanks. ...

Integrating Silverlight video to ASP.NET MVC

How do I integrate Silverlight video player and show video at MVC view page? ...

Playing 3D Animation in iPhone App (Possibly using a looping video)

Hi Guys, Is there a relatively easy was to include a 3D animation into an iPhone app? We have the animations already made up for another project and our client has asked if they can be placed inside an iPhone app. We could perhaps include a low-res looping video of the animation (it's just a 3D component rotating on a single axis), or w...

Play a local video from iPad in an HTML 5 webpage

Hi, Does anyone know if you can use the HTML5 video tag to play a video from the iPad library? Something like: <source src="/local/path/video.mp4" type="video/mp4" /> Thanks for your time ...

streaming live video b/w air appln and web appln using red5 in flex

hi everyone, http://stackoverflow.com/questions/2113080/how-do-i-record-video-to-a-local-disk-in-air, as in the above url i dont have to record the video but i just have to stream the client live webcam video( who connected in web appln developed in flex ) in air appln to air client. the video of air client published to webclient succes...

gstreamer command to compose (pip) two videos.

What command should I execute in gstreamer in order to compose two 320x240 videos into a single 640x240 side-by-side video? let's say I have video1.avi and video2.avi ...

What is a good peer-to-peer video service to embed in my website?

I'm developing a website in ASP.NET and would like to have a video service that is peer-to-peer. Basically users schedule peer to peer video meetings with each other and they enter a video chat room for their sessions. What is out there? I've looked at oovoo, how easy and scalable is it? I don't mind a paid solution either, as long as ...

Flash Media Server (FMS) streams recording

Hi, I'm trying to record a FLV, using servers-side scripting. It's working as expected. I'm using record('append') to add streams to the same file. What I want to do now is record the streams in "real-time". I want to keep the same functionality (append) but I want to "records" the time that there is no streams available. In other words...

[C#] How to write this statement into coding?

[C#] How to write this statement into coding? I declare my Video Time Value as "VideoTime.Value" **if (Video Time Value is equal to 4 sec) { MessageBox.Show("Video Paused"); }** ...