techker Posted May 2, 2010 Share Posted May 2, 2010 hey guys i want to make a litle script for my boddy's web site to upload video .that part is good but i have a quick question on posting the vids.. with pictures you usally do echo img... if i store the path of the vid in my database and echo just the path will the video show? and when you upload on youtube does it convert it to flv? Quote Link to comment Share on other sites More sharing options...
Quoth Posted May 5, 2010 Share Posted May 5, 2010 no, you can't use the path in quite that way, you will have to embed an object. You may need to change the video format too. Check out this link for a basic understanding of what you need to do: http://www.w3schools.com/media/media_browservideos.asp Quote Link to comment Share on other sites More sharing options...
techker Posted May 5, 2010 Author Share Posted May 5, 2010 hmm ok i get it.. so what if my link starts with <embed src="<? echo info['link'] ?>" /> Quote Link to comment Share on other sites More sharing options...
Quoth Posted May 5, 2010 Share Posted May 5, 2010 in a way... the embed tag is depreciated, so you will have to use the object tag, and that has a few more parameters that you will need to specify. read through all the information on w3schools to get a better understanding of the object tag, and make sure the video is in a format that will be accepted by the object tag: http://www.w3schools.com/media/media_object.asp Quote Link to comment Share on other sites More sharing options...
techker Posted May 5, 2010 Author Share Posted May 5, 2010 wow i need to read up more on object tag's..it can really simplify lots of work! <object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"> <param name="FileName" value="3d.wmv" /> </object> need to read up on were does the class id come from..lol thx Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.