I'm looking for a better playback solution for streaming video in iOS, preferably one that allows you to stream video from a url AND save the bits to disk. Currently using quicktime on iOS, if you playback a video from a URL you can't save anything to disk, you have to stream the url every time.
Thanks.
...
Hi, I´m working with a FLVPlayBack object on Flash using AS 2.0... It load dinamicaly a lot of videos, in differents size. The problem is to make it show on all screen without mantain aspect ratio, I tried something like: Player._width=800; Player._height=600; and Player.setSize(800,600);
If I use Player.mantainAspectRatio=false, nothin...
hi all,
I have a quicktime movie where I embedded cuepoints. In Flash, it is easy to play the video and catch the cuepoints so you can trigger something when necessary.
I want to achieve the same thing in an iPhone application. I have found no concrete information, is this not possible?
Greets.
Thomas
...
Hello everyone,
I heard Silverlight support high quality definition video, which flash does not support. Is that true? If yes, any other benefits comparing Silverlight to Flash?
If anyone could provide some document to make a reference, it will be appreciated!
thanks in advance,
George
...
Hi,
I'm writing Silverlight video player and I search for inpiration so i have found JW Player.
But as I know Silverlight apps are inside .xap files and JW Player uses js script to implement SL logic.
Could you explain me how it works and why .js not .xap?
Thanks in advance.
...
In one of my projects we have a streaming web site that needs to synchronize HTML content with a video stream down to a ~100 ms level. Currently we are using WMV and Microsoft's Mediaplayer ActiveX object for this, which basically limits us to IE as a platform.
As a prototype a while ago I tried out a Silverlight based media player (cus...
Hi All,
I am trying to upload video on facebook. But my code is not working:--- FBRequest *m_UploadRequest = [[FBRequest requestWithSession: _session delegate: self] retain];
NSURL *videoUrl=[NSURL URLWithString:@"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"];
NSData* VideoFileData = [NSData dataWithContentsO...
hi!
I wonder if someone could help me.
I´ve created a video from a set of images using jmf and an already done example .
Now I´d like to add music to my video (.mov or .avi) to generate a new video with the music...
I´ve heard about xuggle api but I don´t know how to do that.
could anyone help me plz?
thanks a lot for your time.
...
We have a requirement to create video demo of certain products. What is the best way to make sure that video plays on maximum possible browsers on all popular platforms?
Current implementation we just have flash videos that load in a flash player.
...
I have any number of thumbnail images that, when tapped, will play a different video (fullscreen). I have never been clear on whether I should keep one MPMoviePlayerController object in my view controller and have it play whichever url according to the thumbnail that was tapped, or create a new MPMoviePlayerController each time. What is ...
I'd like to play two videos at the same time from an HTML page in a UIWebView. By default any playing video is stopped when another is started. This happens even if the two videos live in different web views.
Is there a way to force continued play for the first video?
...
How do you change the src of a HTML5 video tag using jQuery?
I got this HTML:
<div id="divVideo">
<video controls>
<source src="test1.mp4" type="video/mp4" />
</video>
</div>
This doesn't work:
var videoFile = 'test2.mp4';
$('#divVideo video source').attr('src', videoFile);
It changes the src if I inspect it using firebug,...
I try the following 2 methods of appending UIIMages pixelbuffer to ASSETWriterInput. Everything looks good except there's No data in the video file. What's wrong?
1)Adaptor class
AVAssetWriterInputPixelBufferAdaptor * avAdaptor = [AVAssetWriterInputPixelBufferAdaptor
assetWriterInputPixelBufferAdaptorWithAssetWriterI nput:writerInput...
I am getting the HTML content of the page using the URL. once i got the HTML i m striping all the images using Xpath. I m stuck at how to fetch the video content. If i try checking for embed code ,it gives me all the adds inside the page. Please suggest me a workaround. Thanks in advance.
...
I want to insert .mov file in my webpage
My Code is:
<OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="320"
height="255" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
<param name='src' value="ad.mov">
<param name='autoplay' value="false">
<param name='controller' value="true">
<param n...
I received from the client .flv files, and used SWF Tools to embed a different video in the right sidebar of each page.
Now the client wants that changed, to .swf files. (I understand that both the .swf file and accompanying .flv file need to be present for this to work).
Do I still use SWF Tools, or something else?
Thanks in advance...
hi,
Im trying to insert video file in my html webpage
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320" HEIGHT="180"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM name="SRC" VALUE="int.mov">
<PARAM name="AUTOPLAY" VALUE="false">
<PARAM name="CONTROLLER" VALUE="true">
<EMBED SRC="int.mov" WIDTH...
I am investigating the possibility of treating a video input/output card as a Window so that I can render graphics to it from .NET. It would need the ability to handle transparency so that I can key the rendered graphics over incoming video.
I haven't found anything that does exactly this - some SDKs allow you to render graphics, but yo...
I have a video element set to 100% width in a container div. That div has a max-width of 800px and min-width of 400px. When resizing the browser I need the video element to resize while retaining its original aspect ratio. Currently it resizes in width but remains its original height, adding letterbox bars above and below to make up for ...
I want to know how to upload a video like on youtube, vimeo etc to get a final flash video. I'm using PHP.
I have this HTML form:
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="upload_video" />
</form>
So what should I do if the user has uploaded a video for example in .mov or othe...