http://bknoproblem.com/ currently it's telling me... Content on this page requires a newer version of Adobe Flash Player. but when i do...it still says the same thing. should i convert this FLV file to something else? also.... <script src="Scripts/swfobject_modified.js" type="text/javascript"></script> <script src="Scripts/expressInstall.swf" type="text/javascript"></script> this is above the <body> tag...
Well I can't see the video to see what it looks like but I would use handbrake to convert it to mp4 and then use html5media to embed it - http://github.com/etianen/html5media Now it will play on all the browsers and iphone/ipad.
minusidea... i've done what you said...convert it using handbrake...from flv to mp4. then i grabbed the html5media code and now i can't see it...i can just hear it. the html5media folder is in the server also. can't figure out why it's not showing the video...do you know why?
You're probably not converting the video properly in Handbrake http://wiki.github.com/etianen/html5media/video-formats Make sure your video is in a standard video size and you click the enable for web options.
hmm not working...maybe i'm coding it wrong? <head> <script src="html5media/html5media.min.js"></script> </head> <video src="jamesHD.mp4" width="405" height="255" controls preload></video>
your video source should be a flv file , not a Mp4 file.... also if that don't work try ffmpeg to rewrapper them into an flv extention then they played perfectly. You might try: ffmpeg -i movie.mp4 -vcodec copy -i movie.mp3 -acodec copy movie.flv (change movie.mp3 to your audio format) Maybe this will work for you. FYI. some author mp4s with x264. This may make a difference.
Actually you're wrong - his video source file using the method I provided him should be a mp4 file he just needs to properly convert the flv file.
Your head section is correct - this is the code I used for the video <video class="video" poster="*.jpg" width="640" height="272" controls preload autobuffer autoplay> <source src="*.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'></source> </video>
i'm not quite following hatta...i'm new to video so i have no idea what all that means... ideally, i'd like to get it to play like this and i think this is a swf file... http://a.blip.tv/scripts/flash/stra...http%3A%2F%2Frasmussenlawfirm.com%2F&source=3
If you want to embed a .SWF use the code listed below: ----------------------------------------------------- If you need to make a .swf try this: http://dvdvideosoft.com/download/FreeVideoToFlashConverter.exe Pretty straight forward, select input file , name output: Hope that helps drew ... <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="320" HEIGHT="240" id="Yourfilename" ALIGN=""> <PARAM NAME=movie VALUE="Yourfilename.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#333399> <EMBED src="Yourfilename.swf" quality=high bgcolor=#333399 WIDTH="320" HEIGHT="240" NAME="Yourfilename" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT> Code (markup): Most of this you don't need to touch, so don't worry about making sense of that. The italicized section sets the codebase for the version of Flash used, to check against to see if your user has that version. The rest has taglines to download the Flash player (if the user doesn't have it) and the parameters that you would need to edit--mainly, the line labeled EMBED src="Yourfilename.swf". By default only the file name would be there, because Flash publishes the SWF and the HTML file in the same folder together with your FLA file. However, you may want to put your SWF files in a separate subfolder on your server, perhaps a folder labeled "flash"--in which instance you would edit the code to read EMBED src="flash/Yourfilename.swf". Trust me, it's much simpler than it sounds. Give it a try and find out for yourself.
yes, You can try to do your video again. and if your soruce video is flv, you can convert flv to swf for streaming on website. you can view the following html code: <object classid=â€clsid:d27cdb6e-ae6d-11cf-96b8-444553540000″ codebase=â€http://download.macromedia.com/pub/shockwave/ cabs/flash/swflash.cab#version=7,0,0,0″ width=â€400″ height=â€300″ id=â€flashvideoplayer.swf†align=â€middleâ€> <param name=â€allowScriptAccess†value=â€sameDomainâ€> <param name=â€movie†value=â€http://www.myhomepage.com/flashvideoplayer.swf? flv=http://www.myhomepage.com/myvideofile.flv“> <param name=â€quality†value=â€highâ€> <param name=â€bgcolor†value=â€#ffffffâ€> <embed src=â€http://www.myhomepage.com/flashvideoplayer.swf? flv=http://www.myhomepage.com/myvideofile.flv†quality=â€high†bgcolor=â€#ffffff†width=â€400″ height=â€300″ name=â€flashvideoplayer.swf†align=â€middle†allowScriptAccess=â€sameDomain†type=â€application/x-shockwave-flash†pluginspage=â€http://www.macromedia.com/go/getflashplayerâ€> </object> Code (markup): more info if you need, you can view this this step by step guide: http://www.flash-video-soft.com/blog/?p=200