Connecting Tech Pros Worldwide Help | Site Map

Linking to Video File?

  #1  
Old April 12th, 2007, 10:05 PM
Jim Ford
Guest
 
Posts: n/a
This is more strictly an HTML problem, but as I'm also using PHP and the
HTML groups seem to be infested with spam, I'm posting it here!

At the school where I work I've got an online searchable database of
video tapes and dvds, using MySql and PHP on a Linux machine. It works
fine. I'm trancoding some of the tapes to avi files, which can be
accessed as a samba share. I'd like to put clickable links into the
database, so if a user sees the file is coloured blue, they can click it
and it plays. I've got it working, but:

Using a 'href' link in HTML code of the PHP powered web page, the file
is downloaded at the user end completely before it starts playing, which
results in an unacceptably long delay. But if a user accesses the file
directly using the samba share directory, the video starts almost
immediately and 'streams'.

How can I embed into my PHP powered web page a link that uses samba file
sharing, so it streams, please?

Jim Ford
  #2  
Old April 12th, 2007, 10:25 PM
Jerry Stuckle
Guest
 
Posts: n/a

re: Linking to Video File?


Jim Ford wrote:
Quote:
This is more strictly an HTML problem, but as I'm also using PHP and the
HTML groups seem to be infested with spam, I'm posting it here!
>
At the school where I work I've got an online searchable database of
video tapes and dvds, using MySql and PHP on a Linux machine. It works
fine. I'm trancoding some of the tapes to avi files, which can be
accessed as a samba share. I'd like to put clickable links into the
database, so if a user sees the file is coloured blue, they can click it
and it plays. I've got it working, but:
>
Using a 'href' link in HTML code of the PHP powered web page, the file
is downloaded at the user end completely before it starts playing, which
results in an unacceptably long delay. But if a user accesses the file
directly using the samba share directory, the video starts almost
immediately and 'streams'.
>
How can I embed into my PHP powered web page a link that uses samba file
sharing, so it streams, please?
>
Jim Ford
Jim,

You really need to ask this in an html group. You'll get better answers
there, spam or not.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
  #3  
Old April 13th, 2007, 09:25 AM
Tyno Gendo
Guest
 
Posts: n/a

re: Linking to Video File?


Jerry Stuckle wrote:
Quote:
Jim Ford wrote:
Quote:
>This is more strictly an HTML problem, but as I'm also using PHP and
>the HTML groups seem to be infested with spam, I'm posting it here!
>>
>At the school where I work I've got an online searchable database of
>video tapes and dvds, using MySql and PHP on a Linux machine. It works
>fine. I'm trancoding some of the tapes to avi files, which can be
>accessed as a samba share. I'd like to put clickable links into the
>database, so if a user sees the file is coloured blue, they can click
>it and it plays. I've got it working, but:
>>
>Using a 'href' link in HTML code of the PHP powered web page, the file
>is downloaded at the user end completely before it starts playing,
>which results in an unacceptably long delay. But if a user accesses
>the file directly using the samba share directory, the video starts
>almost immediately and 'streams'.
>>
>How can I embed into my PHP powered web page a link that uses samba
>file sharing, so it streams, please?
>>
>Jim Ford
>
Jim,
>
You really need to ask this in an html group. You'll get better answers
there, spam or not.
>
You don't want to be using an href. Try looking up OBJECT / EMBED tags
and embed the data in the web page inline. The OBJECT/EMBED parameters
will be different depending on what you're embedding.

Flash Video is quite popular (like on YouTube), if you decide to go that
route:

You can find free embeddable Flash video players on the web, have a look
at this tutorial if you decide to go the Flash Movie way:

http://granades.com/2006/09/14/how-t...ny-easy-steps/

There seems to be a nice link to a free Flash Video encoder which will
transform your AVI's here (we have full version of flash here so I
haven't used that but looks good):

http://www.rivavx.com/index.php?encoder&L=3
  #4  
Old April 13th, 2007, 09:35 AM
Jim Ford
Guest
 
Posts: n/a

re: Linking to Video File?


Tyno Gendo wrote:
Quote:
You don't want to be using an href. Try looking up OBJECT / EMBED tags
and embed the data in the web page inline. The OBJECT/EMBED parameters
will be different depending on what you're embedding.
Thanks a lot Tyno, I'll follow up what you suggest.

Thanks again for putting me on the right path!

Jim Ford
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Virtual Registry and File system? wally answers 4 July 6th, 2006 12:45 AM
Preventing direct linking picture and video files ? Petri answers 1 November 18th, 2005 09:57 AM
Trying to read EDID directly from the monitor. Taran answers 0 November 17th, 2005 05:46 PM
Mixed managed and unmanaged code - How to do it? Thorsten answers 3 November 17th, 2005 05:35 PM