video

Controlling Music and Video in Python

I'm trying to write a karaoke program in python. Every karaoke software has basic functionality like seeking in the video as well as modulating the pitch of music by half steps. What are some modules that I can use to permit this functionality? I'm going to use wxPython to write the gui portion if that makes a difference! ...

Developing Custom Video Player With some customization

Hello guys, I want to develop/customize video player with some customize requirement. For ex. i should be able to put my client logo in video player,adjust volume control,full screen etc..... I am new to video playing technology so dont have any idea to how full fill this requirement. So any one can giude me how can i achieve this ? M...

How can I track my site video clicking

i Want to track my website video clickings, i use google event tracking code but my developer told me it is not html form, the video is in embed form.. can anyone tell how i can track my website tracking in embed video coding ...

iPhone UIWebView/Safari.app iOS 4 video/movie - Server issue?

Hello, I have a UIWebView which loads videos from an external server. The code seems to be fine since it works when I try to host my videos on another server. Are there any changes since iOS 3.0 which the server didn't need to have? (Where it loaded without problems). The easiest way to test it is to load the url in the inbuilt Safari....

Video does not play in Flash Site. (Error 1120: Access of undefined property PLAYER)

Hello! I am trying to create a mini video portfolio on my flash website, but when importing the first video, I get 13 errors...all of which have something to do with either UIManager.as or VideoPlayer.as. I am assuming that the ActionScript is automatically generated, but I am unfamiliar with this idea. Here are the errors I keep gettin...

how do i find the date a video (.AVI .MP4) was actually recorded?

properties> date created... i thought this meant the date the video was created, but finally realized that date changes every time i move, reorganize, even open a file. often, the date modified is earlier than date created. the date a jpeg was taken is readily available. is there any way to get the same information from an AVI or MP4 F...

Access individual frames of video streamed from the Internet on iPhone

Hi, I am wondering if it is possible to access individual frames of video streamed from the Internet using the latest iOS4 SDK? What I would like to do is to access every frame in real time, manipulate it and display back on the screen. Thanks, Andrzej ...

OpenCV - VideoWriter produces a video with a "repeated" image

I'm trying to process each frame in a pair of video files in OpenCV and then write the resulting frames to an output avi file. Everything works, except that the output video file looks strange: instead of one solid image, the image is repeated three times and horizontally compressed so all three copies fit into the window. I suspect ther...

Video loaded using NetStream hangs in 10.0.2.54, but plays in 10.1.x.x Flash Player

Good day! I'm loading flv file using Video and Netstream (trivial example from docs). On Flash player 10.1 everything works fine. On 10.0.2.54 everything stops on NetStream.Play.Start. May be this is some well known bug? Thanks in advance! ...

Single PHP "exit;" statement prevents HTML5 video in Safari

Bizarre bug: in a PHP script that serves video files, I have a few test conditions (authenticate token, make sure file exists, etc.) before sending a "video/mp4" header and outputting an MP4 file. If any of the tests fail, $fail is given a non-false value. At the end of the tests there's this if statement: if ($fail) { exit; } T...

Video is corrupting when compiled with mxmlc but not Flash IDE

Hi, I have movieclips containing FLV video sequences. When this FLV plays in a SWF compiled from mxmlc, the video is completely corrupted - all different coloured blocks. If I compile from the IDE the video plays fine. It's a bit more involved than this: if I play multiple copies of the same FLV at the same time, they're fine, wher...

ffmpeg settings for converting to mp4 and ogg for HTML5 video

Despite all the hype, in reality the HTML5 video tag has a bit of a problem. In order to use it and for it to be cross browser compatible, you have to include more than one format of the video. To target all supported browsers these formats are mp4 and ogg. I was searching around for optimum settings for each format but unfortunately I...

Saving image frames to a video format

Are there any easy to drop in solutions for saving a number of images into a video file in iOS? Example would be if I had 300 frames all saved as separate images and wanted to turn them into a single video file that a user could email or post on YouTube. ...

Programming GPU to control DVI output

I have a NVIDIA GeForce 8400GS graphics card which has a DVI output and I would like to take a video or series of frames and display them as the DVI output for WUXGA (1,920 × 1,200) @ 120 Hz with GTF (2 x 154 MHz), which is a possible display mode for DVI according to the wikipedia article. I want to do this because I want a high frame r...

Is there a good library c/c++/java to generate video with special effects , transitions from a set of images ?

Hi, I need to develop a video generator that takes in a set of images, music files and outputs mp4 videos. The platform is linux. Was wondering if there are any existing libraries that can do this job ? Thanks ...

Videos for developers

Hi, Is there any developers-centric video tutorials site? For example containing video tutorials on topics such as php, jquery, c#, java, etc. Note: I know youtube, so please don't write about such sites. ...

VideoPlaylist iPhone

Hello, if I open a online Video file like this: [UIApplication sharedApplication] openURL:[NSURL URLWithString:url]]; the App will closed ... is it possible to create a playlist for the videoplayer application? ...

Turn a video into a sequence of images using GStreamer (not ffmpeg)

I have an ogg vorbis video. It plays fine in totem and mplayer. I want to covert it to a sequnces of images, one image per frame. I can do this on ffmpeg with the following command: ffmpeg -i video.ogv -f image 2 video-frames-%08png However that doesn't work for this video. Each frame is all grey as if there has been loads of decoding...

Best technology for web-to-application video chat?

I'm starting to look into technologies to support a project that involves video chat between one party using a web browser and another party using a fat client (technology TBD, per below). I see three components that need to be identified (and I'd prefer to avoid reinventing any wheels): the web client (video recording & playback), fat ...

The best way to use Video with QGraphicsScene

I am currently using Phonon VideoWidgets inside of a QGraphicsScene using a QGraphicsProxyWidget. I have my viewport set to a QGLWidget. However, it causes me big issues when I try to apply some transforms to the video such as a rotation that isn't evenly divisible by 90 degrees since then it slows my program down a lot. After reading...