video

live Video streamming

Hello Can any one tell me how to stream video using mac osX , i need to write an application in mac os for video conferencing please let me know any prerequisites for making this application and what shud i learn for this . Thanks in advance . ...

What is a reasonable update interval for video analytics (percent watched)?

I'm developing a custom analytics solution for videos on my site... the functions are mapped to both a Flash player and a HTML5 <video> player. General design advice would be greatly appreciated, but I'm specifically curious how often I should update the percent watched value... I was thinking I'd set a certain percentage threshold rath...

Configuring DSVL to show camera images from Logitech9000 webcam

I am trying to view camera feed from a Logitech9000 camera using DSVL(DirectShow Video Library) http://sourceforge.net/projects/dsvideolib/. The xml file currently looks as below: <?xml version="1.0" encoding="UTF-8"?> <dsvl_input xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Documents and Setti...

Ruby FLVTool2 is no longer working

Hi guys, Our website allow video upload; clients were able to download videos from youtube, upload them on our website, then FLVTool2 (ruby) is used to process the videos. This tool was working for couple of years, but now it gives me some errors due to the new youtube encoding. the error I have is ERROR: EOFError ERROR: /usr/lib/ru...

Capture videostream with C#

Hello! I need to capture and save videostream using C#. I receive the videostream from a "Makito" server of "HaiVision", listening to a UDP port of my machine. I don´t need to specify the IP of the videostream server. The videostream that i receive can be encoded in "Transport Stream over UDP", "Transport Stream over RTP", "Direct RTP"...

How to track network usage of my app on iPhone?

My application play video from internet using MPMoviePlayer. I should display: transferred data size and average data transfer speed (for current playing video). I cant get this information from MPMoviePlayer. So I decide to monitor network traffic of my app and use this information. My question is: How to track the network usage of m...

How do I make a movie for upload to YouTube from a series of PNG images on the iPhone?

Does anyone know how to make a movie (avi / mpg) thats uploadable to YouTube from a series of PNG images? Also, how would I add a .caf audio file to that videostream? ...

.NET webcam video capture to file

I'm looking for a solution to record video from webcam in .NET. Currently, I'm using VideoLab components (http://mitov.com/html/directshow_video_capture_in__n.html). It works, however it has some annoying bugs or incompatibility with my device. Moreover, it's a bit heavyweight for my simple task. All I need is recording to file from defa...

Live video streaming like ustream.com?

I have a customer that is currently using ustream.com as his live video streaming service. Basically he has a site for local sports where they stream the games. The problem is, ustream does not keep a copy of the videos for archiving for watching later. Basically I'm looking for a php/mysql compatible solution for having him handle the ...

Are there limitations for playing video over wifi/3G on the iPhone?

I have an app that is playing archived *.mov files from a server. Some of them are longer than 10 minutes. Is this ok? Can anyone point me to the guidelines for playing video? ...

how can i create a video player like this website?

hi. i don't know how i can create a video player like this website. i can develop .net and flex applications but can't flash. where should i start? if i develop it with flex, can i use it in an asp.net website? i know i can use it with php sites but not sure about asp.net. thank you so much for your opinions. best regards this is th...

How can I autoplay a video using the new embed code style for Youtube?

I can't work out how to autoplay a video using the new embed code style for Youtube. I tried adding &autoplay=1 to the url, which worked with the old style, but it didn't work. For example, http://www.youtube.com/embed/JW5meKfy3fY is the embed link, but http://www.youtube.com/embed/JW5meKfy3fY&amp;autoplay=1 doesn't work. Can anyone tell...

Problem with MPEG2/MP4 video Demux

I've been working with Directshow for some time now. I've been working with codes (GMFBridge), and I recently started working with mp4demux. I saw it does a good work demuxing many compressed types, but there are a few types I work with that it still can't demux. I'm writing to ask about these ones. I have here a sample of a XDCAM-EX fi...

What is simplest way to repeat a video in a MediaElement

I have a MediaElement where the source is bound to some data <MediaElement Source='{Binding Something}' /> What is the simplest way to have the video repeat? Ideally, MediaElement would have a repeat behavior property. <MediaElement RepeatBehavior='Forever' ... /> But I can't find such a property. ...

Python subprocess + mencoder not working, same command works in terminal

I am having a problem using mencoder (SVN-r30531-4.2.1) through a python (2.6.1) subprocess. I am trying to join two mp4 files which are exactly the same size, codec, etc. Both have no audio. The code I am using to test is: import subprocess mp4merge = [ "mencoder", "in1.mp4", "in2.mp4", "-ovc", "copy", "-oac", "copy", "-of", "lavf", "...

Flash Projector fullscreen on video

I'm setting a fullscreen in a Projector flash using: stage.displayState = StageDisplayState.FULL_SCREEN; Next I load a video (flv with a swf player) and I add in a "container" movieclip called "windowSmall" using: loader = new Loader(); loader.load(new URLRequest(path_to_swf)); windowSmall.addChild(gallery); After I add the video t...

iPhone SDK: how to switch to previous view when video playback is over?

There is an application which uses several view controllers. In one of them there is a button which switches to a new view, and there, in viewDidLoad method, I launch a video playback. But when it's stopped, an empty view pops up instead of the previous view I'm working with. What is a proper way to switch back to the previous view aut...

iPhone Smooth Transition from One Video To Another

I have to figure out the best way to transition from one video to the next BASIC IDEA: An example would be that there is a video of a person walking.....the user taps the video and a seamless transition occurs to a video of a person running (over simplified example) My first thought was to create 2 movie players and use transitions bet...

adobe flash cs5: actionscript 3

When I preview this the video quality is really bad, and I don't know of anyway to improve it. There is Camera.setQuality but it is only for use with flash media center. import flash.media.Camera; var cam = Camera.getCamera(); var video = new Video( ); video.attachCamera( cam ); addChild( video ); ...

How to control the frame height and width of captured video: setVideoSize() does not work

On a Nexus One (for example), the camera application is able to capture H.264 video at 720x480 (the "High" quality setting). However, when using the MediaRecorder API, it always seems to capture at a fixed frame size of 320x240. I would expect the setVideoSize() method to control the frame size (as in the prepare fragment below), but it...