POST VIDEO
-
- Joined: Sat Sep 18, 2004 6:48 pm
POST VIDEO
is it possible for me to post my video on a website using html script and if i can what the code how do you find out the videos source (its html addresss_)
- greenjinjo
- Joined: Thu Jul 03, 2003 9:06 am
- Location: I was awesome, you loved it.
- Contact:
Check out my deviantART!godix wrote:Free sausage. No conditions. No tricks. To the best of my ability I will give anyone a sausage on anything they ask for. I'm not kidding here, I'll do as many sausage as I can.
- greenjinjo
- Joined: Thu Jul 03, 2003 9:06 am
- Location: I was awesome, you loved it.
- Contact:
You could always go to View Source for a web page (I know IE and Firefox can do this, as can most browsers).
If you are familiar with HTML just find the location in the source file (the written out HTML code for the page). The video source will be found in the embed tag. The video file source should show up there.
Let me know if this helps you at all.
If you are familiar with HTML just find the location in the source file (the written out HTML code for the page). The video source will be found in the embed tag. The video file source should show up there.
Let me know if this helps you at all.
Check out my deviantART!godix wrote:Free sausage. No conditions. No tricks. To the best of my ability I will give anyone a sausage on anything they ask for. I'm not kidding here, I'll do as many sausage as I can.
- CerebralAssamite
- Joined: Sat Jun 12, 2004 9:56 am
- Location: You Mean You Care?
this code should help
<html>
<body>
<embed>insert filename here and its location on the webserver</embed>
</body>
</html>
the location would be example www.hello.com/videos/amvs/blah.wmv
hope this helps
<html>
<body>
<embed>insert filename here and its location on the webserver</embed>
</body>
</html>
the location would be example www.hello.com/videos/amvs/blah.wmv
hope this helps
-
- is
- Joined: Tue Jul 23, 2002 5:54 am
- Status: N͋̀͒̆ͣ͋ͤ̍ͮ͌ͭ̔̊͒ͧ̿
- Location: N????????????????
Holy shit on a stick! I didn't think ANYONE was still using that outdated tag.CerebralAssamite wrote:this code should help
<html>
<body>
<embed>insert filename here and its location on the webserver</embed>
</body>
</html>
the location would be example www.hello.com/videos/amvs/blah.wmv
hope this helps
Use this instead:
http://www.w3.org/TR/html401/struct/objects.html#h-13.3
It's the officially accepted way to embed objects into an HTML document, and is upwards compatible with XHTML 1.0/XHTML 1.1.
- CerebralAssamite
- Joined: Sat Jun 12, 2004 9:56 am
- Location: You Mean You Care?
- aznfs
- Joined: Fri Aug 23, 2002 11:22 pm
hey its old;; but nothing much beats old fasioned easy codetrythil wrote:Holy shit on a stick! I didn't think ANYONE was still using that outdated tag.CerebralAssamite wrote:this code should help
<html>
<body>
<embed>insert filename here and its location on the webserver</embed>
</body>
</html>
the location would be example www.hello.com/videos/amvs/blah.wmv
hope this helps

-
- is
- Joined: Tue Jul 23, 2002 5:54 am
- Status: N͋̀͒̆ͣ͋ͤ̍ͮ͌ͭ̔̊͒ͧ̿
- Location: N????????????????
People who want to adhere to standards and thus have a greater chance of having their content presented consistently on different rendering systems care. You don't, but from your thought process, it's apparent that you've never had to deal with that situation before.CerebralAssamite wrote:*shrugs* my way of thinking is "If it still works then who cares"
Correct code beats "old fashioned easy code".hey its old;; but nothing much beats old fasioned easy code