Make Custom Playlist For Window Media Player In A Blog?
Apr 12, 2009
I have a blog which is dedicated to english music. I was using flash audio player before but now using window media player. Iam successfully runing the code in my blog and using a playlist in which songs play one by one, but i want to make the song list visible in my blog so that people coming in can decide themselves what to listen. so i want to make a playlist above or below the player so that songs are visible for selection and for listening. The current code which i am using now is.......
<OBJECT ID="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab# Version=5,1,52,701" STANDBY="Loading Microsoft Windows� Media Player components..." TYPE="application/x-oleobject" width="280" height="46">
[code]....
View 2 Replies
ADVERTISEMENT
May 30, 2011
have different players on a given page - youtube, vimeo, soundcloud, etc.
when the first player is finished playing whatever it is, then it can move to the next one and start playing.
obviously we are talking about players that have javascript apis available. what i'm thinking is: have a "state" for when the player is playing (is it called an object?). run a loop that checks to see if the first item is playing, and when it's finished it goes to the next item and plays it.
View 4 Replies
View Related
Jun 2, 2006
I'm trying to use WMP in FireFox and I have the following tag to embed
the player into the html page.
<EMBED TYPE="application/x-mplayer2"
PLUGINSPAGE="http://microsoft.com/windows/mediaplayer/en/download/"
ID="wmp"
Name="wmp"
DISPLAYSIZE="4"
AUTOSIZE="-1"
BGCOLOR="darkblue"
SHOWCONTROLS="-1"
SHOWTRACKER="-1"
SHOWDISPLAY="0"
SHOWSTATUSBAR="-1"
VIDEOBORDER3D="-1"
WIDTH=320
HEIGHT=313
SRC=""
AUTOSTART="-1"
DESIGNTIMESP="5311">
</EMBED>
Problem is that I can't access the controls through JavaScript. I have
to change the SRC property and play a new file according to user input.
var w = document.getElementById('wmp');
// This doesn't work... JavaScript error: "Play is not function"
wmp.Play();
// this also doesn't work... "controls is undefined"
wmp.controls.Play();
Anyone knows how to control WMP via JavaScript? I'm googling all over,
but I can't find a piece of code that shows me how to do it...
View 5 Replies
View Related
Apr 19, 2006
You know how you can embed videos on a webpage?
<embed src="video url here" width="100" height="100">
That's a sample code that you'd use. You know how it has a default, automatic media player that shows up in corresponding to that code? The thing with the play, pause and fast forward buttons? Well...it's a bit plain. The way it looks. I know I've seen them before, but where can I get some media player skins so the media player on my webpage has more style to it?
Whenever I search "media player skins" on google it gives me media players for using off the internet like, for iTunes or something. That's not what I am looking for, but if that's what it gives me when I type in "media player skins" then I don't know where else to go. Help? :o
And how would you make it the skin of the media player? How would you put that into the <embed src="video url here" width="100" height="100"> code to make it the skin of the media player?
View 1 Replies
View Related
Jul 10, 2009
I have a javascript with code that looks like this:
var bdiv=document.getElementById('mysong');
bdiv.Play();
where mysong is the id of the embedded media player.
This script works fine in Internet Explorer but not in Firefox.
Error console says bdiv.play is not a function.
View 2 Replies
View Related
Jul 13, 2005
I know nothing about js, however, I need it to provide a solution to something at work.
We have a page in our department that launches a movie player once the page has loaded. What I would like is that the player is delayed by a few seconds before it launches.
View 2 Replies
View Related
Jun 3, 2010
I am really lost in trying to hook up the controls. I've gone through and gotten all the files together from the demo, and tried using some of the UI helpers on "git" but I need an example to follow that's more for beginners
View 1 Replies
View Related
Aug 25, 2011
I need Media player to stream and play video in javascript..
My requirement is I have .wmv files but when i embed them in html pages first it gets downloaded and then it gets played.
I need them playing while they are getting downloaded.
View 2 Replies
View Related
May 22, 2006
I'm working on controlling Windows Media Player with JavaScript. I have all my functions working but a few. I want to sync the movie so that when it finishes the movie it loads the new one.
Now I was thinking of doing something like:
function PlayNext(movie)
{
if( Player.controls.currentPosition == Player.controls.duration )
{
// execute code to load next movie
}
}
I have that function being called every half second and I still can't get it to sync.
View 1 Replies
View Related
Feb 15, 2010
I have created a very simple flash splash image that I wish to display while a media player loads. I have it set so it will display and run as an "onload" - but for some reason it is not working.
[Code]...
A user will click which audio file they wish to hear. Once the window opens up, I have the onload set to load the flash that I have created, in order to allow the user to be "entertained" while the audio loads. I do not wish to stall or hinder the load time of the audio at the same time.
View 1 Replies
View Related
Sep 10, 2008
i m using tis embeded media player in my web. but, how can i provide checkbox for each song and then let the user play the multiple songs together using tis code? the music file format are .wma, .mp3 or .midi..
<embed type="application/x-mplayer2" id="music1"
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"
src=""
name="MediaPlayer1"
[Code]....
View 3 Replies
View Related
Jun 4, 2011
I am currently using windows media player to stream my shoutcast radio. I have been able to use javascript for my custom controls to keep with my site layout and now i want to show what is playing on the webpage with javascript. I would also like this to recheck every 5 seconds so that it is correct incase the song changes.
View 1 Replies
View Related
Jul 5, 2005
I've created website with Win Media Player video clips playing on web pages including full screen view button inserted - works well on IE.
Now, I've created JavaScript file for insert video clip on web pages so most different browers to be able to work well (due to accessibility - W3C Validator who refuse to hug and love EMBED tags!). Code:
View 3 Replies
View Related
Nov 29, 2009
I'm doing embedding Windows Media Player with the HTML but I can not run the script through a different page. The following script that I made: file : player.html
<html>
<OBJECT id="VIDEO" width="640" height="480"
style="position:relatif; left:0;top:0;"
CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<PARAM NAME="URL" VALUE="file_name.mpg">
<PARAM NAME="SendPlayStateChangeEvents" VALUE="true">
[Code]...
View 3 Replies
View Related
Mar 23, 2010
I am trying to play a video from javascript using the WMP plugin in IE.It works fine in Firefox and Chrome, but not IE.[code]This doesn't play the video in IE8.It works if I use the SRC parameter when I embed the player, but I need the video to change when I click on buttons.
View 3 Replies
View Related
Apr 17, 2006
i am having trouble making an in browser ws to be able to put the songs on it by the way. Basically its supposed to be like winamp or w/e when you download it but instead i want it in a browser. The user should be able to just drag there files in and play.
View 1 Replies
View Related
Aug 15, 2011
I am creating a website, and I have javascript function that will play a video playlist by passing it a playlist ID. I want to be able to share a url that points to my website and also calls a javascript function, like: [URL] If someone clicks/enters that url, they redirect to my website and the getPlaylist(id) function is called. Is there a way I can do this?
View 1 Replies
View Related
Dec 29, 2010
i need code in javascript to make the player select playing with the computer or other player and select who player beginning playing
View 2 Replies
View Related
Jan 17, 2009
On this page, when you click one of the item titles, a pop up box appears. Depending on the size, the music player interferes with it (displays in front and blocks some content). Is there a way to make the music player appear behind the pop up?
View 10 Replies
View Related
Dec 26, 2004
1) Uses the <body onload> function but does not get blocked by pop up blockers and firefox. (This site, sitepoint, has a pop up that is not blocked)
2) Stays open and does not reload when someone clicks on the trigger link again. If someone click it should just bring back the same window.
3) The window always stays in front of other windows unless minimised.
View 2 Replies
View Related
Nov 16, 2011
i am trying to make a music player where you select a song from a drop down list and then click submit. it then brings up the audio controls with the HTML5 "<audio>" tags and then you can click play and it should work. i am having trouble actually doing this though. the html is
[Code]...
View 3 Replies
View Related
Aug 17, 2011
OK so the basic stylesheets comprise about 800 lines of code and look about as fragile as Trump's ego; I don't understand what most of these CSS selectors actually refer to and I'm intimidated about breaking something.I need to make a smaller (less width, 230px wide to be exact) version of the audio player.[URL]
View 2 Replies
View Related
Jun 15, 2010
I'm using an onLoad script to resize a browser window for a flash player -
<script>
function ResizeOpen(){
window.resizeTo(435,475)
window.moveTo(280,140)
}
</script>
Works fine, but in IE & FF it causes second browser windows to open to the same size after it's been called, requiring users to resize the second windows.
Tried using an onUnload with following script -
<script>
function ResizeClose(){
window.resizeTo(window.screen.availWidth, window.screen.availHeight)
}
</script>
Doesn't work. They're both in the <body> element -
<body ........ onLoad="ResizeOpen()" onUnload="ResizeClose()">
View 4 Replies
View Related
Sep 21, 2010
I am currently developing a slideshow video comprise of images and video clips in a sequence on iPhone (with video tag, HTML5 & CSS3).Just for your record, on iPhone quicktime videos are played using a build-in player on a new page, and you have to click on a button "Done" to go back to your website when the video finished.I was be able to use JavaScript to make the video clips to auto play, however, when the video finished, the screen got stuck on the video player page and doesn't go back to my website, while the images continue to do transitions on the site page --> the sequence of the whole slideshow messed up. how to use JavaScript to close that damn iPhone video player page dynamically (so I can put it on the event "ended" of the video tag").
View 1 Replies
View Related
Dec 11, 2011
I am using the youtube chromeless player and embeding videos with loadVideoById() method problem is that videos with an id that contains an underscore or dash dont play although they play in the normal player. I also tried replacing with a hex value in querystring i.e (%5f) but that did not work I also tried loadVideoByUrl() method with several urls but still they don't load. here is my code
function switchToPlayer(ytid){
var params = { allowScriptAccess: "always"};
var atts = { id: ytid,onmouseover: "this.playVideo()",onmouseout: "this.pauseVideo()"};
swfobject.embedSWF("http://www.youtube.com/apiplayer?border=0&enablejsapi=1&playerapiid="+ytid, 'cell'+ytid, "150", "120", "8", "scripts/expressInstall.swf",null,params,atts);
}
[Code]....
View 4 Replies
View Related
Jul 23, 2005
I am studying Javascript to custom my yahoo estore, I need to open a custom sized window in a new browser , I tried the following script on 3 different PCs running XP
pro. IE 6, it worked on one and did not work on the other two. Code:
View 3 Replies
View Related