For a long time we resisted the use of emoji, thinking that their use was a bit lame, but more and more, as times goes on, we find good use for them. It is kind of predictable though for quite a few reasons โฆ
- they are compact, and in a world going down the mobile device โwayโ, that is a huge advantage
- they can help with Internationalization of your web applications
- they can become action items, as would a button, about which, at this blog, you might want to read HTML and CSS More Button Ideas Tutorial
- new ones are constantly being designed
โฆ in addition to the reason that turned me off them, in my isolated thinking, for so long โฆ
- they can cheer up a website
โฆ but am not ready to say they are self-explanatory enough to dive on in there without some English wording around, at least with todayโs work, and overcoming this phobia will be the last stage of acceptance. Mind you, perhaps caution should be part of the equation for โmission criticalโ action items, though emojis can also be decorative, and you can see that use of them a lot around this blog as decoration for HTML โunordered listโ ul elements.
With todayโs changes we use emojis for action items for the continuation of our โKaraoke via YouTube APIโ web application project (that we left off with Karaoke via YouTube API in Iframe Microphone Tutorial as shown below yesterday), and in so doing, make more โheightโ room by doing away with the band of buttons under the YouTube video player, and with the smaller amounts of โbuttonโ emoji space now, place this, now, to the right of the YouTube player instead.
How do we find the emojis we want? Well, at the entry level and exit level we have, respectively โฆ
- searches for relevant words in Google search engine โฆ eg. โvideo game emojiโ Google search as per this link
- and hope to arrive at the //www.fileformat.info website for the technical details necessary โฆ eg. Unicode Character โVIDEO GAMEโ (U+1F3AE) HTML Entity (decimal) 🎮 is what is useful to us, in HTML coding as a value= value for HTML input elements or innerHTML property of HTML a elements, for instance
The steps in between the two above tends to be a bit variable. For the example above, we ended up at Googleโs first suggestion, which we often end up at, at the domain emojipedia.org, specifically this link and its โCodepointsโ section value U+1F3AE that when refed back into Google search engine (for us, by literally typing it into the address bar) you get a first result sending you to //www.fileformat.info websiteโs Unicode Character โVIDEO GAMEโ (U+1F3AE) as above. However, we did not always use emojipedia.org as our โmiddle guideโ here. There are many references out there.
Along our CSS feeling styling โwayโ today, we add a CSS3 linear gradient background like we did for HTML Canvas What Do We Stand For Game Annotation Tutorial and channelled some of the thinking regarding HTML table element border attributes to be quite big numerical values โฆ though we tone that down a bit for todayโs purposes โฆ that we talked about with Holes Web Application Primer Tutorial.
Thereโs still more to do, but we have a more aesthetically pleasing web application now, we hope, and again hope it is helping you out or giving you ideas to try yourself, or โฆ
- The parent HTML and Javascript and CSS karaoke_youtube_api
htm changed in thisway
- The child HTML and Javascript and CSS stop_start_youtube
html is unchanged
โฆ to arrive at this genericlive run, again.
Previous relevant Karaoke via YouTube API in Iframe Microphone Tutorial is shown below.
It was always a plan with the โKaraoke via YouTube APIโ that we would try to โspliceโ in user contributions for a more real โKaraokeโ experience. Iโve done work on this before, and it takes a lot of web server diskspace to be the one storing such audio files, and know why Snapchat has the length (of media) limitation.
There was discussion in HTML5 about standards as you can read here and the discussion in Capturing Audio & Video in HTML5 sums it up really well as far as web applications go โฆ you need to be able to execute, successfully, the Javascript function โฆ
navigator.getUserMedia()
โฆ to get anywhere that way. Now we donโt expect many users to have this accessible yet, but we do not restrict methodologies to use here, and we could be getting the user to use another desktop microphone recording app perhaps, just to arrive at, in order of preference โฆ
- a public URL with http: or https: transfer protocol of an audio file youโve created โฆ or โฆ
- a local web server, such as Mac OS X MAMPโs //localhost:8888/ ones or Windows EasyPHPโs //localhost:8887/ ones, URL with http: transfer protocol of an audio file youโve created โฆ or โฆ
- any other http: or https: URL to slot in between YouTube slots
- a file: local audio file, perhaps saved using the great navigator.getUserMedia() webpage here
Todayโs task is to set up a system to slot these microphone audio files into the functionality. Weโve decided to add it as a suffix possibility to the โStart in secondsโ field, as much as anything, because the โ;โ delimitation we use means that to get back the original you just add the bold (Javascript split function) coding bit as exemplified by โฆ
thisd = eval(eval(document.getElementById('j' + i).value) - eval(document.getElementById('i' + i).value.split(';')[0]));
โฆ as shown by the URL we used to create todayโs tutorial picture, with bold bits of user audio relevance โฆ
//www.rjmprogramming.com.au/HTMLCSS/karaoke_youtube_api.htm?youtubeid=CPMpeNDIGdk&recown=on&youtube_duration=449.0&c0=on&i0=0&j0=60&c1=on&i1=80%3Bhttp%3A%2F%2Flocalhost%3A8888%2FmyRecording00.wav&j1=124&c2=on&i2=144&j2=396&c3=on&i3=416&j3=449&i4=&j4=&i5=&j5=&i6=&j6=&i7=&j7=&i8=&j8=&i9=&j9=
โฆ and so this is an easy approach to the slotting in of new ideas, but keep the same basic structure of data design otherwise โฆ we do like to keep things that work as much as possible โฆ doh!
Thereโs more to do, but we have the framework here to move forwards, and hope it is helping you out or giving you ideas to try yourself, or โฆ
- The parent HTML and Javascript and CSS karaoke_youtube_api
htm changed in thisway
- The child HTML and Javascript and CSS stop_start_youtube
html is unchanged
โฆ to arrive at this genericlive run.
Previous relevant Karaoke via YouTube API in Iframe jQuery Ajax Tutorial is shown below.
Weโre still improving user experience (UX) aspects of our latest project โKaraoke via YouTube APIโ adding more functionality to yesterdayโs Karaoke via YouTube API in Iframe UX Tutorial UX ideas, as shown below.
The work today has centred on โฆ
- some CSS improvements regarding the mobile device usage โฆ reflected by these โchildโ HTML and Javascript and CSS changes (to end up like stop_start_youtube
html)
- display h:mm:ss.ssss as you hover over a field involving numerical seconds involving the onmouseover event
- allow mmm: keyboard entries be mapped to sssss (equals mmm x 60) numerical seconds immediately upon entry, involving โฆ
- onblur event checking for HTML input type=text numerical second fields โฆ and โฆ
- onkeyup, oninput, onclick events contribute to the checking of HTML input type=number numerical second fields
โฆ and reflected by these โparentโ HTML and Javascript and CSS codechanges
- a new mode of YouTube video id searches via the user entry of โSearch Wordsโ using jQuery Ajax techniques to search YouTube for videos of interest to the user Search Words entered, featuring all the events of the two steps above, and that we first talked about with Ajax jQuery Primer Tutorial โฆ and reflected by these โparentโ HTML and Javascript and CSS codechanges (to end up like karaoke_youtube_api
htm)
So, encapsulated, what did we learn from todayโs work?
- the use of the HTML input type=number field type looks tempting for numerical data, but is so much harder to tailor later than an HTML input type=text field, when it comes down to data validation issues
- jQuery Ajax is a great way for mobile devices to โjoin the partyโ of Ajax functionality, away from those denials of usage of onmouseover (ie. hover) logic, that mobile devices do not usually detect, but is a very popular place to intervene for Ajax functionality on non-mobile devices
- jQuery Ajax still needed inhouse PHP to be used for todayโs changes as per the use of legend_via_map
php from the tutorial Legend for and from HTML Map Element Web Server Tutorial due to cross-domain usage restrictions, and you can read more about all this in the thread of blog postings from that last link
Letโs revisit that โsweet green icingโ example with the new software changes โฆ
Macarthur Park Karaoke is shown below โฆ
Our genericlive run also has that new look as well. Hope this is helping you out in some way.
Previous relevant Karaoke via YouTube API in Iframe UX Tutorial is shown below.
Weโre primarily working on improving some user experience (UX) aspects to yesterdayโs beginnings with our latest project โKaraoke via YouTube APIโ that we started with Karaoke via YouTube API in Iframe Primer Tutorial as shown below.
We feel that, in a similar way to the difficulty getting co-ordinates for an HTML map element, it will be difficult to get users to just use the keyboard to enter in time elapsed values for the Karaoke presentation of a YouTube (presumably music) video. But what if they could have a first run clicking the YouTube video, which causes a pause, to establish stop and start points for the Karaoke? That sounds fine, but we found that a simple onclick event formulated with the encapsulating HTML div element was not the go, and we didnโt really expect it would, but you should always try the obvious before diving too far into the ins and outs of an I.T. issue.
So we read at this very useful link, thanks, and weโd already effectively been trapping this event, it is at the YouTube API onStateChanged that will be the equivalent for us, to the onclick event, and in this onStateChanged event weโd already written code regarding three matters we are interested in once within this YouTube API eventโs code โฆ
- are we paused?
- are we playing? โฆ believe you canโt do both, but just bear with our dumbness โฆ at least weโre thorough, which is better than slack, believe me
- are we โdoneโ playing the video parts we wanted to play?
โฆ and so we constructed the crux of our new โonStateChangedโ sublogic in the Javascript function โฆ
function analyzemaybe(playing, paused, isdone) {
if (document.URL.indexOf('start=') != -1 && document.URL.indexOf('playtime=') != -1) {
if (document.URL.indexOf('start=0') == -1 || document.URL.indexOf('playtime=0') == -1) {
if (paused != 0) {
var urp=parent.document.getElementById('updatethisplease');
if (urp) {
if (urp.value != '') {
var urpvalue=urp.value;
parent.document.getElementById(urpvalue).value=player.getCurrentTime();
if (urpvalue.indexOf('i') == 0) {
urpvalue=urpvalue.replace('i','j');
parent.document.getElementById('updatethisplease').value=urpvalue;
} else {
urpvalue=urpvalue.replace('j','');
urpvalue=eval(1 + eval(urpvalue));
urpvalue='i' + urpvalue;
if (parent.document.getElementById(urpvalue).value == "") {
parent.document.getElementById(urpvalue.replace('i','c')).checked=true;
}
parent.document.getElementById('updatethisplease').value=urpvalue;
}
}
}
}
}
}
}
โฆ called, in amongst the Karaoke code of the logic for the โonStateChangedโ event as per โฆ
// 5. The API calls this function when the player's state changes.
// The function indicates that when playing a video (state=1),
// the player should play for six seconds and then stop.
var done = false;
function onPlayerStateChange(event) {
one=0;
onepause=0;
if (event.data == YT.PlayerState.PLAYING) one=1;
if (event.data == YT.PlayerState.PAUSED) onepause=1;
analyzemaybe(one, onepause, done);
if (event.data == YT.PlayerState.PLAYING && !done) {
duration=player.getDuration();
if (document.URL.indexOf('start=0') != -1 && document.URL.indexOf('playtime=0') != -1) {
oursecscnt=-1;
setTimeout(stopVideo, 10);
parent.document.getElementById('youtube_duration').value='' + duration;
parent.document.getElementById('myh1').innerHTML=player.getVideoData().title;
if (kpi == -9) {
if (document.URL.indexOf('start=') != -1 && document.URL.indexOf('playtime=') != -1) {
if (document.URL.indexOf('start=0') == -1 || document.URL.indexOf('playtime=0') == -1) {
kpi=-8;
kpi=player.getCurrentTime();
keepParentInformed();
}
}
}
return;
} else {
if (playtime < 0) playtime=duration * 1000;
document.title='Playing YouTube ' + vid + of + ' for ' + playtime / 1000 + ' seconds ... is ' + duration + ' seconds altogether.';
document.getElementById('ptitle').innerHTML='Playing YouTube ' + vid + of + ' for ' + playtime / 1000 + ' seconds ... is ' + duration + ' seconds altogether.' + etc_volume();
document.getElementById('ivol').value=player.getVolume();
document.getElementById('ipbr').value=player.getPlaybackRate();
document.getElementById('iqty').value=player.getPlaybackQuality();
setTimeout(stopVideo, playtime + delay);
done = true;
eventtarget=event.target;
if (eval(oursecscnt) > 0) {
document.getElementById('ptitle').innerHTML='Playing YouTube ' + vid + ' starting at ' + oursecscnt + ' seconds ' + of + ' for ' + playtime / 1000 + ' seconds ... is ' + duration + ' seconds altogether.' + etc_volume();
document.title='Playing YouTube ' + vid + ' starting at ' + oursecscnt + ' seconds ' + of + ' for ' + playtime / 1000 + ' seconds ... is ' + duration + ' seconds altogether.';
if (kpi == -9) {
if (document.URL.indexOf('start=') != -1 && document.URL.indexOf('playtime=') != -1) {
if (document.URL.indexOf('start=0') == -1 || document.URL.indexOf('playtime=0') == -1) {
kpi=-8;
kpi=player.getCurrentTime();
//alert(kpi);
keepParentInformed();
}
}
}
eventtarget.loadVideoById(vid, eval(oursecscnt), eval(oursecscnt + playtime / 1000), "medium");
oursecscnt=-1;
}
}
}
}
โฆ that sits in the supervised HTML/Javascript you could call stop_start_youtubehtml changed today in thisway quite considerably. โQuite considerablyโ because we need to set up another means by which parent and child can communicate, and we introduce a new HTML element as per โฆ
<input id='updatethisplease' type='hidden' value=''></input>
โฆ sitting in the parent, HTML/Javascript you could call karaoke_youtube_apihtml changed today in thisway (and with this generic
live run), that remains blank in value if there is no requirement from the user to opt fr โonStateChangedโ methods of entering in โtime elapsedโ values โฆ and that is decided by the fleeting existance of these two HTML input type=button elements as per โฆ
<input id='mousej' type='button' style='background-color:#f0f0f0; display:inline; visibility: hidden;' onclick=' mousebelowj(this);' value='Fill Table Below via Mouse Video Pauses Starting with '></input><input id='mousei' type='button' style='background-color:#f5f5f5; display:inline; visibility: hidden;' onclick=' mousebelowi(this);' value='Fill Table Starting with 0 cell'></input>
โฆ that donโt show up unless the following happens โฆ
- the URL has no GET parameters
- youโve just tripped the โonblurโ event for the HTML input type=text element that collects the YouTube video id from the user
- the user has not clicked any HTML input type=checkbox elements yet
โฆ and so if one of those HTML input type=button elements above is clicked, the user is going to determine โtime elapsedโ values by clicking the embedded YouTube video, that is now played. The means for communicating between the parent and child is via filling in the HTML input type=hidden updatethisplease element with the Javascript DOM id of the parent field next in line, in the table, to be filled out. One the user finished that phase of proceedings, everything else about the web application functions as per yesterday. Except โฆ and isnโt there always an โexceptโ โฆ since yesterday weโve tightened up something we almost got to yesterday, but not quite โฆ in the course of playing the YouTube video to do this โKaraokeโ thang, what if the user โdawdlesโ about it or jumps forward? Well, we have with the parent HTML a new HTML input type=hidden element as per โฆ
<input id='conduit' type='hidden' value=''></input>
โฆ as a second go between, and as a place the child can tell the parent about real โtime elapsedโ scenarios for playing (or paused) videos to facilitate the parent changing their โpretty dumbโ Javascript setTimeout calls whose delays, without help from the child, are just based on perfectly smoothly running YouTube videos with no user delays nor response time delays. So that is done with the YouTube API call like โฆ
var xkpi=player.getCurrentTime();
โฆ called as the YouTube video is being played (or not).
So whatโs that other bit of todayโs tutorial picture showing? Well, for now, we think a good collaboration tool web browsers already have, and want to point out to you today, is that they all have within their File menu an option to Share a URL via Email. Once you reach the point of seeing our red button in our web application, and you want to share your experience, then you are in a position to bring down that File menu on your web browser and Share Email away. We may particularize this within the web application, further, but wanted to point out this web browser feature now, as well.
Previous relevant Karaoke via YouTube API in Iframe Primer Tutorial is shown below.
We have a burgeoning Karaoke web application idea for you today, as with WordPress 4.1.1โs Karaoke via YouTube API in Iframe Primer Tutorial, that builds on what we last left off with at YouTube API Iframe Synchronicity Resizing Tutorial as shown below.
We use the HTML code off that tutorial and tweak it a bit to be able to play a YouTube video at a designated place via the great YouTube API for Iframe embedded videos.
This ability means a user can plan ahead for bits where the YouTube clip is played as is, and bits of silence where the user or users can sing along to bits that are very well known.
Todayโs featured execution of the resultant HTML and Javascript (grand)parent karaoke_youtube_apihtml web application has this generic
live run but as a special treat for any โsweet green icingโ fans โฆ know I am โฆ the link below waits 3 times for you to sing โฆ
Someone left the cake out in the rain
I donโt think that I can take it
Cause it took so long to bake it
And Iโll never have that recipe again
Oh, nooo!
Macarthur Park Karaoke is shown below โฆ
We want to thank this useful link for their great help with extracting the YouTube video title, necessary today, to give the user context about what they โmightโ be singing along to โฆ depending on their talent of course?!
So what once was, and still is, a parent (HTML/Javascript you could call stop_start_youtubehtml changes today in thisway and still has its live
run) becomes the child to the new Karaoke (grand)parent above.
Todayโs web application has a CSS โsubthemeโ today that exemplifies the usefulness of the CSS style properties โฆ
display:inline; visibility: hidden;
โฆ rather than just โฆ
display:none;
โฆ when it comes to reshowing HTML elements that are preferably โinlineโ by nature โฆ ie. youโre trying to keep them on the same horizontal line of elements. This first method sort of ensures that CSS โspaceโ is left aside, even when the elements are invisible, so that when you โJavascript DOMโ them to be visible again via statements like โฆ
document.getElementById('dkaraoke').style.visibility='visible';
โฆ this results in a much better โinlineโ result than does โฆ
document.getElementById('dkaraoke').style.display='inline'; // or 'block' or any other idea
Weโll be refining this Karaoke web application as time goes on, and hope you flex your singing voice trying it out yourself.
Previous relevant YouTube API Iframe Synchronicity Resizing Tutorial is shown below.
Todayโs work concerns dynamic resize of HTML iframe child elements that could resize themselves because their parent HTML elements have changed size via user intervention.
We want to show you this today to talk a bit about the CSS properties of โฆ
- width
- height
โฆ and about the usefulness of โฆ
โฆ to calculate the width or height, in pixels, of an HTML element, in our case that either โฆ
- has no width nor height defined
- has a width and/or height defined as a percentage
So, think you will agree, that if you were following our current thread of tutorials yesterday, youโd have agreed, especially if you viewed it on a laptop, that the web application involving the โgrid of televisionโ HTML iframe elements could benefit from a bit more room given over to the HTML table housing the โgrid of televisionโ HTML iframe elements. That is a pretty simple CSS change as per the bold bit below โฆ
<style>
td { margin: 0 0 0 0; background-color: white; }
div { margin: 0 0 0 0; }
iframe { margin-left: 0px; }
table { width: 100%; height: 90%; }
</style>
โฆ and then to change from this static arrangement to a user interventional additional control to width and height management how about the PHP bold bits below โฆ
<?php
if (strpos($p1, ".") !== false) {
echo "\n window.open('//www.youtube.com/watch?v=K5StTXQofqs', '_blank', 'top=50,left=50,width=500,height=500'); \n";
} else {
echo "\n document.getElementById('myh1').innerHTML=\"Enjoy the Videos ... <span id=sw><a style=color:red; onclick=rew(-1);>-</a>Width (100%)<a style=color:green; onclick=rew(1);>+</a></span> <span id=sh><a style=color:red; onclick=reh(-1);>-</a>Height (90%)<a style=color:green; onclick=reh(1);>+</a></span> ... Thanks <a target=_blank title='YouTube' href='//www.youtube.com'>YouTube</a>\"; \n";
}
?>
โฆ and so this has the user in the โknowโ but what about the child โgrid of televisionโ HTML iframe elements being brought into the loop. This can be achieved in the external Javascript involving, for the most part, a new function that runs constantly looking out for user interventional changes to the width and height of the parentโs HTML table element via โฆ
function checkdim() { // dynamic resizer of HTML iframe elements via examination of parent div elements
var jv=1, dw="100%", dh="100%", ielem, wassrc='', wass;
var elem1=document.getElementById('ptable');
dh="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("height").replace('px','').replace('%',''));
dw="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("width").replace('px','').replace('%',''));
if (Math.abs(eval(dw) - eval(ptablew) + eval(dh) - eval(ptableh)) > 0.9) { // change to parent div elements detected
ptablew=dw;
ptableh=dh;
wass=document.getElementById('myh1').innerHTML.split('~');
document.getElementById('myh1').innerHTML=eval(dw) + ',' + eval(ptablew) + ',' + eval(dh) + ',' + eval(ptableh) + ' ~' + wass[1];
//alert(Math.abs(eval(dw) - eval(ptablew) + eval(dh) - eval(ptableh)));
for (jv=1; jv<=9; jv++) {
elem1=document.getElementById(elarr[eval(-1 + jv)]);
ielem=document.getElementById('if' + jv);
wassrc=ielem.src;
wass=wassrc.split('&this=');
if (wass.length > 1) {
dh=eval(ptableh / 3); //="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("height").replace('px',''));
dw=eval(ptablew / 3); //="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("width").replace('px',''));
warr[eval(-1 + jv)]=eval(dw);
harr[eval(-1 + jv)]=eval(dh);
//if (jv == 1) alert("//www.rjmprogramming.com.au/HTMLCSS/stop_start_youtube.html?width=" + dw + "&height=" + dh + "&this=" + wass[1]);
ielem.src="//www.rjmprogramming.com.au/HTMLCSS/stop_start_youtube.html?width=" + dw + "&height=" + dh + "&this=" + wass[1];
}
}
} else {
wass=document.getElementById('myh1').innerHTML.split('~');
document.getElementById('myh1').innerHTML=eval(dw) + ',' + eval(ptablew) + ',' + eval(dh) + ',' + eval(ptableh) + ' ~' + wass[1];
}
setTimeout(checkdim,5000);
}
โฆ which gets us to changed programming source code โฆ
- Supervisor HTML/Javascript you could call stop_start_youtube
html doesnโt change today and still has its live
run link โฆ of โฆ
- Called PHP you could call reveal_div
php, changed in thisway โฆ as well as โฆ
- Called HTML and Javascript you could call reveal_div
html is unchanged โฆ but โฆ
- Called External Javascript you could call longhover_sup
js, changed in thisway to allow for user resizable YouTube video media usage in that โgrid of televisionsโ mode of usage, via the YouTube API for Iframe embedded videos.
Again, weโll leave you with a liverun that helped piece together todayโs tutorial picture, an improvement on โroom to moveโ compared to yesterday, we hope you agree?
Previous relevant YouTube API Iframe Synchronicity Tutorial is shown below.
Do you ever go into an electronics or electrical appliance store into the television section, and see all those television sets playing not always the same channel at once? Mesmerising, huh?
Have seen this also, in Real Estate windows. Well, today, we allow up to 9 YouTube videos and/or playlists to be played at once, just to give you a chance to โblow your mindโ, especially for those expert multi-taskers amongst us.
What we called on to facilitate this functionality today, building on the existing work up to YouTube API Video Playlist Tutorial, as shown below, is โฆ
- Our recent YouTube API Video Playlist Tutorial โฆ and โฆ
- Our not so recent External Javascript Genericity Follow Up Tutorial
So this HTML iframe โgrid of televisionโ functionality, to us, puts it in a โsynchronizationโ category of tutorial, and because of the homogeneity of the media presentation โฆ ie. we use YouTube videos and the YouTube API with 1 above โฆ we think our synchronicities could work quite well, with less hit and miss, compared to previous efforts weโve put in at this blog with non-homogeneous media types and presentations. It has to be said, also, that that is the strength of using APIs to help with your software, as they tend to unify concepts, perhaps restricting what is allowed, to focus on a known set of inputs and outputs โฆ EOR โฆ end of rave.
We feel a behove coming on โฆ atchoobehove โฆ thatโs better โฆ and so it behoves us to show you programming source code โฆ
- Supervisor HTML/Javascript you could call stop_start_youtube
html, changed in thisway with its live
run link โฆ of โฆ
- Called PHP you could call reveal_div
php is unchanged โฆ as well as โฆ
- Called HTML and Javascript you could call reveal_div
html is unchanged โฆ but โฆ
- Called External Javascript you could call longhover_sup
js, changed in thisway to allow for YouTube video media usage via the YouTube API for Iframe embedded videos.
Weโll leave you with a liverun that helped piece together todayโs tutorial picture.
Previous relevant YouTube API Video Playlist Tutorial is shown below.
Playlists are the topic we hone in on today with the continuation of our YouTube API for Iframe embedded videos โknowledge questโ today, as with WordPress 4.1.1โs YouTube API Video Playlist Tutorial, building on yesterdayโs YouTube API Start and Stop Resizing Tutorial as shown below.
Perhaps your first exposure to a โplaylistโ was with the iTunes playlists, as receptacles for your favourite music in the form of a song list? But โplaylistโ has morphed into so much more than with those early โheadyโ days of the iPod we talked about with the Kinesthetic iPod Learning Primer Tutorial, and we think of it today in terms of YouTube playlists of videos. Think playlist, think media.
The fact is, to us, looking at YouTube, there are two main sources for the concept of โreceptacleโ or โcontainerโ or โcollectionโ of videos, that being โฆ
- a playlist โฆ which can be created by anyone, as used by me to create the Nala and Luna โplaylistโ
- a channel โฆ which is a concept you use to upload content to YouTube, and you register with YouTube to create โฆ here is an RJM Programming one (channel)
As you might expect from the explanation above, you need to sign up for a Google YouTube API Developer Key to glean information about a YouTube โchannelโ of interest, but โplaylistsโ are that little bit more public, and you can point at a YouTube โplaylistโ of interest via a URL like โฆ
<a target=_blank title='Google Developers playlist' href='https://www.youtube.com/watch?v=URuOw1Pi58Y&list=LLtVd0c0tGXuTSbU5d8cSBUg'>https://www.youtube.com/watch?v=URuOw1Pi58Y&list=LLtVd0c0tGXuTSbU5d8cSBUg</a>
โฆ and so, with that in mind, we donโt try to reinvent wheels here with our new functionality of โplaylistโ inclusion today, but simply access one of those URLs like above via an API call like โฆ
var yturlis=player.getVideoUrl();
โฆ and let the brilliance of the YouTube API add all this great โlinked (video) listโ functionality (you can see working in todayโs tutorialpicture) to our (still only) HTML and Javascript web application you could call stop_start_youtube
html, changed from yesterday in thisway with its live
run link for you to try this โplaylistโ functionality out for yourself.
Previous relevant YouTube API Start and Stop Resizing Tutorial is shown below.
We continue with our YouTube API for Iframe embedded videos today building on yesterdayโs YouTube API Start and Stop Synchronizing Tutorial as shown below.
The matters weโd like to direct your attention to today are โฆ
- width and height of YouTube embedded Iframe player
- audio volume
- video playback rate
- video playback quality
โฆ respectively involving API reference to โฆ
- width and height of YouTube embedded Iframe player are parameters for the โPlayerโ constructor, and we donโt use it, but you can dynamically change width and height via methods are discussed under โSetting the player sizeโ
- audio volume methods are discussed under โChanging the player volumeโ
- video playback rate methods are discussed under โSetting the playback rateโ
- video playback quality methods are discussed under โPlayback qualityโ
Hereโs the updated HTML and Javascript code you could call stop_start_youtubehtm, changed from yesterday in thisway with its live
run link for you to try these new ideas yourself.
Previous relevant YouTube API Start and Stop Synchronizing Tutorial is shown below.
YouTube is a very well known, and the most popular video watching website on the โnetโ, owned by Google, and yesterday we started on a quest to do some work with the great YouTube API for Iframe embedded videos when we presented YouTube API Start and Stop Primer Tutorial as shown below.
We are not alone on this quest, we are sure, and today we use the API to sequence YouTube videos by adding to yesterdayโs functionality with โฆ
- use of an HTML form element (method=GET action=./stop_start_youtube.htm target=_self) to collect follow up YouTube video ids the user wants to play
- catering for the user pausing the video, a practicality that could help give the user time to enter large numbers of follow up video โฆ binge anyone?!
The method=GET is fine because โฆ
- YouTube video ids are quite short and so many can be stored in a URL without overshooting the web server length limits here โฆ and that means โฆ
- method=GET ensures all information is contained in document.URL and entirely processed by Javascript client methodologies without the method=POST complications of involving a serverside program like PHP in this web applicationโs architecture
The action=./stop_start_youtube.htm target=_self combination means that the change of video becomes pretty seamless, into the same original webpage of interest, using the same original HTML and Javascript codebase of interest.
And so the mechanism for making use of this optional video synchronizing, or sequencing, functionality is to answer the video duration question with a negative number reflecting the total number of videos to play, so, again, nothing radical has changed with the look of the web application as it starts as yesterdayโs functionality is still pushed as the default functionality ideas of use.
Hereโs the HTML and Javascript code you could call stop_start_youtubehtm, changed from yesterday in thisway with its live
run link for you to try this out yourself.
Previous relevant YouTube API Start and Stop Primer Tutorial is shown below.
We have a burgeoning Karaoke web application idea for you today, as with WordPress 4.1.1โs Karaoke via YouTube API in Iframe Primer Tutorial, that builds on what we last left off with at YouTube API Iframe Synchronicity Resizing Tutorial as shown below.
We use the HTML code off that tutorial and tweak it a bit to be able to play a YouTube video at a designated place via the great YouTube API for Iframe embedded videos.
This ability means a user can plan ahead for bits where the YouTube clip is played as is, and bits of silence where the user or users can sing along to bits that are very well known.
Todayโs featured execution of the resultant HTML and Javascript (grand)parent karaoke_youtube_apihtml web application has this generic
live run but as a special treat for any โsweet green icingโ fans โฆ know I am โฆ the link below waits 3 times for you to sing โฆ
Someone left the cake out in the rain
I donโt think that I can take it
Cause it took so long to bake it
And Iโll never have that recipe again
Oh, nooo!
Macarthur Park Karaoke is shown below โฆ
We want to thank this useful link for their great help with extracting the YouTube video title, necessary today, to give the user context about what they โmightโ be singing along to โฆ depending on their talent of course?!
So what once was, and still is, a parent (HTML/Javascript you could call stop_start_youtubehtml changes today in thisway and still has its live
run) becomes the child to the new Karaoke (grand)parent above.
Todayโs web application has a CSS โsubthemeโ today that exemplifies the usefulness of the CSS style properties โฆ
display:inline; visibility: hidden;
โฆ rather than just โฆ
display:none;
โฆ when it comes to reshowing HTML elements that are preferably โinlineโ by nature โฆ ie. youโre trying to keep them on the same horizontal line of elements. This first method sort of ensures that CSS โspaceโ is left aside, even when the elements are invisible, so that when you โJavascript DOMโ make then to be visible again via statements like โฆ
document.getElementById('dkaraoke').style.visibility='visible';
โฆ this results in a much better โinlineโ result than does โฆ
document.getElementById('dkaraoke').style.display='inline'; // or 'block' or any other idea
Weโll be refining this Karaoke web application as time goes on, and hope you flex your singing voice trying it out yourself.
Previous relevant YouTube API Iframe Synchronicity Resizing Tutorial is shown below.
Todayโs work concerns dynamic resize of HTML iframe child elements that could resize themselves because their parent HTML elements have changed size via user intervention.
We want to show you this today to talk a bit about the CSS properties of โฆ
- width
- height
โฆ and about the usefulness of โฆ
โฆ to calculate the width or height, in pixels, of an HTML element, in our case that either โฆ
- has no width nor height defined
- has a width and/or height defined as a percentage
So, think you will agree, that if you were following our current thread of tutorials yesterday, youโd have agreed, especially if you viewed it on a laptop, that the web application involving the โgrid of televisionโ HTML iframe elements could benefit from a bit more room given over to the HTML table housing the โgrid of televisionโ HTML iframe elements. That is a pretty simple CSS change as per the bold bit below โฆ
<style>
td { margin: 0 0 0 0; background-color: white; }
div { margin: 0 0 0 0; }
iframe { margin-left: 0px; }
table { width: 100%; height: 90%; }
</style>
โฆ and then to change from this static arrangement to a user interventional additional control to width and height management how about the PHP bold bits below โฆ
<?php
if (strpos($p1, ".") !== false) {
echo "\n window.open('//www.youtube.com/watch?v=K5StTXQofqs', '_blank', 'top=50,left=50,width=500,height=500'); \n";
} else {
echo "\n document.getElementById('myh1').innerHTML=\"Enjoy the Videos ... <span id=sw><a style=color:red; onclick=rew(-1);>-</a>Width (100%)<a style=color:green; onclick=rew(1);>+</a></span> <span id=sh><a style=color:red; onclick=reh(-1);>-</a>Height (90%)<a style=color:green; onclick=reh(1);>+</a></span> ... Thanks <a target=_blank title='YouTube' href='//www.youtube.com'>YouTube</a>\"; \n";
}
?>
โฆ and so this has the user in the โknowโ but what about the child โgrid of televisionโ HTML iframe elements being brought into the loop. This can be achieved in the external Javascript involving, for the most part, a new function that runs constantly looking out for user interventional changes to the width and height of the parentโs HTML table element via โฆ
function checkdim() { // dynamic resizer of HTML iframe elements via examination of parent div elements
var jv=1, dw="100%", dh="100%", ielem, wassrc='', wass;
var elem1=document.getElementById('ptable');
dh="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("height").replace('px','').replace('%',''));
dw="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("width").replace('px','').replace('%',''));
if (Math.abs(eval(dw) - eval(ptablew) + eval(dh) - eval(ptableh)) > 0.9) { // change to parent div elements detected
ptablew=dw;
ptableh=dh;
wass=document.getElementById('myh1').innerHTML.split('~');
document.getElementById('myh1').innerHTML=eval(dw) + ',' + eval(ptablew) + ',' + eval(dh) + ',' + eval(ptableh) + ' ~' + wass[1];
//alert(Math.abs(eval(dw) - eval(ptablew) + eval(dh) - eval(ptableh)));
for (jv=1; jv<=9; jv++) {
elem1=document.getElementById(elarr[eval(-1 + jv)]);
ielem=document.getElementById('if' + jv);
wassrc=ielem.src;
wass=wassrc.split('&this=');
if (wass.length > 1) {
dh=eval(ptableh / 3); //="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("height").replace('px',''));
dw=eval(ptablew / 3); //="" + eval(window.getComputedStyle(elem1, null).getPropertyValue("width").replace('px',''));
warr[eval(-1 + jv)]=eval(dw);
harr[eval(-1 + jv)]=eval(dh);
//if (jv == 1) alert("//www.rjmprogramming.com.au/HTMLCSS/stop_start_youtube.html?width=" + dw + "&height=" + dh + "&this=" + wass[1]);
ielem.src="//www.rjmprogramming.com.au/HTMLCSS/stop_start_youtube.html?width=" + dw + "&height=" + dh + "&this=" + wass[1];
}
}
} else {
wass=document.getElementById('myh1').innerHTML.split('~');
document.getElementById('myh1').innerHTML=eval(dw) + ',' + eval(ptablew) + ',' + eval(dh) + ',' + eval(ptableh) + ' ~' + wass[1];
}
setTimeout(checkdim,5000);
}
โฆ which gets us to changed programming source code โฆ
- Supervisor HTML/Javascript you could call stop_start_youtube
html doesnโt change today and still has its live
run link โฆ of โฆ
- Called PHP you could call reveal_div
php, changed in thisway โฆ as well as โฆ
- Called HTML and Javascript you could call reveal_div
html is unchanged โฆ but โฆ
- Called External Javascript you could call longhover_sup
js, changed in thisway to allow for user resizable YouTube video media usage in that โgrid of televisionsโ mode of usage, via the YouTube API for Iframe embedded videos.
Again, weโll leave you with a liverun that helped piece together todayโs tutorial picture, an improvement on โroom to moveโ compared to yesterday, we hope you agree?
Previous relevant YouTube API Iframe Synchronicity Tutorial is shown below.
Do you ever go into an electronics or electrical appliance store into the television section, and see all those television sets playing not always the same channel at once? Mesmerising, huh?
Have seen this also, in Real Estate windows. Well, today, we allow up to 9 YouTube videos and/or playlists to be played at once, just to give you a chance to โblow your mindโ, especially for those expert multi-taskers amongst us.
What we called on to facilitate this functionality today, building on the existing work up to YouTube API Video Playlist Tutorial, as shown below, is โฆ
- Our recent YouTube API Video Playlist Tutorial โฆ and โฆ
- Our not so recent External Javascript Genericity Follow Up Tutorial
So this HTML iframe โgrid of televisionโ functionality, to us, puts it in a โsynchronizationโ category of tutorial, and because of the homogeneity of the media presentation โฆ ie. we use YouTube videos and the YouTube API with 1 above โฆ we think our synchronicities could work quite well, with less hit and miss, compared to previous efforts weโve put in at this blog with non-homogeneous media types and presentations. It has to be said, also, that that is the strength of using APIs to help with your software, as they tend to unify concepts, perhaps restricting what is allowed, to focus on a known set of inputs and outputs โฆ EOR โฆ end of rave.
We feel a behove coming on โฆ atchoobehove โฆ thatโs better โฆ and so it behoves us to show you programming source code โฆ
- Supervisor HTML/Javascript you could call stop_start_youtube
html, changed in thisway with its live
run link โฆ of โฆ
- Called PHP you could call reveal_div
php is unchanged โฆ as well as โฆ
- Called HTML and Javascript you could call reveal_div
html is unchanged โฆ but โฆ
- Called External Javascript you could call longhover_sup
js, changed in thisway to allow for YouTube video media usage via the YouTube API for Iframe embedded videos.
Weโll leave you with a liverun that helped piece together todayโs tutorial picture.
Previous relevant YouTube API Video Playlist Tutorial is shown below.
Playlists are the topic we hone in on today with the continuation of our YouTube API for Iframe embedded videos โknowledge questโ today, as with WordPress 4.1.1โs YouTube API Video Playlist Tutorial, building on yesterdayโs YouTube API Start and Stop Resizing Tutorial as shown below.
Perhaps your first exposure to a โplaylistโ was with the iTunes playlists, as receptacles for your favourite music in the form of a song list? But โplaylistโ has morphed into so much more than with those early โheadyโ days of the iPod we talked about with the Kinesthetic iPod Learning Primer Tutorial, and we think of it today in terms of YouTube playlists of videos. Think playlist, think media.
The fact is, to us, looking at YouTube, there are two main sources for the concept of โreceptacleโ or โcontainerโ or โcollectionโ of videos, that being โฆ
- a playlist โฆ which can be created by anyone, as used by me to create the Nala and Luna โplaylistโ
- a channel โฆ which is a concept you use to upload content to YouTube, and you register with YouTube to create โฆ here is an RJM Programming one (channel)
As you might expect from the explanation above, you need to sign up for a Google YouTube API Developer Key to glean information about a YouTube โchannelโ of interest, but โplaylistsโ are that little bit more public, and you can point at a YouTube โplaylistโ of interest via a URL like โฆ
<a target=_blank title='Google Developers playlist' href='https://www.youtube.com/watch?v=URuOw1Pi58Y&list=LLtVd0c0tGXuTSbU5d8cSBUg'>https://www.youtube.com/watch?v=URuOw1Pi58Y&list=LLtVd0c0tGXuTSbU5d8cSBUg</a>
โฆ and so, with that in mind, we donโt try to reinvent wheels here with our new functionality of โplaylistโ inclusion today, but simply access one of those URLs like above via an API call like โฆ
var yturlis=player.getVideoUrl();
โฆ and let the brilliance of the YouTube API add all this great โlinked (video) listโ functionality (you can see working in todayโs tutorialpicture) to our (still only) HTML and Javascript web application you could call stop_start_youtube
html, changed from yesterday in thisway with its live
run link for you to try this โplaylistโ functionality out for yourself.
Previous relevant YouTube API Start and Stop Resizing Tutorial is shown below.
We continue with our YouTube API for Iframe embedded videos today building on yesterdayโs YouTube API Start and Stop Synchronizing Tutorial as shown below.
The matters weโd like to direct your attention to today are โฆ
- width and height of YouTube embedded Iframe player
- audio volume
- video playback rate
- video playback quality
โฆ respectively involving API reference to โฆ
- width and height of YouTube embedded Iframe player are parameters for the โPlayerโ constructor, and we donโt use it, but you can dynamically change width and height via methods are discussed under โSetting the player sizeโ
- audio volume methods are discussed under โChanging the player volumeโ
- video playback rate methods are discussed under โSetting the playback rateโ
- video playback quality methods are discussed under โPlayback qualityโ
Hereโs the updated HTML and Javascript code you could call stop_start_youtubehtm, changed from yesterday in thisway with its live
run link for you to try these new ideas yourself.
Previous relevant YouTube API Start and Stop Synchronizing Tutorial is shown below.
YouTube is a very well known, and the most popular video watching website on the โnetโ, owned by Google, and yesterday we started on a quest to do some work with the great YouTube API for Iframe embedded videos when we presented YouTube API Start and Stop Primer Tutorial as shown below.
We are not alone on this quest, we are sure, and today we use the API to sequence YouTube videos by adding to yesterdayโs functionality with โฆ
- use of an HTML form element (method=GET action=./stop_start_youtube.htm target=_self) to collect follow up YouTube video ids the user wants to play
- catering for the user pausing the video, a practicality that could help give the user time to enter large numbers of follow up video โฆ binge anyone?!
The method=GET is fine because โฆ
- YouTube video ids are quite short and so many can be stored in a URL without overshooting the web server length limits here โฆ and that means โฆ
- method=GET ensures all information is contained in document.URL and entirely processed by Javascript client methodologies without the method=POST complications of involving a serverside program like PHP in this web applicationโs architecture
The action=./stop_start_youtube.htm target=_self combination means that the change of video becomes pretty seamless, into the same original webpage of interest, using the same original HTML and Javascript codebase of interest.
And so the mechanism for making use of this optional video synchronizing, or sequencing, functionality is to answer the video duration question with a negative number reflecting the total number of videos to play, so, again, nothing radical has changed with the look of the web application as it starts as yesterdayโs functionality is still pushed as the default functionality ideas of use.
Hereโs the HTML and Javascript code you could call stop_start_youtubehtm, changed from yesterday in thisway with its live
run link for you to try this out yourself.
Previous relevant YouTube API Start and Stop Primer Tutorial is shown below.
YouTube is a very well known, and the most popular video watching website on the โnetโ.
It is no surprise that programmers and developers everywhere are interested in interfacing to it. We interface to it today, just purely with client side HTML and Javascript and the wonderful YouTube API for Iframe embedded videos reference website, the information for which we got directed to via this useful link โฆ so thanks, everybody.
Using the YouTube API means youโve got access to information, such as โฆ
- the total length of the video clip
- the accumulated length you have watched
โฆ without which it is hard to do what we want to do today. And that is simply to ask you for โฆ
- YouTube video identifier
- how many seconds do you want to use to start and stop your way through the viewing โฆ -1 here letโs you view the whole video in one session
This exercise was helped enormously by the great example code at the YouTube API for Iframe embedded videos reference website.
Hereโs the HTML and Javascript code you could call stop_start_youtubehtml with its live
run link, as well.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.