flash-video

Playing a movie/DVD on a website

隐身守侯 提交于 2019-12-29 09:32:42
问题 I'm trying to play a movie (ripped from a DVD using handbreak to mp4 format, then using Miro to convert to webm) on a website - it works fine in Firefox and Chrome, but IE6/IE7 just displays a black screen. I'm using videojs but the Flash fallback was not activating, I believe this is because it was trying to view the external .swf file which I've now hosted locally (it's on https) but I still cannot get the video to run: https://secure.photofileltd.co.uk/new_site/index.php?page=video Any

How can I use BitmapData.draw with NetStream.appendBytes?

只谈情不闲聊 提交于 2019-12-21 04:17:16
问题 I am using NetStream.appendBytes() to play a local video (no server involved) in Adobe AIR. I would like to use BitmapData.draw() to take a picture of the video output, but I am getting this error: Error #2123: Security sandbox violation: BitmapData.draw: cannot access null. No policy files granted access. Here is some sample code: package { import flash.display.Sprite; import flash.filesystem.File; import flash.filesystem.FileMode; import flash.filesystem.FileStream; import flash.media.Video

How to best convert Flash compatible mp4 files with FFMPEG?

陌路散爱 提交于 2019-12-20 08:05:31
问题 I am trying to convert different files to a flash compatible .mp4 file with ffmpeg, but I can't seem to get it to work. Of course the objective is to get the greatest quality with the smallest file size. So far I have this, which works, but it doesn't play in a flash player for some reason. The result isn't that great, how can I improve this conversion? This is the command I'm using: ffmpeg -i input.file -f mp4 -vcodec mpeg4 -r 25 -b 560000 -s 610x340 -acodec aac -ac 2 -ab 64 -ar 44100 output

ASPNetFlashVideo doesn't play in serverside

微笑、不失礼 提交于 2019-12-11 06:45:19
问题 Am using the below code to play the video in asp.net web application. But it runs on local machine not in server. Please help me to fix this error. In server side it is buffering not playing. <ASPNetFlashVideo:FlashVideo ID="FlashVideo2" runat="server" VideoURL="~/Help/Video/Help.flv" Width="100%" Height="500px" AllowFullScreen="true" Alignment="Center" EnableTheming="true" EolasFixEnabled="true" WindowMode="Transparent" AutoPlay="true"> </ASPNetFlashVideo:FlashVideo> 回答1: here is source code

How can I use BitmapData.draw with NetStream.appendBytes?

a 夏天 提交于 2019-12-03 13:46:29
I am using NetStream.appendBytes() to play a local video (no server involved) in Adobe AIR . I would like to use BitmapData.draw() to take a picture of the video output, but I am getting this error: Error #2123: Security sandbox violation: BitmapData.draw: cannot access null. No policy files granted access. Here is some sample code: package { import flash.display.Sprite; import flash.filesystem.File; import flash.filesystem.FileMode; import flash.filesystem.FileStream; import flash.media.Video; import flash.net.NetConnection; import flash.net.NetStream; import flash.net

How to best convert Flash compatible mp4 files with FFMPEG?

断了今生、忘了曾经 提交于 2019-12-02 14:15:34
I am trying to convert different files to a flash compatible .mp4 file with ffmpeg, but I can't seem to get it to work. Of course the objective is to get the greatest quality with the smallest file size. So far I have this, which works, but it doesn't play in a flash player for some reason. The result isn't that great, how can I improve this conversion? This is the command I'm using: ffmpeg -i input.file -f mp4 -vcodec mpeg4 -r 25 -b 560000 -s 610x340 -acodec aac -ac 2 -ab 64 -ar 44100 output.file To create the interleaving metadata (which will allow for mid stream resumes, and rewinds

Multiple video sources combined into one

五迷三道 提交于 2019-11-30 01:32:36
I am looking for an efficient way to do the following: Using several source videos (of approximately the same length), I need to generate an output video that is composed of all of the original sources each running in its own area (like a bunch of PIP s in several different sizes). So, the end result is that all the original are running side-by-side, each in its own area/box. The source and output need to be flv and the platform I am using is Windows (dev on Windows 7 64bit, deployment to Windows server 2008). I have looked at avisynth but unfortunately it can't handle flv and non of the

Multiple video sources combined into one

丶灬走出姿态 提交于 2019-11-28 21:37:38
问题 I am looking for an efficient way to do the following: Using several source videos (of approximately the same length), I need to generate an output video that is composed of all of the original sources each running in its own area (like a bunch of PIPs in several different sizes). So, the end result is that all the original are running side-by-side, each in its own area/box. The source and output need to be flv and the platform I am using is Windows (dev on Windows 7 64bit, deployment to