Affiliate Marketing
Forum Search

Reply
 
LinkBack Thread Tools Display Modes

  #1 (permalink)  
Old 11-09-06
Registered User
 
Join Date: Apr 2004
Location: UK
Posts: 400
Thanks: 3
Thanked 1 Time in 1 Post
Matt Seigneur is an unknown quantity at this point
  Stream Video like google video etc?

does anyone know of any software/coding so i can upload flash (.swf) files or mpeg/avi files to stream on my site?

cheers
Matt
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 11-09-06
Registered User
 
Join Date: Apr 2004
Location: Leeds
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
sweeting is an unknown quantity at this point
  Video Streaming

You could upload them to YouTube etc (providing you're not wanting to sell the content) then embed the player in your pages...

Paul.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 11-09-06
adrian's Avatar
Registered User
 
Join Date: Mar 2006
Location: Small village in the West of Ireland
Posts: 386
Thanks: 12
Thanked 2 Times in 2 Posts
adrian is an unknown quantity at this point
Hi Matt,

Not sure if this will answer your question but came across this free flash player today.

http://www.jeroenwijering.com/?item=Flash_Video_Player

There's also a tutorial about compressing video for use in flash. Havn't used it myself but looking to when I get a chance.

Adrian
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 11-09-06
Registered User
 
Join Date: Apr 2004
Location: UK
Posts: 400
Thanks: 3
Thanked 1 Time in 1 Post
Matt Seigneur is an unknown quantity at this point
Quote:
Originally Posted by adsw
Hi Matt,

Not sure if this will answer your question but came across this free flash player today.

http://www.jeroenwijering.com/?item=Flash_Video_Player

There's also a tutorial about compressing video for use in flash. Havn't used it myself but looking to when I get a chance.

Adrian
Looks good Thanks,

now, for converting files from mpg or avi or .mov to flash, how do i do this?

cheers
matt
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #5 (permalink)  
Old 11-09-06
adrian's Avatar
Registered User
 
Join Date: Mar 2006
Location: Small village in the West of Ireland
Posts: 386
Thanks: 12
Thanked 2 Times in 2 Posts
adrian is an unknown quantity at this point
Quote:
now, for converting files from mpg or avi or .mov to flash, how do i do this?
Riva FLV Encoder is mentioned in that tutorial. Again havn't used it so don't know how good it is.

http://www.rivavx.com/?encoder

Adrian
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 12-09-06
Registered User
 
Join Date: Apr 2004
Location: UK
Posts: 400
Thanks: 3
Thanked 1 Time in 1 Post
Matt Seigneur is an unknown quantity at this point
thanks chaps managed to knock up a site in word press and use the flv player streaming video
some visitors are having trouble viewing the videos though? the black screen comes up but nothing plays even when you click on play etc... any ideas what could be wrong?
it's http://www.japmetal.co.uk/?page_id=11

Cheers
matt
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 13-09-06
accelerator's Avatar
Online shopping rocks!
 
Join Date: Nov 2004
Location: England
Posts: 1,314
Thanks: 8
Thanked 29 Times in 26 Posts
accelerator is an unknown quantity at this point
Your original code:

<div class="flvPlayer"><object type="application/x-shockwave-flash" width="400" height="300" data="http://www.japmetal.co.uk/media/flvplayer.swf?file=http://www.japmetal.co.uk/media/37.33.flv&amp;autoStart=false;"></p>
<param name="movie" value="http://www.japmetal.co.uk/media/flvplayer.swf?file=http://www.japmetal.co.uk/media/shootout37.33.flv&amp;autoStart=false;" /></object></div>

Yes, it doesn't work for me, it may be related to the fact that on the end of your data= value you have &amp;autoStart=false; I suggest you knock that off the data statement, and if you want to disable autoStart put it in its own parameter statement, i.e.

<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.japmetal.co.uk/media/flvplayer.swf?file=http://www.japmetal.co.uk/media/37.33.flv" autoStart="false">

It's the data statement that looks to be the problem, you could also try putting a direct reference to the flash file instead, see also:

http://ventstation.blogspot.com/2006...avascript.html

Rgds
__________________
WebRef.eu - Web Development Resources for the Online Entrepreneur
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #8 (permalink)  
Old 13-09-06
accelerator's Avatar
Online shopping rocks!
 
Join Date: Nov 2004
Location: England
Posts: 1,314
Thanks: 8
Thanked 29 Times in 26 Posts
accelerator is an unknown quantity at this point
Hmm ... another one on a different page does work for me:

<div class="flvPlayer"><object type="application/x-shockwave-flash" width="400" height="300" data="http://www.japmetal.co.uk/media/flvplayer.swf?file=http://www.japmetal.co.uk/media/bream1-sml.flv&amp;autoStart=false;"></p>
<param name="movie" value="http://www.japmetal.co.uk/media/flvplayer.swf?file=http://www.japmetal.co.uk/media/bream1-sml.flv&amp;autoStart=false;" /></object></div>

so I guess its not the autoStart that's the problem. One suggestion I have is the one that is not working uses a full stop in the file name, i.e. shootout37.33.flv, maybe try renaming the file so it doesn't have the full stop in, as that could possibly be interfering.

Rgds
__________________
WebRef.eu - Web Development Resources for the Online Entrepreneur
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 13-09-06
Registered User
 
Join Date: Apr 2004
Location: UK
Posts: 400
Thanks: 3
Thanked 1 Time in 1 Post
Matt Seigneur is an unknown quantity at this point
thanks very much accelerator, much appreciated
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 14-09-06
Registered User
 
Join Date: Apr 2004
Location: UK
Posts: 400
Thanks: 3
Thanked 1 Time in 1 Post
Matt Seigneur is an unknown quantity at this point
its working on my end fine, before editing and after, how about you?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
BigDaddy Means Big Changes at Google 3wdl The Affiliate Marketing Lounge 4 27-01-06 02:05 PM
Fonetastic mobile sales (none) Leeky