473,788 Members | 2,721 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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?

Jul 23 '05 #1
6 7708
jo***********@y ahoo.com wrote:
I have a DVD CD.
A what?
* Is it possible to embed it within an html page?
You can include any data you like in an HTML document. The results may be
variable
* Does the user has to have windows media player or any other program
associated with it?
Of course. The user can't play a media file without a compatable player.
* How exactly do I use the <embed> tag?
You don't. Look up <object> at http://w3.org/TR/html4/
* Do I have to convert the original to another format?


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
Jul 23 '05 #2

<jo***********@ yahoo.com> wrote in message
news:11******** **************@ g14g2000cwa.goo glegroups.com.. .
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?


http://tinyurl.com/6xfg6

Enjoy.
Jul 23 '05 #3
"jo***********@ yahoo.com" wrote in
comp.infosystem s.www.authoring.html:
I have a DVD CD.
* Is it possible to embed it within an html page?


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/
Jul 23 '05 #4
jo***********@y ahoo.com wrote:
I have a DVD CD.
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.
* Is it possible to embed it within an html page?
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?
* Does the user has to have windows media player or any other program
associated with it?
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.
* How exactly do I use the <embed> tag?
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.
* Do I have to convert the original to another format?


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
Jul 23 '05 #5
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".

Jul 23 '05 #6
jo***********@y ahoo.com wrote:
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>


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
Jul 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
2135
by: Ken Ward | last post by:
Hi All, I'm a new boy to php and working on a web site with long sections of code that could be done as includes apart from one or two things changing. I've tested the following and it works, but what I really want to know is am I OK placing php code inside a html line like this, or could there be problems?
56
6974
by: alan b | last post by:
I copied it and tried to edit the movie.htm below in the <PARAM NAME=*** location of the file where the videoclip is on my hard drive. It is already recorded by Windows Media Player. My version is 9.0 although it is coded 5.0 in this htm file. Let me know if it is able to be fixed. *** denotes where it is edited to locate the path where the videoclip is.
4
1316
by: WindAndWaves | last post by:
Hi Gurus Here is another one - I am just soaking up all these new learnings! I have the following piece of html <IMG SRC="test.gif" WIDTH="320" HEIGHT="256" ALT="movie placeholder"> <BR> <A HREF="test.mov">Interiors</A> | <A HREF="althorpe1.mov">Interiors</A> |
3
13672
by: Ollie Riches | last post by:
How do I embed a *.flv file (Flash Video) into an aspx page similar to embedding windows media player active x control? Cheers Ollie Riches
0
9656
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10177
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10113
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8995
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7519
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4074
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2896
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.