Greenguy's Board WebcamWiz CRAZY $5,000 Reward Bonuses

WebcamWiz CRAZY $5,000 Reward Bonuses WebcamWiz CRAZY $5,000 Reward Bonuses WebcamWiz CRAZY $5,000 Reward Bonuses WebcamWiz CRAZY $5,000 Reward Bonuses WebcamWiz CRAZY $5,000 Reward Bonuses

Go Back   Greenguy's Board > Programming & Scripting
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2004-09-26, 11:14 PM   #1
DangerDave
Bonged
 
DangerDave's Avatar
 
Join Date: Mar 2003
Location: BrisVegas, AUSTRALIA
Posts: 4,882
Embedded Media in Firefox Browser

I run a few bits and pieces that use an embedded Windows Media Player to display/play various media embedded in HTML pages.. and after a bit of trying it got it all to work for IE and Netscape... for Mp3's, MPG's,WMV's etc...

... but now none of the embedded players work in Firefox

I have seen a few places that have explained how to embed media for FireFox... but each type of media requires its own code.. I would love to find one bit of code to cover all media types..

or do I just force everyone to load Quicktime?


Any input appreciated

TIA

DD
__________________
Old Dollars >>>> Now with over 90 Hosted Free Sites <<<<
DangerDave.com.au - Adult Links to Free Porn
DangerDave is offline   Reply With Quote
Old 2004-09-27, 07:42 AM   #2
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Mpegs play within the browser on the Mac version but maybe that is because Mac use Quicktime to play them.

What happens when you click on video preview on this page?
http://www.foxyangel.com/tour/index3.php
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2004-09-27, 11:11 AM   #3
thrillho
Kids are great, Appu. You can teach them to hate the things you hate and they practically raise themselves now-a-days, you know, with the internet and all
 
thrillho's Avatar
 
Join Date: Aug 2003
Location: Austin, TX
Posts: 194
Send a message via ICQ to thrillho Send a message via Yahoo to thrillho
Dave,
Not sure if this is the problem to which you are referring, but...
Lately, when I've clicked on my link to the movie sample of the day for Granny Island, the embedded Windows Media Player begins playing the movie, then the picture freezes after a couple of seconds. The audio, however, continues. Today, after reading your post here, I went to my site to check the link again (the location of the link to which I refer is here )
and the player had "closed" in it's status bar.
I surf with SlimBrowser, which runs on the IE engine, and generally seems to be perceived as IE by the sites/pages I'm viewing.
I'm not sure if this is a problem with browser compatibility, or if there's a problem with the video stream itself, but I thought I'd bring it to your attention here.
thrillho is offline   Reply With Quote
Old 2004-09-27, 08:41 PM   #4
DangerDave
Bonged
 
DangerDave's Avatar
 
Join Date: Mar 2003
Location: BrisVegas, AUSTRALIA
Posts: 4,882
Solved!

Cleo - No, the Foxy's preview movie does not work in Firefox - (at least not with my settings!)

It is a coding problem rather than a browser problem.

Thrillho, the Outback movies suffer from the same problem.


When I first embedded movies they worked beautifully in IE..... but not in Netscape/Mozilla, and I found the solution to that one..(the way you embed them), and the same for FireFox...

Code just needs to be done the right way, as NN/Moz/and Ff are unforgiving for bad code

DD
__________________
Old Dollars >>>> Now with over 90 Hosted Free Sites <<<<
DangerDave.com.au - Adult Links to Free Porn
DangerDave is offline   Reply With Quote
Old 2004-09-27, 08:56 PM   #5
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally posted by DangerDave
Solved!

Code just needs to be done the right way, as NN/Moz/and Ff are unforgiving for bad code

DD
Care to share the proper coding?
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2004-10-17, 10:11 AM   #6
lordaron
Trying is the first step towards failure
 
Join Date: Sep 2003
Location: Norway
Posts: 128
Im having the same problem with my tgp rotator script, firefox isnt capable of viewing the site. I just get the whole code when I try to access the site with firefox, no problem with IE etc.

Im not sure if I should blaim JMBsofware, myself or firefox
lordaron is offline   Reply With Quote
Old 2004-10-17, 04:49 PM   #7
DangerDave
Bonged
 
DangerDave's Avatar
 
Join Date: Mar 2003
Location: BrisVegas, AUSTRALIA
Posts: 4,882
I would put 50$ on it being you/their code.

Every "prob" I have found in FF has been a code prob and or easily fixable.

DD
__________________
Old Dollars >>>> Now with over 90 Hosted Free Sites <<<<
DangerDave.com.au - Adult Links to Free Porn
DangerDave is offline   Reply With Quote
Old 2004-10-18, 04:52 PM   #8
lordaron
Trying is the first step towards failure
 
Join Date: Sep 2003
Location: Norway
Posts: 128
hehe it was totally me as usual, forgot to put a extension to the file (I tested it in IE and it doesnt require an extension) ..now I named it .html and it works
lordaron is offline   Reply With Quote
Old 2005-03-15, 02:59 PM   #9
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
this appears to be the magic incantation

Code:
<OBJECT id="VIDEO" width="320" height="240"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
        type="application/x-oleobject">

        <PARAM NAME="URL" VALUE="http://url.to/content/here.wmv">
        <PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
        <PARAM NAME="AutoStart" VALUE="True">
        <PARAM name="uiMode" value="none">
        <PARAM name="PlayCount" value="9999">
<embed type="application/x-mplayer2"
pluginspage = "http://www.microsoft.com/windows/mediaPlayer/"
id="Player"
src="http://url.to/content/here.wmv"
value=" "
width="320"
height="240"
autostart="false">
</embed>

</OBJECT>
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-03-15, 03:15 PM   #10
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Anyone have to code to properly embed a mpeg into Firefox?
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2005-03-15, 03:26 PM   #11
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
did you try that code? embed should work on any object type. mplayer is a handler for multiple encoding types.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-03-15, 03:35 PM   #12
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
The plugin info is wrong for a mpeg.

Here is one of the pages where we have an embedded mpeg
http://www.foxyangel.com/transsexual...s/sample7.html
I'm told that it doesn't work in Windows Firefox but I know it works in Mac's Firefox.

This is what we are using
<embed height="255" src="../../tour-samples/sample.mpg" type="audio/mpeg" width="288" autostart="true" controls="console">
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2005-03-15, 03:45 PM   #13
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
is that a video or audio file? you have your embed set to audio, but,

$ telnet foxyangel.com 80
Trying 216.77.84.39...
Connected to ashburn.simplecom.net.
Escape character is '^]'.
GET /tour-samples/sample.mpg HTTP/1.0
Host: foxyangel.com

HTTP/1.1 200 OK
Date: Tue, 15 Mar 2005 20:43:39 GMT
Server: Apache/1.3.33 (Unix) PHP/4.3.10
Last-Modified: Sun, 19 Sep 2004 00:37:33 GMT
ETag: "3643d6-1c9e10-414cd4cd"
Accept-Ranges: bytes
Content-Length: 1875472
Connection: close
Content-Type: video/mpeg

If it is audio, try naming it .mp3.. maybe the content type is throwing it off.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-03-15, 05:17 PM   #14
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Foxy's video is working here on Firefox/Windows. It's rather 'shaky' though, if that makes any sense.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2005-03-15, 06:38 PM   #15
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally Posted by cd34
is that a video or audio file?
Silly *nix user.

It is a movie, it is an mpeg or .mpg as the actually extension is for some odd reason.

UW
Wow it works.
I had someone test it sometime ago and they said it didn't work and then I forgot all about it until this thread.

Yeah it is shaky and needs to be replaced really badly. It is one of the mpegs that her old video guy did. We had a lot of problems with the ones that he did. We do them ourselves now in Final Cut Pro. Actually that is what we finish them off in. Angel uses iMovie for editing and titles and then gives us the .dv file.

Ok… code works properly in Firefox… mark one thing off in my ever growing to do list.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2005-03-15, 06:42 PM   #16
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
the reason I ask is that you are specifying type="audio/mpeg" in your <embed>
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-03-15, 06:57 PM   #17
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally Posted by cd34
the reason I ask is that you are specifying type="audio/mpeg" in your <embed>
Well you could have just said that instead of confusing me.

I just changed it to video/mpeg and my web authoring program even changed the plugin icon to a movie clip instead of a musical note, a good sign.

Ok, does it still play in Windows Firefox?
http://www.foxyangel.com/transsexual...s/sample7.html
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2005-03-15, 07:06 PM   #18
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
Quote:
Originally Posted by Cleo
Well you could have just said that instead of confusing me.
I sort of did

Quote:
Originally Posted by cd34
is that a video or audio file? you have your embed set to audio, but,
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-03-15, 07:21 PM   #19
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
And people wonder why manuals written by programers are impossible to understand.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2005-03-15, 07:53 PM   #20
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
sorry, too many things going on at once. my time slicing algorithm was acting up.
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote
Old 2005-03-16, 09:56 AM   #21
Useless
Certified Nice Person
 
Useless's Avatar
 
Join Date: Oct 2003
Location: Dirty Undies, NY
Posts: 11,268
Send a message via ICQ to Useless
Quote:
Originally Posted by Cleo
Ok, does it still play in Windows Firefox?
http://www.foxyangel.com/transsexual...s/sample7.html
Yes maam.
__________________
Click here to purchase a bridge I'm selling.
Useless is offline   Reply With Quote
Old 2005-03-16, 09:58 AM   #22
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Thanks, guess I need to do a fast search and replace of a snippet of code one Angel's server.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Reply


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 On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:55 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc