Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old July 24th, 2005, 12:46 AM
jonathanztaub@yahoo.com
Guest
 
Posts: n/a
Default Embedding a DVD movie to an HTML page

I have a DVD CD.
* Is it possible to embed it within an html page?
* Does the user has to have windows media player or any other program
associated
with it?
* How exactly do I use the <embed> tag?
* Do I have to convert the original to another format?

  #2  
Old July 24th, 2005, 12:47 AM
David Dorward
Guest
 
Posts: n/a
Default Re: Embedding a DVD movie to an HTML page

jonathanztaub@yahoo.com wrote:
[color=blue]
> I have a DVD CD.[/color]

A what?
[color=blue]
> * Is it possible to embed it within an html page?[/color]

You can include any data you like in an HTML document. The results may be
variable
[color=blue]
> * Does the user has to have windows media player or any other program
> associated with it?[/color]

Of course. The user can't play a media file without a compatable player.
[color=blue]
> * How exactly do I use the <embed> tag?[/color]

You don't. Look up <object> at http://w3.org/TR/html4/
[color=blue]
> * Do I have to convert the original to another format?[/color]

Given that "DVD CD" is an oxymoron ... it depends what the original format
actually is.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
  #3  
Old July 24th, 2005, 12:47 AM
Peter1968
Guest
 
Posts: n/a
Default Re: Embedding a DVD movie to an HTML page


<jonathanztaub@yahoo.com> wrote in message
news:1110517023.735823.259590@g14g2000cwa.googlegr oups.com...[color=blue]
> I have a DVD CD.
> * Is it possible to embed it within an html page?
> * Does the user has to have windows media player or any other program
> associated
> with it?
> * How exactly do I use the <embed> tag?
> * Do I have to convert the original to another format?[/color]

http://tinyurl.com/6xfg6

Enjoy.


  #4  
Old July 24th, 2005, 12:47 AM
Stan Brown
Guest
 
Posts: n/a
Default Re: Embedding a DVD movie to an HTML page

"jonathanztaub@yahoo.com" wrote in
comp.infosystems.www.authoring.html:[color=blue]
>I have a DVD CD.
>* Is it possible to embed it within an html page?[/color]

Do you own the movie? (Not the _DVD, the _movie_)

Virtually every movie is copyrighted, and legally you can't show it
publicly without getting permission.

--

Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
  #5  
Old July 24th, 2005, 12:48 AM
Lachlan Hunt
Guest
 
Posts: n/a
Default Re: Embedding a DVD movie to an HTML page

jonathanztaub@yahoo.com wrote:[color=blue]
> I have a DVD CD.[/color]

Which is it? A DVD or a CD? They are different media, though they have
the same physical size and appearance.

In short, a CD is the traditional single layer optical disk which stores
around 650 to 700MB of data, often used for music or software. A DVD is
a more recent invention that uses different technology with two writable
layers and which can store up to 9GB of data per side (approx 4.5GB for
the typical DVD±R/±RW/RAM versions) often used for movies and large data
storage.
[color=blue]
> * Is it possible to embed it within an html page?[/color]

Ignoring the copyright and other legal issues, and knowing what I just
told you above about the amount of storage capacity on DVDs, how long do
you think a user is going to wait around to download and watch an entire
movie via your website?
[color=blue]
> * Does the user has to have windows media player or any other program
> associated with it?[/color]

Not specifically Windows Media Player, but they do require some media
player software that the browser can either embed directly or launch as
an external application, and which can decode the movie file format.
[color=blue]
> * How exactly do I use the <embed> tag?[/color]

Firstly, it's an element, not a tag and secondly, you don't use embed,
use <object>.

<object type="video/mpeg" data="/path/to/movie"
width="320" height="180">
<p>Provide some useful alternate content here, perhaps including a link
to the movie itself that the user may use to download the movie.</p>
</object>

Note: Replace the type attribute value with the appropriate MIME type
for whatever video format you use.
[color=blue]
> * Do I have to convert the original to another format?[/color]

Yes, unless you can somehow magically deliver the physical disc for me
to insert into my own DVD player. Again, ignoring the legal issues
involved for now, you first need to rip the movie from the DVD. This
will usually result in some VOB files containing the movie in the DVD
file format (I think it makes use of MPEG-2 internally, IIRC). There
are then several other programs you will need to convert those files
into a useful video format like AVI or MPEG, compress it and reduce it
to a downloadable size.

There may even be programs that can perform all the necessary tasks for
you in a single automated process, though it's been a while since I
looked into it.

Keep in mind though, that the more you compress the file, the lower the
video quality would be. It is generally easier to spend $6 at a local
video rental store, than it is to download an entire low quality movie
from the web.

However, if you're really interested in illegal DVD piracy and the
distribution of ripped movies, there are some fairly good IRC channels
and FTP sites that specialise in such practices that you may wish to
look into instead.

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
  #6  
Old July 24th, 2005, 12:49 AM
jonathanztaub@yahoo.com
Guest
 
Posts: n/a
Default Re: Embedding a DVD movie to an HTML page

Thanks guys.

Yep, it was as easy as taking the .VOB and related files and putting an
<object> tag:

<object id="Player" width="400" height="400"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="URL" value="/videos/drill.wmv">
<param name="autoStart" value="true">
</object>

For some reason, I thought it would be "complex".

  #7  
Old July 24th, 2005, 12:49 AM
Lachlan Hunt
Guest
 
Posts: n/a
Default Re: Embedding a DVD movie to an HTML page

jonathanztaub@yahoo.com wrote:[color=blue]
> Thanks guys.
>
> Yep, it was as easy as taking the .VOB and related files and putting an
> <object> tag:
>
> <object id="Player" width="400" height="400"
> CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
> <param name="URL" value="/videos/drill.wmv">
> <param name="autoStart" value="true">
> </object>[/color]

Where's the type="video/x-ms-wmv" attribute and what's the classid for?
It looks like a value that's only good for windows systems, but then
WMV are a proprietary MS format anyway. You should be able to remove
the classid anyway, since the type attribute gives the browser all the
information it needs. Keep in mind though, that the type attribute
*should* match the Content-Type sent by the server, so you'll need to
check it's sending this in the HTTP headers:

Content-Type: video/x-ms-wmv

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
 

Bookmarks

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

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

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles