A youtube player that uses 2 different youtube videos for audio and video respectively?

You could probably fake it by loading and playing both videos while keeping the audio-only video in a hidden DIV, and using the JS API to mute the video-only video.

You could probably fake it by loading and playing both videos while keeping the audio-only video in a hidden DIV, and using the JS API to mute the video-only video. So I would try something like this: The muted video will go here the hidden video will go here var audioplayer; var videoplayer; var params = { allowScriptAccess: "always" }; var video_atts = { id: "vidonly" }; var audio_atts = { id: "audonly" }; // embed the video-only player swfobject. EmbedSWF("youtube.com/e/VIDEO_ID?enablejsapi=1&pla..." rel="nofollow">youtube.com/e/VIDEO_ID?enablejsapi=1&pla..., "videodiv", "425", "356", "8", null, null, params, atts); // embed the audio-only player swfobject.

EmbedSWF("youtube.com/e/VIDEO_ID?enablejsapi=1&pla..." rel="nofollow">youtube.com/e/VIDEO_ID?enablejsapi=1&pla..., "audiodiv", "425", "356", "8", null, null, params, atts); function onYouTubePlayerReady(playerId) { audioplayer = document. GetElementById("myytplayer"); videoplayer = document. GetElementById("myytplayer"); videoplayer.mute(); audioplayer.play(); videoplayer.play(); } The trick then is to style audiodiv with CSS so that it doesn't appear on the page.

You may need to play around with it to find the best combination, but I'm guessing that setting its width and height to 0 or 1 should be enough. Also, you may need to set up the onYouTubePlayerReady function to make sure that both videos are completely loaded before you start playback.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions