Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 





Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read

Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
Thread Tools
Old 12-22-2005, 09:16 PM   #1 (permalink)
Registered User
 
Join Date: Mar 2005
Posts: 100
OS: XP


Streaming Videos

I think this is the right forum. Anyways, I have a website and we host videos that I make, I was wondering how you make streaming videos. I have large files sometimes, and I want the viewer to be able to watch the movie as it downloads. Can you tell me how? And if not, can you point me in the right direction?
Thanks!
untalented893 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-22-2005, 11:07 PM   #2 (permalink)
Manager, Alternative Comp
 
Skie's Avatar
 
Join Date: Mar 2003
Location: Downers Grove, IL
Posts: 1,821
OS: Gentoo Linux, Redhat Enterprise Linux, CentOS

My System

I'm pretty sure that this is the wrong forum for it, but I'm not sure where exactly to move your thread. I think this is more of an HTML issue then anything else. All you really need to do is upload your videos, then use the proper "embed" tag. If you locate a site that has streaming video, you can view the HTML for the page and search for embed.
__________________
Skie is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-23-2005, 02:42 AM   #3 (permalink)
Professor/Moderator, TSF Design School
 
Grove's Avatar
 
Join Date: Jun 2005
Location: Australia
Posts: 2,382
OS: Windows XP SP2


I have moved your thread to the Client Side Languages forum as its more appropriate there. Yes Skie the embed tag is involved but let me teach you something

This is a bit more difficult but very rewarding. First of all let's begin by saying when adding video to a site some video's won't display depending on the user's browser.

Also, take into consideration that people have a lot more problems with compatibility and debugging and other issues if the video is not in a link. If it simply pops up on the page, it is terrible for some users and your overall goal at the end of the day is to get as many as possible to view your site.

That being said ... let's begin:

Quote:
<img dynsrc="file.avi"
width=200 height=200
start="fileopen" loop="infinite"
alt="Only IE users can view this video.">
In the above only users with IE can view this video through this code. The code is not too well done and I personally and a lot of other experts suggest that adding it as a plugin is a lot better.

**NOTE** When you add it as a plugin, strangely enough it will not play avi's. So if you have an .avi file the above code is the winner.

This is if you have a different format for a video such a .mov (QuickTime):

Quote:
<embed src="file.mov"
pluginspage="http://quicktime.apple.com/"
width=200 height=200
loop="true" controller="true" autoplay="false"
alt="file.mov. You need the QuickTime plugin for the video to play.">
</embed>
The above is a version of the plugin embed. I suggest using this one if you don't have an avi. Well that somes it up pretty well.

If you need anymore explaining or futher detail of how to proceed with the above code untalented, please feel free to ask. I will be more than happy to help.

Merry Christmas and a Happy New Year !!
__________________
==========================================

Get Help:
TSF Security Forum | HijackThis | MB's 5 Step Process
Get Clean:
AdAware SE | Spybot S&D | CWShredder | Ewido | CleanUp!
Get Protected:
SpywareBlaster | SpywareGuard | Windows Updates | IE-SpyAd


If TSF has helped you, please consider making a donation to help keep the board running.
Grove is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-23-2005, 09:12 AM   #4 (permalink)
Registered User
 
Join Date: Mar 2005
Posts: 100
OS: XP


If I have a .wmv file, and I want more than just IE users to see it, should I use the second one?
untalented893 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-23-2005, 05:17 PM   #5 (permalink)
Registered User
 
Join Date: Mar 2005
Posts: 100
OS: XP


nevermind, I got it. But I think this needs to be changed: "pluginspage="http://quicktime.apple.com/"" What should it change to for windows media?
untalented893 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-23-2005, 05:29 PM   #6 (permalink)
Cymru am byth
 
DumberDrummer's Avatar
 
Join Date: Oct 2003
Location: Oregon
Posts: 5,377
OS: Windows XP Pro SP2

My System

Send a message via AIM to DumberDrummer Send a message via Yahoo to DumberDrummer
You need to change it for the download page for the windows media plugin.

I'm looking for the exact site, but I'm not sure what it is....
__________________

Living with Louie dog's the only way to stay sane
_____________________________________________

... and with those words so begins my lifetime of longing for the devil's warm embrace
DumberDrummer is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-23-2005, 09:38 PM   #7 (permalink)
Registered User
 
Join Date: Mar 2005
Posts: 100
OS: XP


Yea, I can't seem to find it either
untalented893 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-23-2005, 11:59 PM   #8 (permalink)
Registered User
 
Join Date: Mar 2005
Posts: 100
OS: XP


Correct me if I'm wrong, but I beleive this is it: http://www.microsoft.com/Windows/MediaPlayer/
untalented893 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-24-2005, 12:36 AM   #9 (permalink)
Cymru am byth
 
DumberDrummer's Avatar
 
Join Date: Oct 2003
Location: Oregon
Posts: 5,377
OS: Windows XP Pro SP2

My System

Send a message via AIM to DumberDrummer Send a message via Yahoo to DumberDrummer
I don't think you need it. Most streaming video sites that I've seen so far that use the embed tag don't have that attribute.

You may be just fine leaving it off.
__________________

Living with Louie dog's the only way to stay sane
_____________________________________________

... and with those words so begins my lifetime of longing for the devil's warm embrace
DumberDrummer is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-24-2005, 09:16 AM   #10 (permalink)
Registered User
 
Join Date: Mar 2005
Posts: 100
OS: XP


Yea, thanks and have a happy holiday!
untalented893 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Old 12-24-2005, 06:49 PM   #11 (permalink)
Professor/Moderator, TSF Design School
 
Grove's Avatar
 
Join Date: Jun 2005
Location: Australia
Posts: 2,382
OS: Windows XP SP2


You can leave it. 90% of the time the browser will auto-detect and download the necessary plugin.

Merry Christmas !!
__________________
==========================================

Get Help:
TSF Security Forum | HijackThis | MB's 5 Step Process
Get Clean:
AdAware SE | Spybot S&D | CWShredder | Ewido | CleanUp!
Get Protected:
SpywareBlaster | SpywareGuard | Windows Updates | IE-SpyAd


If TSF has helped you, please consider making a donation to help keep the board running.
Grove is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Bookmark on Thread SoupReddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -7. The time now is 05:17 PM.



Copyright 2001 - 2008, Tech Support Forum

Search Engine Friendly URLs by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82