473,725 Members | 2,173 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to play different types of audio-video files in the browser?

When the user chooses an AV file to play, based upon the type of file,
I want to use the default installed media player to play it.

I am wondering if this is a good way - any alternatives, suggestions or
improvements?

if( wmv file)
document.write( "<OBJECT id=Player
classid=CLSID:6 BF52A52-394A-11d3-B153-00C04F79FAA6 height="354"
width="479">
<PARAM NAME="autoStart " VALUE="true">
</OBJECT>
");

if( swf file)
document.write( "flash classid")

if(rm file)
document.write( "real audio classid")
Qs:
1) How to tell which players are installed on the system?
2) How to make reentrant ie. let user play flash now, then afterwards
in the same browser, play wmv etc.
3) Is it possible to minimise or make invisible the players that are
not being played?
4) what if a player is not installed - will the OBJECT tag fail
gracefully?

thanks,
Anil

Dec 25 '06 #1
13 4897

an*******@gmail .com wrote:
When the user chooses an AV file to play, based upon the type of file,
I want to use the default installed media player to play it.

I am wondering if this is a good way - any alternatives, suggestions or
improvements?

if( wmv file)
document.write( "<OBJECT id=Player
classid=CLSID:6 BF52A52-394A-11d3-B153-00C04F79FAA6 height="354"
width="479">
<PARAM NAME="autoStart " VALUE="true">
</OBJECT>
");
The above and the 2 objects below use an ActiveX classid and thus these
are all thus ActiveX objects. Thus they will not work on most non-IE
browsers as written. In many cases you can use an ordinary object for
both IE and other browsers and avoid invalid embed paths for other
browsers.
if( swf file)
document.write( "flash classid")

if(rm file)
document.write( "real audio classid")
Qs:
1) How to tell which players are installed on the system?
Complicated at best, and subject to change without notice on player
upgrades. Avoid when possible
2) How to make reentrant ie. let user play flash now, then afterwards
in the same browser, play wmv etc.
I will give you an example below.
3) Is it possible to minimise or make invisible the players that are
not being played?
Yes, an example follows below.
4) what if a player is not installed - will the OBJECT tag fail
gracefully?
Yes, if the code is properly written - no player = no display

See my page at http://www.cwdjr.info/temp/video_multiFormat2.php and be
sure to read the comments in the source. The page is written mainly to
stream for a high broadband connection. A connection that will not
support over 2Mbps will cause long buffering on some files. It is
possible to offer multiple bitrates for high broadband, low, broadband,
and dialup. See http://www.cwdjr.info/temp/video_multiBR3.php . for an
example of this. Notice that I am using playlist files such as .wax
(for WMP), .rpm for Real players etc. These can contain one or more
video url references to urls for files that WMP, Real, or other player
can play. The SMIL program is directed to the Real player, because Real
has builtin support for most of SMIL2. Some other players have very
limited SMIL support, so you don't want the SMIL file getting directed
to these. The .mov file required the most complex object, and here I
had to use both ActiveX and object paths as determined by Microsoft
conditional comments.

There is a recent complication for the WMP that everyone who embeds
videos using this player should be aware of. The new WMP11 can be
installed only on Windows XP(and likely Vista) OSs, but there are a
huge number of such OSs out there that may be viewing your videos. If
you embed a video and the width of the video called for in the object
is greater than the actual width for a .wmv file, the width is
stretched to the width called for in the code, but the height is not on
non-IE browsers including recent Opera, Firefox, Mozilla, Netscape, and
Seamonkey. However the image is normal viewed on an IE browser. If you
have a Windows XP OS, the new WMP11 installed, and script turned on,
you can see an example at
http://www.cwdjr.info/temp/video_multiFormat.php. It will view as
normal on IE and distorted on the mentioned non-IE browsers. Hopefully
Microsoft will correct this bug. Until then the way to avoid it is to
call for the same width in the object code as the actual width of the
..wmv or other video files played by the WMP11. If the actual width of
the video is not what you need for your page layout, then the video
should be re-encoded at the desired width. If you do not heed the above
and have a commercial site, your viewers of slim young ladies in swim
wear you wish to sell may stretch the ladies to the width of Henry VIII
for those using the WMP11 on a non-IE browser until,and if, Microsoft
fixes this bug.!

Dec 26 '06 #2
Hello cwdjrxyz,
Thank you for the pointers.
Reading through video_multiform at2 source,
I am having difficulty with the following:
<object data="http://www.cwdjr.net/ram/realmix.rpm"
type="audio/x-pn-realaudio-plugin" ....

The plugin is loaded from a remote url.
Is there any way to load the player that is installed on the local
desktop instead?
When disconnected from the internet, the user should still be able to
play the AV files.

thanks,
Anil
On Dec 25, 8:01 pm, "cwdjrxyz" <spamtr...@cwdj r.infowrote:
anil.r...@gmail .com wrote:
When the user chooses an AV file to play, based upon the type of file,
I want to use the default installed media player to play it.
I am wondering if this is a good way - any alternatives, suggestions or
improvements?
if( wmv file)
document.write( "<OBJECT id=Player
classid=CLSID:6 BF52A52-394A-11d3-B153-00C04F79FAA6 height="354"
width="479">
<PARAM NAME="autoStart " VALUE="true">
</OBJECT>
");The above and the 2 objects below use an ActiveX classid and thus these
are all thus ActiveX objects. Thus they will not work on most non-IE
browsers as written. In many cases you can use an ordinary object for
both IE and other browsers and avoid invalid embed paths for other
browsers.
if( swf file)
document.write( "flash classid")
if(rm file)
document.write( "real audio classid")
Qs:
1) How to tell which players are installed on the system?Complica ted at best, and subject to change without notice on player
upgrades. Avoid when possible
2) How to make reentrant ie. let user play flash now, then afterwards
in the same browser, play wmv etc.I will give you an example below.
3) Is it possible to minimise or make invisible the players that are
not being played?Yes, an example follows below.
4) what if a player is not installed - will the OBJECT tag fail
gracefully?Yes, if the code is properly written - no player = no display

See my page athttp://www.cwdjr.info/temp/video_multiForm at2.phpand be
sure to read the comments in the source. The page is written mainly to
stream for a high broadband connection. A connection that will not
support over 2Mbps will cause long buffering on some files. It is
possible to offer multiple bitrates for high broadband, low, broadband,
and dialup. Seehttp://www.cwdjr.info/temp/video_multiBR3. php. for an
example of this. Notice that I am using playlist files such as .wax
(for WMP), .rpm for Real players etc. These can contain one or more
video url references to urls for files that WMP, Real, or other player
can play. The SMIL program is directed to the Real player, because Real
has builtin support for most of SMIL2. Some other players have very
limited SMIL support, so you don't want the SMIL file getting directed
to these. The .mov file required the most complex object, and here I
had to use both ActiveX and object paths as determined by Microsoft
conditional comments.

There is a recent complication for the WMP that everyone who embeds
videos using this player should be aware of. The new WMP11 can be
installed only on Windows XP(and likely Vista) OSs, but there are a
huge number of such OSs out there that may be viewing your videos. If
you embed a video and the width of the video called for in the object
is greater than the actual width for a .wmv file, the width is
stretched to the width called for in the code, but the height is not on
non-IE browsers including recent Opera, Firefox, Mozilla, Netscape, and
Seamonkey. However the image is normal viewed on an IE browser. If you
have a Windows XP OS, the new WMP11 installed, and script turned on,
you can see an example athttp://www.cwdjr.info/temp/video_multiForm at.php. It will view as
normal on IE and distorted on the mentioned non-IE browsers. Hopefully
Microsoft will correct this bug. Until then the way to avoid it is to
call for the same width in the object code as the actual width of the
.wmv or other video files played by the WMP11. If the actual width of
the video is not what you need for your page layout, then the video
should be re-encoded at the desired width. If you do not heed the above
and have a commercial site, your viewers of slim young ladies in swim
wear you wish to sell may stretch the ladies to the width of Henry VIII
for those using the WMP11 on a non-IE browser until,and if, Microsoft
fixes this bug.!
Dec 26 '06 #3

an*******@gmail .com wrote:
Hello cwdjrxyz,
Thank you for the pointers.
Reading through video_multiform at2 source,
I am having difficulty with the following:
<object data="http://www.cwdjr.net/ram/realmix.rpm"
type="audio/x-pn-realaudio-plugin" ....

The plugin is loaded from a remote url.
Is there any way to load the player that is installed on the local
desktop instead?
When disconnected from the internet, the user should still be able to
play the AV files.
The rpm, with the mime type for it given, is just a standard type of
Real playlist file. It points to where the actual media file or files
are stored. This is just standard procedure, and ensures that the
actual media file gets sent to the real player. The Real developer site
has more details on Real than most people ever will wish to know,
including SMIL that Real will play if a SMIL file is directed to it.

The rpm file is:
http://www.cwdjr.net/ram/realmix.smil

In this case it points to the SMIL file at the given url.

If you want to play the smill file locally, you just feed the local
address on the computer where it is stored into the Real Player that
you have brought up. The SMIL2 file is a type of xml file, and in this
case is:

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
<head>
<layout>
<root-layout width="500" height="450" backgroundColor ="blue" />
<region id="video_regio n" backgroundColor ="blue" z-index="1" />
<regPoint id="middle" left="50%" top="50%" regAlign="cente r" />
<region id="brush_regio n_1" width="25%" height="50%" left="0" top="0"
z-index="2" />
<region id="brush_regio n_2" width="25%" height="50%" left="25%" top="0"
z-index="2" />
<region id="brush_regio n_3" width="25%" height="50%" left="50%" top="0"
z-index="2" />
<region id="brush_regio n_4" width="25%" height="50%" left="75%" top="0"
z-index="2" />
<region id="brush_regio n_5" width="25%" height="50%" left="0" top="50%"
z-index="2" />
<region id="brush_regio n_6" width="25%" height="50%" left="25%"
top="50%" z-index="2" />
<region id="brush_regio n_7" width="25%" height="50%" left="50%"
top="50%" z-index="2" />
<region id="brush_regio n_8" width="25%" height="50%" left="75%"
top="50%" z-index="2" />
</layout>
<transition id="fromBlue" type="spiralWip e" subtype="topLef tClockwise"
dur="5s" />
<transition id="fromStar" type="starWipe" subtype="fivePo int" dur="5s"
/>
<transition id="fromKeyhole " type="miscShape Wipe" subtype="keyhol e"
dur="5s" />
<transition id="fromHexagon " type="hexagonWi pe" subtype="vertic al"
dur="5s" />
<transition id="fromBarnZig Zag" type="barnZigZa gWipe"
subtype="vertic al" dur="10s" />
<transition id="fromFourBox " type="fourBoxWi pe" subtype="corner sIn"
dur="10s" />
<transition id="fromPinWhee l" type="pinWheelW ipe" subtype="fourBl ade"
dur="5s" />
<transition id="fromSnake" type="snakeWipe " subtype="topLef tHorizontal"
dur="10s" />
<transition id="toBlue" type="fade" subtype="fadeTo Color"
fadeColor="blue " dur="5s" />
<transition id="toRed" type="fade" subtype="fadeTo Color"
fadeColor="red" dur="5s" />
<transition id="toGreen" type="fade" subtype="fadeTo Color"
fadeColor="gree n" dur="5s" />
<transition id="toYellow" type="fade" subtype="fadeTo Color"
fadeColor="yell ow" dur="5s" />
</head>
<body>
<seq>
<img src="chttp://www.cwdjr.net/ram/roach.gif" id="image1"
region="video_r egion" dur="34s" width="256" height="256" left="0"
top="0" fill="hold" title="The SMIL Bug">
<animate targetElement=" image1" attributeName=" width" from="256"
to="128" begin="3s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" height" values="256;128 "
calcMode="linea r" begin="4s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" left" to="196"
begin="9s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" top" to="196"
begin="14s" dur="4s" fill="freeze" />
<animateMotio n targetElement=" image1" to="-128,-128" begin="19s"
dur="4s" fill="freeze" />
<set targetElement=" image1" attributeName=" left" to="64" begin="24s"
fill="freeze" />
<set targetElement=" image1" attributeName=" top" to="64" begin="24s"
fill="freeze" />
<animate targetElement=" image1" attributeName=" height" to="256"
begin="26s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" width" to="256"
begin="26s" dur="4s" fill="freeze" />
<animateMotio n targetElement=" image1" to="0,0" begin="30s" dur="4s"
fill="freeze" />
</img>
</seq>
<seq>
<par>
<audio
src="chttp://www.cwdjr.net/souopera/Tetrazzini_Caro Nome_1911.rmj"
title="Caro Nome RA" author="Tetrazz ini" />
<img src="chttp://www.cwdjr.net/picsnap/roscoe_foil2.jp g"
region="video_r egion" regPoint="middl e" transIn="fromBa rnZigZag"
transOut="toGre en" begin="2s" fill="remove" dur="240s" z-index="3" />
</par>
</seq>
<!-- remove comment tags from around below code to play midi. It is not
included here as Real may ask you to install the Crescendo plugin to
play the midi. -->
<!--
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/cancan.mid" title="Cancan mid" />
<img src="chttp://www.cwdjr.net/picani/dancer_blacktig hts.gif"
region="video_r egion" regPoint="middl e" transIn="fromSt ar"
transOut="toYel low" begin="2s" fill="remove" dur="120s" />
</par>
</seq>
-->
<seq>
<par>
<audio src="chttp://www.cwdjr.net/souearly/ColumbiaExposit ionMarch.wma"
title="Columbia Exposition March WMA" author="Sousa" />
<img src="chttp://www.cwdjr.net/picsnap/roscoe.jpg"
region="video_r egion" regPoint="middl e" transIn="fromFo urBox"
transOut="toYel low" begin="2s" fill="remove" dur="148s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/SidewalksOfNewY ork.mp3"
title="Sidewalk s Of New York MP3" />
<img src="chttp://www.cwdjr.net/pic3/burlesque_house 2.jpg"
region="video_r egion" regPoint="middl e" transIn="fromSn ake"
transOut="toRed " begin="2s" fill="remove" dur="95s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/ZarahLeander.ra m" title="Zarah
Leander RA" />
<img src="chttp://www.cwdjr.net/ram/aurora5f.jpg" region="video_r egion"
regPoint="middl e" transIn="fromSt ar" transOut="toBlu e" begin="2s"
fill="remove" dur="158s" />
</par>
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/eyeslicesmall.r am"
region="video_r egion" regPoint="middl e" title="eye slice - RM"
transIn="fromPi nWheel" transOut="toRed " begin="2s" fill="remove"
dur="70s" />
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/pianopullsmall. ram"
region="video_r egion" regPoint="middl e" title="piano pull - RM"
transIn="fromHe xagon" transOut="toRed " begin="2s" fill="remove"
dur="119s" />
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/Nosferatu.rmvb"
region="video_r egion" regPoint="middl e" title="Nosferat u - RM"
transIn="fromSt ar" transOut="toRed " begin="2s" fill="remove" dur="175s"
/>
</seq>
<seq>
<par>
<video src="chttp://www.cwdjr.net/ram/caligari.rmvb"
region="video_r egion" regPoint="middl e" title="Cabinet Of Dr Caligari -
RM" begin="4s" />
<brush color="teal" region="brush_r egion_1" begin="0s" end="7s" />
<brush color="fuchsia" region="brush_r egion_2" begin="0.5s" end="9s" />
<brush color="olive" region="brush_r egion_3" begin="1s" end="5s" />
<brush color="red" region="brush_r egion_4" begin="1.5s" end="11s" />
<brush color="purple" region="brush_r egion_5" begin="2s" end="12s" />
<brush color="blue" region="brush_r egion_6" begin="2.5s" end="8s" />
<brush color="maroon" region="brush_r egion_7" begin="3s" end="10s" />
<brush color="navy" region="brush_r egion_8" begin="3.5s" end="6s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/donkey.wav" title="donkey wav"
begin="7s" />
<img src="chttp://www.cwdjr.net/pic/horse_fanny3.jp g"
region="video_r egion" regPoint="middl e" transIn="fromBl ue"
transOut="toRed " begin="2s" fill="remove" dur="15s" />
</par>
</seq>
</body>
</smil>

Of course you would also have to point image files to where you store
these on the computer also if you want to be offline when you play the
media.

All of these media are designed for progressive download streaming on a
website. Of course you could store all of the media files in the same
directory as the SMIL file and use relative urls to make it more simple
to play offline. However, I did not care to duplicate a lot of long
media files that I already had stored at various locations on the
server.

Dec 26 '06 #4
Hello cwdjrxyz,
Ok, I realize I can generate the url dynamically using a
document.write( ).
But (important)
How will I control the player programmaticall y?
Can I control the media player - set/get position, stop, play, pause -
via
Javascript?
thanks,
Anil

On Dec 26, 5:13 pm, "cwdjrxyz" <spamtr...@cwdj r.infowrote:
anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Thank you for the pointers.
Reading through video_multiform at2 source,
I am having difficulty with the following:
<object data="http://www.cwdjr.net/ram/realmix.rpm"
type="audio/x-pn-realaudio-plugin" ....
The plugin is loaded from a remote url.
Is there any way to load the player that is installed on the local
desktop instead?
When disconnected from the internet, the user should still be able to
play the AV files.The rpm, with the mime type for it given, is just a standard type of
Real playlist file. It points to where the actual media file or files
are stored. This is just standard procedure, and ensures that the
actual media file gets sent to the real player. The Real developer site
has more details on Real than most people ever will wish to know,
including SMIL that Real will play if a SMIL file is directed to it.

The rpm file is:http://www.cwdjr.net/ram/realmix.smil

In this case it points to the SMIL file at the given url.

If you want to play the smill file locally, you just feed the local
address on the computer where it is stored into the Real Player that
you have brought up. The SMIL2 file is a type of xml file, and in this
case is:

<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
<head>
<layout>
<root-layout width="500" height="450" backgroundColor ="blue" />
<region id="video_regio n" backgroundColor ="blue" z-index="1" />
<regPoint id="middle" left="50%" top="50%" regAlign="cente r" />
<region id="brush_regio n_1" width="25%" height="50%" left="0" top="0"
z-index="2" />
<region id="brush_regio n_2" width="25%" height="50%" left="25%" top="0"
z-index="2" />
<region id="brush_regio n_3" width="25%" height="50%" left="50%" top="0"
z-index="2" />
<region id="brush_regio n_4" width="25%" height="50%" left="75%" top="0"
z-index="2" />
<region id="brush_regio n_5" width="25%" height="50%" left="0" top="50%"
z-index="2" />
<region id="brush_regio n_6" width="25%" height="50%" left="25%"
top="50%" z-index="2" />
<region id="brush_regio n_7" width="25%" height="50%" left="50%"
top="50%" z-index="2" />
<region id="brush_regio n_8" width="25%" height="50%" left="75%"
top="50%" z-index="2" />
</layout>
<transition id="fromBlue" type="spiralWip e" subtype="topLef tClockwise"
dur="5s" />
<transition id="fromStar" type="starWipe" subtype="fivePo int" dur="5s"
/>
<transition id="fromKeyhole " type="miscShape Wipe" subtype="keyhol e"
dur="5s" />
<transition id="fromHexagon " type="hexagonWi pe" subtype="vertic al"
dur="5s" />
<transition id="fromBarnZig Zag" type="barnZigZa gWipe"
subtype="vertic al" dur="10s" />
<transition id="fromFourBox " type="fourBoxWi pe" subtype="corner sIn"
dur="10s" />
<transition id="fromPinWhee l" type="pinWheelW ipe" subtype="fourBl ade"
dur="5s" />
<transition id="fromSnake" type="snakeWipe " subtype="topLef tHorizontal"
dur="10s" />
<transition id="toBlue" type="fade" subtype="fadeTo Color"
fadeColor="blue " dur="5s" />
<transition id="toRed" type="fade" subtype="fadeTo Color"
fadeColor="red" dur="5s" />
<transition id="toGreen" type="fade" subtype="fadeTo Color"
fadeColor="gree n" dur="5s" />
<transition id="toYellow" type="fade" subtype="fadeTo Color"
fadeColor="yell ow" dur="5s" />
</head>
<body>
<seq>
<img src="chttp://www.cwdjr.net/ram/roach.gif" id="image1"
region="video_r egion" dur="34s" width="256" height="256" left="0"
top="0" fill="hold" title="The SMIL Bug">
<animate targetElement=" image1" attributeName=" width" from="256"
to="128" begin="3s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" height" values="256;128 "
calcMode="linea r" begin="4s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" left" to="196"
begin="9s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" top" to="196"
begin="14s" dur="4s" fill="freeze" />
<animateMotio n targetElement=" image1" to="-128,-128" begin="19s"
dur="4s" fill="freeze" />
<set targetElement=" image1" attributeName=" left" to="64" begin="24s"
fill="freeze" />
<set targetElement=" image1" attributeName=" top" to="64" begin="24s"
fill="freeze" />
<animate targetElement=" image1" attributeName=" height" to="256"
begin="26s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" width" to="256"
begin="26s" dur="4s" fill="freeze" />
<animateMotio n targetElement=" image1" to="0,0" begin="30s" dur="4s"
fill="freeze" />
</img>
</seq>
<seq>
<par>
<audio
src="chttp://www.cwdjr.net/souopera/Tetrazzini_Caro Nome_1911.rmj"
title="Caro Nome RA" author="Tetrazz ini" />
<img src="chttp://www.cwdjr.net/picsnap/roscoe_foil2.jp g"
region="video_r egion" regPoint="middl e" transIn="fromBa rnZigZag"
transOut="toGre en" begin="2s" fill="remove" dur="240s" z-index="3" />
</par>
</seq>
<!-- remove comment tags from around below code to play midi. It is not
included here as Real may ask you to install the Crescendo plugin to
play the midi. -->
<!--
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/cancan.mid" title="Cancan mid" />
<img src="chttp://www.cwdjr.net/picani/dancer_blacktig hts.gif"
region="video_r egion" regPoint="middl e" transIn="fromSt ar"
transOut="toYel low" begin="2s" fill="remove" dur="120s" />
</par>
</seq>
-->
<seq>
<par>
<audio src="chttp://www.cwdjr.net/souearly/ColumbiaExposit ionMarch.wma"
title="Columbia Exposition March WMA" author="Sousa" />
<img src="chttp://www.cwdjr.net/picsnap/roscoe.jpg"
region="video_r egion" regPoint="middl e" transIn="fromFo urBox"
transOut="toYel low" begin="2s" fill="remove" dur="148s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/SidewalksOfNewY ork.mp3"
title="Sidewalk s Of New York MP3" />
<img src="chttp://www.cwdjr.net/pic3/burlesque_house 2.jpg"
region="video_r egion" regPoint="middl e" transIn="fromSn ake"
transOut="toRed " begin="2s" fill="remove" dur="95s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/ZarahLeander.ra m" title="Zarah
Leander RA" />
<img src="chttp://www.cwdjr.net/ram/aurora5f.jpg" region="video_r egion"
regPoint="middl e" transIn="fromSt ar" transOut="toBlu e" begin="2s"
fill="remove" dur="158s" />
</par>
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/eyeslicesmall.r am"
region="video_r egion" regPoint="middl e" title="eye slice - RM"
transIn="fromPi nWheel" transOut="toRed " begin="2s" fill="remove"
dur="70s" />
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/pianopullsmall. ram"
region="video_r egion" regPoint="middl e" title="piano pull - RM"
transIn="fromHe xagon" transOut="toRed " begin="2s" fill="remove"
dur="119s" />
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/Nosferatu.rmvb"
region="video_r egion" regPoint="middl e" title="Nosferat u - RM"
transIn="fromSt ar" transOut="toRed " begin="2s" fill="remove" dur="175s"
/>
</seq>
<seq>
<par>
<video src="chttp://www.cwdjr.net/ram/caligari.rmvb"
region="video_r egion" regPoint="middl e" title="Cabinet Of Dr Caligari -
RM" begin="4s" />
<brush color="teal" region="brush_r egion_1" begin="0s" end="7s" />
<brush color="fuchsia" region="brush_r egion_2" begin="0.5s" end="9s" />
<brush color="olive" region="brush_r egion_3" begin="1s" end="5s" />
<brush color="red" region="brush_r egion_4" begin="1.5s" end="11s" />
<brush color="purple" region="brush_r egion_5" begin="2s" end="12s" />
<brush color="blue" region="brush_r egion_6" begin="2.5s" end="8s" />
<brush color="maroon" region="brush_r egion_7" begin="3s" end="10s" />
<brush color="navy" region="brush_r egion_8" begin="3.5s" end="6s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/donkey.wav" title="donkey wav"
begin="7s" />
<img src="chttp://www.cwdjr.net/pic/horse_fanny3.jp g"
region="video_r egion" regPoint="middl e" transIn="fromBl ue"
transOut="toRed " begin="2s" fill="remove" dur="15s" />
</par>
</seq>
</body>
</smil>

Of course you would also have to point image files to where you store
these on the computer also if you want to be offline when you play the
media.

All of these media are designed for progressive download streaming on a
website. Of course you could store all of the media files in the same
directory as the SMIL file and use relative urls to make it more simple
to play offline. However, I did not care to duplicate a lot of long
media files that I already had stored at various locations on the
server.
Dec 27 '06 #5

forgot to add - also on non-IE or non-Windows platforms.
-
Anil

On Dec 27, 7:44 am, anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Ok, I realize I can generate the url dynamically using a
document.write( ).
But (important)
How will I control the player programmaticall y?
Can I control the media player - set/get position, stop, play, pause -
via
Javascript?
thanks,
Anil

On Dec 26, 5:13 pm, "cwdjrxyz" <spamtr...@cwdj r.infowrote:
anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Thank you for the pointers.
Reading through video_multiform at2 source,
I am having difficulty with the following:
<object data="http://www.cwdjr.net/ram/realmix.rpm"
type="audio/x-pn-realaudio-plugin" ....
The plugin is loaded from a remote url.
Is there any way to load the player that is installed on the local
desktop instead?
When disconnected from the internet, the user should still be able to
play the AV files.The rpm, with the mime type for it given, is just a standard type of
Real playlist file. It points to where the actual media file or files
are stored. This is just standard procedure, and ensures that the
actual media file gets sent to the real player. The Real developer site
has more details on Real than most people ever will wish to know,
including SMIL that Real will play if a SMIL file is directed to it.
The rpm file is:http://www.cwdjr.net/ram/realmix.smil
In this case it points to the SMIL file at the given url.
If you want to play the smill file locally, you just feed the local
address on the computer where it is stored into the Real Player that
you have brought up. The SMIL2 file is a type of xml file, and in this
case is:
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
<head>
<layout>
<root-layout width="500" height="450" backgroundColor ="blue" />
<region id="video_regio n" backgroundColor ="blue" z-index="1" />
<regPoint id="middle" left="50%" top="50%" regAlign="cente r" />
<region id="brush_regio n_1" width="25%" height="50%" left="0" top="0"
z-index="2" />
<region id="brush_regio n_2" width="25%" height="50%" left="25%" top="0"
z-index="2" />
<region id="brush_regio n_3" width="25%" height="50%" left="50%" top="0"
z-index="2" />
<region id="brush_regio n_4" width="25%" height="50%" left="75%" top="0"
z-index="2" />
<region id="brush_regio n_5" width="25%" height="50%" left="0" top="50%"
z-index="2" />
<region id="brush_regio n_6" width="25%" height="50%" left="25%"
top="50%" z-index="2" />
<region id="brush_regio n_7" width="25%" height="50%" left="50%"
top="50%" z-index="2" />
<region id="brush_regio n_8" width="25%" height="50%" left="75%"
top="50%" z-index="2" />
</layout>
<transition id="fromBlue" type="spiralWip e" subtype="topLef tClockwise"
dur="5s" />
<transition id="fromStar" type="starWipe" subtype="fivePo int" dur="5s"
/>
<transition id="fromKeyhole " type="miscShape Wipe" subtype="keyhol e"
dur="5s" />
<transition id="fromHexagon " type="hexagonWi pe" subtype="vertic al"
dur="5s" />
<transition id="fromBarnZig Zag" type="barnZigZa gWipe"
subtype="vertic al" dur="10s" />
<transition id="fromFourBox " type="fourBoxWi pe" subtype="corner sIn"
dur="10s" />
<transition id="fromPinWhee l" type="pinWheelW ipe" subtype="fourBl ade"
dur="5s" />
<transition id="fromSnake" type="snakeWipe " subtype="topLef tHorizontal"
dur="10s" />
<transition id="toBlue" type="fade" subtype="fadeTo Color"
fadeColor="blue " dur="5s" />
<transition id="toRed" type="fade" subtype="fadeTo Color"
fadeColor="red" dur="5s" />
<transition id="toGreen" type="fade" subtype="fadeTo Color"
fadeColor="gree n" dur="5s" />
<transition id="toYellow" type="fade" subtype="fadeTo Color"
fadeColor="yell ow" dur="5s" />
</head>
<body>
<seq>
<img src="chttp://www.cwdjr.net/ram/roach.gif" id="image1"
region="video_r egion" dur="34s" width="256" height="256" left="0"
top="0" fill="hold" title="The SMIL Bug">
<animate targetElement=" image1" attributeName=" width" from="256"
to="128" begin="3s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" height" values="256;128 "
calcMode="linea r" begin="4s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" left" to="196"
begin="9s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" top" to="196"
begin="14s" dur="4s" fill="freeze" />
<animateMotio n targetElement=" image1" to="-128,-128" begin="19s"
dur="4s" fill="freeze" />
<set targetElement=" image1" attributeName=" left" to="64" begin="24s"
fill="freeze" />
<set targetElement=" image1" attributeName=" top" to="64" begin="24s"
fill="freeze" />
<animate targetElement=" image1" attributeName=" height" to="256"
begin="26s" dur="4s" fill="freeze" />
<animate targetElement=" image1" attributeName=" width" to="256"
begin="26s" dur="4s" fill="freeze" />
<animateMotio n targetElement=" image1" to="0,0" begin="30s" dur="4s"
fill="freeze" />
</img>
</seq>
<seq>
<par>
<audio
src="chttp://www.cwdjr.net/souopera/Tetrazzini_Caro Nome_1911.rmj"
title="Caro Nome RA" author="Tetrazz ini" />
<img src="chttp://www.cwdjr.net/picsnap/roscoe_foil2.jp g"
region="video_r egion" regPoint="middl e" transIn="fromBa rnZigZag"
transOut="toGre en" begin="2s" fill="remove" dur="240s" z-index="3" />
</par>
</seq>
<!-- remove comment tags from around below code to play midi. It is not
included here as Real may ask you to install the Crescendo plugin to
play the midi. -->
<!--
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/cancan.mid" title="Cancan mid" />
<img src="chttp://www.cwdjr.net/picani/dancer_blacktig hts.gif"
region="video_r egion" regPoint="middl e" transIn="fromSt ar"
transOut="toYel low" begin="2s" fill="remove" dur="120s" />
</par>
</seq>
-->
<seq>
<par>
<audio src="chttp://www.cwdjr.net/souearly/ColumbiaExposit ionMarch.wma"
title="Columbia Exposition March WMA" author="Sousa" />
<img src="chttp://www.cwdjr.net/picsnap/roscoe.jpg"
region="video_r egion" regPoint="middl e" transIn="fromFo urBox"
transOut="toYel low" begin="2s" fill="remove" dur="148s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/SidewalksOfNewY ork.mp3"
title="Sidewalk s Of New York MP3" />
<img src="chttp://www.cwdjr.net/pic3/burlesque_house 2.jpg"
region="video_r egion" regPoint="middl e" transIn="fromSn ake"
transOut="toRed " begin="2s" fill="remove" dur="95s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/ZarahLeander.ra m" title="Zarah
Leander RA" />
<img src="chttp://www.cwdjr.net/ram/aurora5f.jpg" region="video_r egion"
regPoint="middl e" transIn="fromSt ar" transOut="toBlu e" begin="2s"
fill="remove" dur="158s" />
</par>
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/eyeslicesmall.r am"
region="video_r egion" regPoint="middl e" title="eye slice - RM"
transIn="fromPi nWheel" transOut="toRed " begin="2s" fill="remove"
dur="70s" />
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/pianopullsmall. ram"
region="video_r egion" regPoint="middl e" title="piano pull - RM"
transIn="fromHe xagon" transOut="toRed " begin="2s" fill="remove"
dur="119s" />
</seq>
<seq>
<video src="chttp://www.cwdjr.net/ram/Nosferatu.rmvb"
region="video_r egion" regPoint="middl e" title="Nosferat u - RM"
transIn="fromSt ar" transOut="toRed " begin="2s" fill="remove" dur="175s"
/>
</seq>
<seq>
<par>
<video src="chttp://www.cwdjr.net/ram/caligari.rmvb"
region="video_r egion" regPoint="middl e" title="Cabinet Of Dr Caligari -
RM" begin="4s" />
<brush color="teal" region="brush_r egion_1" begin="0s" end="7s" />
<brush color="fuchsia" region="brush_r egion_2" begin="0.5s" end="9s" />
<brush color="olive" region="brush_r egion_3" begin="1s" end="5s" />
<brush color="red" region="brush_r egion_4" begin="1.5s" end="11s" />
<brush color="purple" region="brush_r egion_5" begin="2s" end="12s" />
<brush color="blue" region="brush_r egion_6" begin="2.5s" end="8s" />
<brush color="maroon" region="brush_r egion_7" begin="3s" end="10s" />
<brush color="navy" region="brush_r egion_8" begin="3.5s" end="6s" />
</par>
</seq>
<seq>
<par>
<audio src="chttp://www.cwdjr.net/ram/donkey.wav" title="donkey wav"
begin="7s" />
<img src="chttp://www.cwdjr.net/pic/horse_fanny3.jp g"
region="video_r egion" regPoint="middl e" transIn="fromBl ue"
transOut="toRed " begin="2s" fill="remove" dur="15s" />
</par>
</seq>
</body>
</smil>
Of course you would also have to point image files to where you store
these on the computer also if you want to be offline when you play the
media.
All of these media are designed for progressive download streaming on a
website. Of course you could store all of the media files in the same
directory as the SMIL file and use relative urls to make it more simple
to play offline. However, I did not care to duplicate a lot of long
media files that I already had stored at various locations on the
server.- Hide quoted text -- Show quoted text -
Dec 27 '06 #6

an*******@gmail .com wrote:
Hello cwdjrxyz,
Ok, I realize I can generate the url dynamically using a
document.write( ).
But (important)
How will I control the player programmaticall y?
Can I control the media player - set/get position, stop, play, pause -
via
Javascript?
If you remain only on IE browsers with ActiveX on, Microsoft has some
information on their developer site for controlling the WMP directly
using scripts. They may use Jscript and sometimes VB script(which does
not work on many other browsers). Microsoft does an extremely poor job
of showing how to use their player in general, and scripting to control
it, for non-IE browsers, and they use such outlandish things as an
embed tag that is not, and never has been, an official W3C tag. A few
years ago I used some Microsoft scripts to detect the presence and
version of the WMP. This failed without warning on the upgrade to the
WMP10. I had to change many web pages. Since then I avoid Microsoft
scripts for controlling their player like the plague. I see no need to
do so. I do not think media should usually be autostarted - that annoys
many people. If you use the player object that I use, it generates the
payer control panel with controls to stop, start, pause, etc. If you
are determined to have the player autostart on audio and play until
finished without user control, you can reduce the player size to about
1 x 1 pixel so that it does not show and set the autostart parameter to
1 instead of 0 to autostart. Then if you are using a mixture of WMP,
Real, QT, etc players, the Microsoft player scripting is not going to
control these except in a few special cases when one has added an
ActiveX plugin for the WMP to a Mozilla family browser. Netscape at one
time had a script, that was huge, to detect if the ActiveX plugin was
added to their browser, and to control playing on the Netscape browser.
Unfortunately it is extremely difficult to detect what browser you have
using script, and subject to failure at any time, because many browsers
can report themselves as other browsers when you use script detection.
This is done to prevent being locked out of a page because the
developer of the page only considers IE ,and perhaps Netscape, and
locks out everything else when the Browser such as Opera or Firefox may
indeed be able to handle the page with few or no problems.

Dec 27 '06 #7

Hello,
I am controlling the default media player from an application - not
directly by the user. Think of it as an application for user training.
thanks,
Anil

On Dec 27, 11:11 am, "cwdjrxyz" <spamtr...@cwdj r.infowrote:
anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Ok, I realize I can generate the url dynamically using a
document.write( ).
But (important)
How will I control the player programmaticall y?
Can I control the media player - set/get position, stop, play, pause -
via
Javascript?If you remain only on IE browsers with ActiveX on, Microsoft has some
information on their developer site for controlling the WMP directly
using scripts. They may use Jscript and sometimes VB script(which does
not work on many other browsers). Microsoft does an extremely poor job
of showing how to use their player in general, and scripting to control
it, for non-IE browsers, and they use such outlandish things as an
embed tag that is not, and never has been, an official W3C tag. A few
years ago I used some Microsoft scripts to detect the presence and
version of the WMP. This failed without warning on the upgrade to the
WMP10. I had to change many web pages. Since then I avoid Microsoft
scripts for controlling their player like the plague. I see no need to
do so. I do not think media should usually be autostarted - that annoys
many people. If you use the player object that I use, it generates the
payer control panel with controls to stop, start, pause, etc. If you
are determined to have the player autostart on audio and play until
finished without user control, you can reduce the player size to about
1 x 1 pixel so that it does not show and set the autostart parameter to
1 instead of 0 to autostart. Then if you are using a mixture of WMP,
Real, QT, etc players, the Microsoft player scripting is not going to
control these except in a few special cases when one has added an
ActiveX plugin for the WMP to a Mozilla family browser. Netscape at one
time had a script, that was huge, to detect if the ActiveX plugin was
added to their browser, and to control playing on the Netscape browser.
Unfortunately it is extremely difficult to detect what browser you have
using script, and subject to failure at any time, because many browsers
can report themselves as other browsers when you use script detection.
This is done to prevent being locked out of a page because the
developer of the page only considers IE ,and perhaps Netscape, and
locks out everything else when the Browser such as Opera or Firefox may
indeed be able to handle the page with few or no problems.
Dec 27 '06 #8

Hello cwdjrxyz,
Your post is not clear to me.
As I understand it, please correct me, without ActiveX, one cannot
control the Windows Media Player from JavaScript?
thanks,
Anil
P.S. I found these links - are they different from your post?
http://developer.apple.com/documenta...ipt/index.html
http://forums.mozillazine.org/viewto...06213#CheckWMP
On Dec 27, 11:11 am, "cwdjrxyz" <spamtr...@cwdj r.infowrote:
anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Ok, I realize I can generate the url dynamically using a
document.write( ).
But (important)
How will I control the player programmaticall y?
Can I control the media player - set/get position, stop, play, pause -
via
Javascript?If you remain only on IE browsers with ActiveX on, Microsoft has some
information on their developer site for controlling the WMP directly
using scripts. They may use Jscript and sometimes VB script(which does
not work on many other browsers). Microsoft does an extremely poor job
of showing how to use their player in general, and scripting to control
it, for non-IE browsers, and they use such outlandish things as an
embed tag that is not, and never has been, an official W3C tag. A few
years ago I used some Microsoft scripts to detect the presence and
version of the WMP. This failed without warning on the upgrade to the
WMP10. I had to change many web pages. Since then I avoid Microsoft
scripts for controlling their player like the plague. I see no need to
do so. I do not think media should usually be autostarted - that annoys
many people. If you use the player object that I use, it generates the
payer control panel with controls to stop, start, pause, etc. If you
are determined to have the player autostart on audio and play until
finished without user control, you can reduce the player size to about
1 x 1 pixel so that it does not show and set the autostart parameter to
1 instead of 0 to autostart. Then if you are using a mixture of WMP,
Real, QT, etc players, the Microsoft player scripting is not going to
control these except in a few special cases when one has added an
ActiveX plugin for the WMP to a Mozilla family browser. Netscape at one
time had a script, that was huge, to detect if the ActiveX plugin was
added to their browser, and to control playing on the Netscape browser.
Unfortunately it is extremely difficult to detect what browser you have
using script, and subject to failure at any time, because many browsers
can report themselves as other browsers when you use script detection.
This is done to prevent being locked out of a page because the
developer of the page only considers IE ,and perhaps Netscape, and
locks out everything else when the Browser such as Opera or Firefox may
indeed be able to handle the page with few or no problems.
Dec 30 '06 #9

Quicktime recommends using *both* EMBED and OBJECT tags.
However you are using only OBJECT?
-
Anil

On Dec 30, 10:48 am, anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Your post is not clear to me.
As I understand it, please correct me, without ActiveX, one cannot
control the Windows Media Player from JavaScript?
thanks,
Anil
P.S. I found these links - are they different from your post?http://developer.apple.com/documenta...06213#CheckWMP

On Dec 27, 11:11 am, "cwdjrxyz" <spamtr...@cwdj r.infowrote:
anil.r...@gmail .com wrote:
Hello cwdjrxyz,
Ok, I realize I can generate the url dynamically using a
document.write( ).
But (important)
How will I control the player programmaticall y?
Can I control the media player - set/get position, stop, play, pause -
via
Javascript?If you remain only on IE browsers with ActiveX on, Microsoft has some
information on their developer site for controlling the WMP directly
using scripts. They may use Jscript and sometimes VB script(which does
not work on many other browsers). Microsoft does an extremely poor job
of showing how to use their player in general, and scripting to control
it, for non-IE browsers, and they use such outlandish things as an
embed tag that is not, and never has been, an official W3C tag. A few
years ago I used some Microsoft scripts to detect the presence and
version of the WMP. This failed without warning on the upgrade to the
WMP10. I had to change many web pages. Since then I avoid Microsoft
scripts for controlling their player like the plague. I see no need to
do so. I do not think media should usually be autostarted - that annoys
many people. If you use the player object that I use, it generates the
payer control panel with controls to stop, start, pause, etc. If you
are determined to have the player autostart on audio and play until
finished without user control, you can reduce the player size to about
1 x 1 pixel so that it does not show and set the autostart parameter to
1 instead of 0 to autostart. Then if you are using a mixture of WMP,
Real, QT, etc players, the Microsoft player scripting is not going to
control these except in a few special cases when one has added an
ActiveX plugin for the WMP to a Mozilla family browser. Netscape at one
time had a script, that was huge, to detect if the ActiveX plugin was
added to their browser, and to control playing on the Netscape browser.
Unfortunately it is extremely difficult to detect what browser you have
using script, and subject to failure at any time, because many browsers
can report themselves as other browsers when you use script detection.
This is done to prevent being locked out of a page because the
developer of the page only considers IE ,and perhaps Netscape, and
locks out everything else when the Browser such as Opera or Firefox may
indeed be able to handle the page with few or no problems.- Hide quoted text -- Show quoted text -
Dec 30 '06 #10

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

Similar topics

6
7200
by: alg | last post by:
Is it possible to put different types of objects in a single STL list? If not what STL template should be used which will contains various objects of different types? Thanks for your help!
9
3997
by: Nils Petter Vaskinn | last post by:
Why is it that if I have an overloaded function like: void foo(int i); void foo(char *c); I can't do: void bar() { foo( condition ? 5 : "NULL"); }
7
3041
by: Office Drone | last post by:
I'm a bit confused about memory usage, and for some reason I wasn't able to find a single point-of-call to get the amount of memory available. If we take, for instance, the Windows platform: There is * Virtual memory you can allocate (VirtualAlloc) * Global memory you can allocate (GlobalAlloc) * Local memory you can allocate (LocalAlloc)
17
2600
by: tuvok | last post by:
How can objects of different types be stored in a collection? For example: struct S1 { /*...*/ }; struct S2 { /*...*/ }; struct Sn { /*...*/ }; template<typename T> class X { public:
1
2159
by: JC | last post by:
Hi, I have to play a streaming audio. So in a thread I play audio as follow thread{ //some code for(;;){ //some code waveOutPrepareHeader(hwo, &(whdr), sizeof(WAVEHDR)); waveOutWrite(hwo, &(whdr), sizeof(WAVEHDR));
0
1311
by: Dony Isnandi | last post by:
Hi all, I want to read and play a Vox audio from a web based application. Any help would be appreciated. tia Dony Isnandi
20
2636
by: pinkfloydhomer | last post by:
Is it well-defined and portable to do something like: typedef struct { int type; char c; } S1; typedef struct {
4
2613
by: Dmitry Kulinich | last post by:
Guys! Is there are any possibility to create nodes with duplicate names and different types in XSD? I've read the whole specification and tried in a many different ways, but not successfull. -- Thank you for any help, Dmitry Kulinich, Ukrain,
8
1859
by: Born Bugler | last post by:
What I'm actually talking about is, when you put the same class in different assemblies, you get two different types. This is reasonable (if you would call it) in most cases as it avoids possible misuse. However, what about if I do want to consider classes with exactly the same definition in different assemblies to be the same? I tried interpret_cast, but it works only for trivial scenarios like below: ref class ClassA { public:
15
3532
by: Juha Nieminen | last post by:
I'm sure this is not a new idea, but I have never heard about it before. I'm wondering if this could work: Assume that you have a common base class and a bunch of classes derived from it, and you want to make a deque which can contain any objects of any of those types. Normally what you would have to do is to make a deque or vector of pointers of the base class type and then allocate each object dynamically with 'new' and store the...
0
8888
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
8752
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
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9257
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
9176
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
9113
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6702
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
6011
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();...
0
4519
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...

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.