SlideShare a Scribd company logo
1 of 16
Download to read offline
July 10, 2012
StoryCode Immersion #5
  Popcorn.js Deep Dive
AGENDA
โ€ข Popcorn.js Overview - 45 Minutes

โ€ข Review Code Samples / Work on your own - 45 Minutes

โ€ข #storycode
OVERVIEW
โ€ข Popcorn makes video work like the web - an event
  system for HTML5 media.

โ€ข jQuery for video/audio

โ€ข Use video, audio and other media to control elements of
  a webpage

โ€ข Media becomes the โ€œconductorโ€ of interactive
  experiences

โ€ข HTML5 Media Framework - written in Javascript

โ€ข Created by Mozilla - still very much in development
POPCORN.JS FRAMEWORK
โ€ข Uses HTMLMediaElement properties, methods, and
  events

  โ€ข Properties - like autoplay, buffered, controls

  โ€ข Methods - like play(), pause(), load()

  โ€ข Events - like ended, stalled,

โ€ข Normalizes them into an easy to learn API

โ€ข Simple Plugin system for extensibility
PLAYERS
โ€ข Base Player - HTML5 Video Element

โ€ข Vimeo - Uses the Vimeo Player / Vimeo Video IDs

โ€ข YouTube - Use the YouTube Player / YouTube Video IDs
PLUGINS
โ€ข Plugins add additional functionality to Popcorn video

โ€ข Highlights include:
  Attribution, Code, Facebook, Flickr, GoogleFeed,
  GoogleMap, Image, LinkedIn, Pause, Subtitle,
  Tagthisperson, Timeline, Tumblr, Twitter, Webpage, and
  Wikipedia,

โ€ข Pretty simple to create your own
SAMPLE
โ€ข Time-based animations conducted by the video - using a
  YouTube Video and the Image and Tagthisperson
  plugins.

โ€ข http://www.storycode.org/immersions/popcorn/
  popcorn_simple_demo/index.htm

โ€ข Download for your own use:
  http://www.storycode.org/immersions/popcorn/
  popcorn_simple_demo.zip
A CLOSER LOOK - THE HTML
<!doctype html>
<html lang="en">
<head>
            <meta charset="utf-8">
            <title>StoryCode | Popcorn Demo</title>
            <link rel="stylesheet" href="css/style.css">
            <script src="scripts/popcorn.js"></script>
            <script src="scripts/script.js"></script>
</head>
<body>
            <section id="images">
            </section>


            <section id="videoPanel">
                        <div id="video" style="width:630px;height:472px;"></div>
            </section>


            <section id="tags">
            </section>
</body>
</html>
A CLOSER LOOK - THE FILES
<link rel="stylesheet" href="css/style.css">
โ€ข   Our CSS file that controls the layout of the three
    โ€œsectionsโ€ (images, videoPanel, and tags).


<script src="scripts/popcorn.js"></script>
โ€ข   This is the core popcorn.js file that contains the popcorn media
    framework. Unless you are doing heavy customizing you wonโ€™t
    need to edit this.


<script src="scripts/script.js"></script>
โ€ข   This is the custom javascript file that is specific to our demo.
A CLOSER LOOK
<script src="scripts/popcorn.js"></script>

โ€ข You can use just the core or the fully loaded Popcorn.js
  (includes modules, effects, plugins, players, parsers, etc).
  Alternatively, you can create your own Popcorn.js script
  using build tool (http://mozillapopcorn.org/build-tool/).

โ€ข All Popcorn.js code is available in both production
  (minified) and development (source) form - http://
  mozillapopcorn.org/popcornjs/
A CLOSER LOOK - SCRIPT.JS
var pop = Popcorn.youtube( "#video", "http://www.youtube.com/watch?
v=sFqBp3rfTTc", { pauseOnLinkClicked: true } );

โ€ข   This instantiates a Popcorn object loading the YouTube Video in my #video Div. The
    final parameter pauses the video if a link is clicked.

pop.image({
    start: 1,
    end: 10,
    target: 'images',
    href: 'http://www.gbv.com/',
    src: 'img/pic1.jpg'
});
โ€ข   This is the format for the images that get spawned by the video. This image is
    displayed in the โ€œimagesโ€ section from 1 second to 10 seconds. It links to the
    specified URL.

โ€ข   Check out the subsequent images that are spawned and their timing.
A CLOSER LOOK - SCRIPT.JS
pop.tagthisperson({
    start: 5,
    target: 'tags',
    person: 'Guided By Voices',
    href: 'http://www.gbv.com/'
});
โ€ข   This is the format for the โ€œtagsโ€ that get spawned by the video.
    This tag is displayed in the โ€œtagsโ€ section at 5 seconds. It links to
    the specified URL.

โ€ข   Check out the subsequent tags that are spawned and their timing.

pop.play();

โ€ข   Finally we call the play() method which auto-plays the video after
    the page loads.
OTHER EXAMPLES
http://www.storycode.org/immersions/popcorn/
popcorn_demo/index.htm

โ€ข Uses the Image, GoogleMaps, Twitter, GoogleFeed,
  Wikipedia, Facebook, and Tagthisperson plugins.



http://popcornjs.org/code/demos/semantic_video/

โ€ข Pretty tricked out example of what is possible with
  Popcorn.
HINTS
โ€ข When downloading something from Mozilla - use a
  Mozilla browser like Firefox


โ€ข Not always easy to edit locally, you may need to develop
  on a web server if you are doing anything that is
  somewhat advanced
RESOURCES
โ€ข popcornjs.org - the hub for all information -
  documentation, plugins, demos, community, downloads


โ€ข mozillapopcorn.org - includes Popcorn Maker - an online
  authoring environment (can be buggy)


โ€ข Popcorn on Twitter - @popcornjs
CONTACT
mike@storycode.org
aina@storycode.org

www.storycode.org
 @storycodeorg

More Related Content

What's hot

Developer Training for 23 Video
Developer Training for 23 VideoDeveloper Training for 23 Video
Developer Training for 23 Video
Steffen
ย 
12 ways to maximise your blog content checklist
12 ways to maximise your blog content checklist12 ways to maximise your blog content checklist
12 ways to maximise your blog content checklist
Data-Hive.co.uk
ย 

What's hot (20)

wp-cli
wp-cliwp-cli
wp-cli
ย 
Youtube api at Glance
Youtube api at GlanceYoutube api at Glance
Youtube api at Glance
ย 
Introduction to Jetpack- WordCamp Chicago 2014
Introduction to Jetpack- WordCamp Chicago 2014Introduction to Jetpack- WordCamp Chicago 2014
Introduction to Jetpack- WordCamp Chicago 2014
ย 
WordCamp Raleigh WordPress & Social Media Integration
WordCamp Raleigh WordPress & Social Media IntegrationWordCamp Raleigh WordPress & Social Media Integration
WordCamp Raleigh WordPress & Social Media Integration
ย 
WordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, LondonWordPress Optimization & Security - LAC 2013, London
WordPress Optimization & Security - LAC 2013, London
ย 
Beginning WordPress Plugin Development
Beginning WordPress Plugin DevelopmentBeginning WordPress Plugin Development
Beginning WordPress Plugin Development
ย 
Powering Music Sites with WordPress
Powering Music Sites with WordPressPowering Music Sites with WordPress
Powering Music Sites with WordPress
ย 
Html audio video
Html audio videoHtml audio video
Html audio video
ย 
Intro to HTML5 audio tag
Intro to HTML5 audio tagIntro to HTML5 audio tag
Intro to HTML5 audio tag
ย 
Intro to WordPress Plugin Development
Intro to WordPress Plugin DevelopmentIntro to WordPress Plugin Development
Intro to WordPress Plugin Development
ย 
HTML5 audio & video
HTML5 audio & videoHTML5 audio & video
HTML5 audio & video
ย 
WordcampNYC 2010 - Wordpress & Multimedia (Updated)
WordcampNYC 2010 - Wordpress & Multimedia (Updated)WordcampNYC 2010 - Wordpress & Multimedia (Updated)
WordcampNYC 2010 - Wordpress & Multimedia (Updated)
ย 
WordPress Realtime - WordCamp Sรฃo Paulo 2015
WordPress Realtime - WordCamp Sรฃo Paulo 2015WordPress Realtime - WordCamp Sรฃo Paulo 2015
WordPress Realtime - WordCamp Sรฃo Paulo 2015
ย 
HTML 5: Audio And Video
HTML 5: Audio And VideoHTML 5: Audio And Video
HTML 5: Audio And Video
ย 
Embed with Moodle
Embed with Moodle Embed with Moodle
Embed with Moodle
ย 
Getting Started With Wordpress
Getting Started With WordpressGetting Started With Wordpress
Getting Started With Wordpress
ย 
WordPress Power Tips by Lorelle VanFossen
WordPress Power Tips by Lorelle VanFossenWordPress Power Tips by Lorelle VanFossen
WordPress Power Tips by Lorelle VanFossen
ย 
Developer Training for 23 Video
Developer Training for 23 VideoDeveloper Training for 23 Video
Developer Training for 23 Video
ย 
How to be a Super Super-Admin - WCMTL 2014
How to be a Super Super-Admin - WCMTL 2014How to be a Super Super-Admin - WCMTL 2014
How to be a Super Super-Admin - WCMTL 2014
ย 
12 ways to maximise your blog content checklist
12 ways to maximise your blog content checklist12 ways to maximise your blog content checklist
12 ways to maximise your blog content checklist
ย 

Similar to StoryCode Immersion #5 - Popcorn.JS Deep Dive

[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3
Christopher Schmitt
ย 
HTML5 Video Presentation
HTML5 Video PresentationHTML5 Video Presentation
HTML5 Video Presentation
sith33
ย 
[In Control 2010] HTML5
[In Control 2010] HTML5[In Control 2010] HTML5
[In Control 2010] HTML5
Christopher Schmitt
ย 
WebGL Awesomeness
WebGL AwesomenessWebGL Awesomeness
WebGL Awesomeness
Stephan Seidt
ย 
Upgrade to HTML5 Video
Upgrade to HTML5 VideoUpgrade to HTML5 Video
Upgrade to HTML5 Video
steveheffernan
ย 

Similar to StoryCode Immersion #5 - Popcorn.JS Deep Dive (20)

Looking into HTML5 + CSS3
Looking into HTML5 + CSS3Looking into HTML5 + CSS3
Looking into HTML5 + CSS3
ย 
[edUiconf] HTML5 does all thatโ€ฆ and i can haz cheeseburger? You bet!
[edUiconf] HTML5 does all thatโ€ฆ and i can haz cheeseburger? You bet![edUiconf] HTML5 does all thatโ€ฆ and i can haz cheeseburger? You bet!
[edUiconf] HTML5 does all thatโ€ฆ and i can haz cheeseburger? You bet!
ย 
[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3[amigos] HTML5 and CSS3
[amigos] HTML5 and CSS3
ย 
HTML5 Design
HTML5 DesignHTML5 Design
HTML5 Design
ย 
HTML5 video & Amazon elastic transcoder - FCIP August 2014
HTML5 video & Amazon elastic transcoder - FCIP August 2014HTML5 video & Amazon elastic transcoder - FCIP August 2014
HTML5 video & Amazon elastic transcoder - FCIP August 2014
ย 
The Rich Standard: Getting Familiar with HTML5
The Rich Standard: Getting Familiar with HTML5The Rich Standard: Getting Familiar with HTML5
The Rich Standard: Getting Familiar with HTML5
ย 
Web Apps
Web AppsWeb Apps
Web Apps
ย 
HTML5 Video Presentation
HTML5 Video PresentationHTML5 Video Presentation
HTML5 Video Presentation
ย 
[In Control 2010] HTML5
[In Control 2010] HTML5[In Control 2010] HTML5
[In Control 2010] HTML5
ย 
Responsive Videos, mehr oder weniger
Responsive Videos, mehr oder wenigerResponsive Videos, mehr oder weniger
Responsive Videos, mehr oder weniger
ย 
Html5 - audio and video tags
Html5 - audio and video tagsHtml5 - audio and video tags
Html5 - audio and video tags
ย 
Speak The Web: The HTML5 Experiments
Speak The Web: The HTML5 ExperimentsSpeak The Web: The HTML5 Experiments
Speak The Web: The HTML5 Experiments
ย 
[Vietnam Mobile Day 2013] - How to build video streaming server in 15 minutes
[Vietnam Mobile Day 2013] - How to build video streaming server in 15 minutes[Vietnam Mobile Day 2013] - How to build video streaming server in 15 minutes
[Vietnam Mobile Day 2013] - How to build video streaming server in 15 minutes
ย 
Vietnam Mobile Day 2013: How to build video streaming server in 15 mins
Vietnam Mobile Day 2013: How to build video streaming server in 15 minsVietnam Mobile Day 2013: How to build video streaming server in 15 mins
Vietnam Mobile Day 2013: How to build video streaming server in 15 mins
ย 
Multimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audio
ย 
WebGL Awesomeness
WebGL AwesomenessWebGL Awesomeness
WebGL Awesomeness
ย 
Upgrade to HTML5 Video
Upgrade to HTML5 VideoUpgrade to HTML5 Video
Upgrade to HTML5 Video
ย 
GDD HTML5, Flash, and the Battle for Faster Cat Videos
GDD HTML5, Flash, and the Battle for Faster Cat VideosGDD HTML5, Flash, and the Battle for Faster Cat Videos
GDD HTML5, Flash, and the Battle for Faster Cat Videos
ย 
Php2pdf
Php2pdfPhp2pdf
Php2pdf
ย 
Drupal Video Presentation
Drupal Video PresentationDrupal Video Presentation
Drupal Video Presentation
ย 

More from storycode

StoryCode Immersion #2 - Project Funding
StoryCode Immersion #2 - Project FundingStoryCode Immersion #2 - Project Funding
StoryCode Immersion #2 - Project Funding
storycode
ย 

More from storycode (12)

Story Hackathon - StoriesLab Presentation
Story Hackathon - StoriesLab PresentationStory Hackathon - StoriesLab Presentation
Story Hackathon - StoriesLab Presentation
ย 
StoryCode DIY Days Presentation - Creative Coding
StoryCode DIY Days Presentation - Creative CodingStoryCode DIY Days Presentation - Creative Coding
StoryCode DIY Days Presentation - Creative Coding
ย 
StoryWorld 2012 Story Hack Presentation
StoryWorld 2012 Story Hack PresentationStoryWorld 2012 Story Hack Presentation
StoryWorld 2012 Story Hack Presentation
ย 
StoryCode Immersion #6 - Immersive Media Project Pitching
StoryCode Immersion #6 - Immersive Media Project PitchingStoryCode Immersion #6 - Immersive Media Project Pitching
StoryCode Immersion #6 - Immersive Media Project Pitching
ย 
StoryCode Immersion #4 - Presentation 1
StoryCode Immersion #4 - Presentation 1StoryCode Immersion #4 - Presentation 1
StoryCode Immersion #4 - Presentation 1
ย 
StoryCode Immersion #4 - Presentation 2
StoryCode Immersion #4 - Presentation 2 StoryCode Immersion #4 - Presentation 2
StoryCode Immersion #4 - Presentation 2
ย 
StoryCode Immersion #3 - Presentation 2 How To Work With a Technologist
StoryCode Immersion #3 - Presentation 2 How To Work With a TechnologistStoryCode Immersion #3 - Presentation 2 How To Work With a Technologist
StoryCode Immersion #3 - Presentation 2 How To Work With a Technologist
ย 
StoryCode Immersion #3 - Presentation 1 Technology Process
StoryCode Immersion #3 - Presentation 1 Technology ProcessStoryCode Immersion #3 - Presentation 1 Technology Process
StoryCode Immersion #3 - Presentation 1 Technology Process
ย 
Story Hack Presentation - Vile Inc.
Story Hack Presentation - Vile Inc.Story Hack Presentation - Vile Inc.
Story Hack Presentation - Vile Inc.
ย 
StoryCode Immersion #2 - Project Funding
StoryCode Immersion #2 - Project FundingStoryCode Immersion #2 - Project Funding
StoryCode Immersion #2 - Project Funding
ย 
Greg Trefry's Presentation at StoryCode March 2012 Forum
Greg Trefry's Presentation at StoryCode March 2012 Forum Greg Trefry's Presentation at StoryCode March 2012 Forum
Greg Trefry's Presentation at StoryCode March 2012 Forum
ย 
StoryCode Tech Immersion 1
StoryCode Tech Immersion 1StoryCode Tech Immersion 1
StoryCode Tech Immersion 1
ย 

Recently uploaded

Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...
Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...
Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...
ritikasharma
ย 
Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448
Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448
Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448
ont65320
ย 
Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...
Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...
Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...
ritikasharma
ย 
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
rahim quresi
ย 
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
Shivani Pandey
ย 
Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...
Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...
Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...
ritikasharma
ย 
Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...
Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...
Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...
ritikasharma
ย 
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
rahim quresi
ย 
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
ritikasharma
ย 
Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...
Shivani Pandey
ย 
Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...
ritikasharma
ย 
Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...
Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...
Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...
ritikasharma
ย 
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
ritikasharma
ย 
Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034 Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034  Independe...Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034  Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034 Independe...
Shivani Pandey
ย 

Recently uploaded (20)

Hire ๐Ÿ’• 8617697112 North Sikkim Call Girls Service Call Girls Agency
Hire ๐Ÿ’• 8617697112 North Sikkim Call Girls Service Call Girls AgencyHire ๐Ÿ’• 8617697112 North Sikkim Call Girls Service Call Girls Agency
Hire ๐Ÿ’• 8617697112 North Sikkim Call Girls Service Call Girls Agency
ย 
Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...
Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...
Hotel And Home Service Available Kolkata Call Girls Lake Town โœ” 6297143586 โœ”C...
ย 
Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448
Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448
Beautiful ๐Ÿ˜‹ Call girls in Lahore 03210033448
ย 
Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...
Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...
Behala ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Ready ...
ย 
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Sonagachi ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
ย 
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP Ganderbal Call Girls
ย 
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034  Independent Chenna...
Verified Trusted Call Girls Ambattur Chennai โœ”โœ”7427069034 Independent Chenna...
ย 
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
โคPersonal Whatsapp Number Keylong Call Girls 8617697112 ๐Ÿ’ฆโœ….
ย 
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
๐Ÿ“ž Contact Number 8617697112 VIP East Sikkim Call Girls
ย 
Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...
Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...
Book Sex Workers Available Kolkata Call Girls Service Airport Kolkata โœ” 62971...
ย 
Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...
Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...
Hotel And Home Service Available Kolkata Call Girls Howrah โœ” 6297143586 โœ”Call...
ย 
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
๐“€คCall On 6297143586 ๐“€ค Ultadanga Call Girls In All Kolkata 24/7 Provide Call W...
ย 
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
Hotel And Home Service Available Kolkata Call Girls Diamond Harbour โœ” 6297143...
ย 
Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...
Model Call Girls In Velappanchavadi WhatsApp Booking 7427069034 call girl ser...
ย 
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRLBhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
Bhimtal โคCALL GIRL 8617697112 โคCALL GIRLS IN Bhimtal ESCORT SERVICEโคCALL GIRL
ย 
Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...
Top Rated Kolkata Call Girls Dum Dum โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex S...
ย 
Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...
Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...
Hotel And Home Service Available Kolkata Call Girls Park Street โœ” 6297143586 ...
ย 
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Manjri Call Me 7737669865 Budget Friendly No Advance Booking
ย 
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
Jodhpur Park ( Call Girls ) Kolkata โœ” 6297143586 โœ” Hot Model With Sexy Bhabi ...
ย 
Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034 Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034  Independe...Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034  Independe...
Verified Trusted Call Girls Singaperumal Koil Chennai โœ”โœ”7427069034 Independe...
ย 

StoryCode Immersion #5 - Popcorn.JS Deep Dive

  • 1. July 10, 2012 StoryCode Immersion #5 Popcorn.js Deep Dive
  • 2. AGENDA โ€ข Popcorn.js Overview - 45 Minutes โ€ข Review Code Samples / Work on your own - 45 Minutes โ€ข #storycode
  • 3. OVERVIEW โ€ข Popcorn makes video work like the web - an event system for HTML5 media. โ€ข jQuery for video/audio โ€ข Use video, audio and other media to control elements of a webpage โ€ข Media becomes the โ€œconductorโ€ of interactive experiences โ€ข HTML5 Media Framework - written in Javascript โ€ข Created by Mozilla - still very much in development
  • 4. POPCORN.JS FRAMEWORK โ€ข Uses HTMLMediaElement properties, methods, and events โ€ข Properties - like autoplay, buffered, controls โ€ข Methods - like play(), pause(), load() โ€ข Events - like ended, stalled, โ€ข Normalizes them into an easy to learn API โ€ข Simple Plugin system for extensibility
  • 5. PLAYERS โ€ข Base Player - HTML5 Video Element โ€ข Vimeo - Uses the Vimeo Player / Vimeo Video IDs โ€ข YouTube - Use the YouTube Player / YouTube Video IDs
  • 6. PLUGINS โ€ข Plugins add additional functionality to Popcorn video โ€ข Highlights include: Attribution, Code, Facebook, Flickr, GoogleFeed, GoogleMap, Image, LinkedIn, Pause, Subtitle, Tagthisperson, Timeline, Tumblr, Twitter, Webpage, and Wikipedia, โ€ข Pretty simple to create your own
  • 7. SAMPLE โ€ข Time-based animations conducted by the video - using a YouTube Video and the Image and Tagthisperson plugins. โ€ข http://www.storycode.org/immersions/popcorn/ popcorn_simple_demo/index.htm โ€ข Download for your own use: http://www.storycode.org/immersions/popcorn/ popcorn_simple_demo.zip
  • 8. A CLOSER LOOK - THE HTML <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>StoryCode | Popcorn Demo</title> <link rel="stylesheet" href="css/style.css"> <script src="scripts/popcorn.js"></script> <script src="scripts/script.js"></script> </head> <body> <section id="images"> </section> <section id="videoPanel"> <div id="video" style="width:630px;height:472px;"></div> </section> <section id="tags"> </section> </body> </html>
  • 9. A CLOSER LOOK - THE FILES <link rel="stylesheet" href="css/style.css"> โ€ข Our CSS file that controls the layout of the three โ€œsectionsโ€ (images, videoPanel, and tags). <script src="scripts/popcorn.js"></script> โ€ข This is the core popcorn.js file that contains the popcorn media framework. Unless you are doing heavy customizing you wonโ€™t need to edit this. <script src="scripts/script.js"></script> โ€ข This is the custom javascript file that is specific to our demo.
  • 10. A CLOSER LOOK <script src="scripts/popcorn.js"></script> โ€ข You can use just the core or the fully loaded Popcorn.js (includes modules, effects, plugins, players, parsers, etc). Alternatively, you can create your own Popcorn.js script using build tool (http://mozillapopcorn.org/build-tool/). โ€ข All Popcorn.js code is available in both production (minified) and development (source) form - http:// mozillapopcorn.org/popcornjs/
  • 11. A CLOSER LOOK - SCRIPT.JS var pop = Popcorn.youtube( "#video", "http://www.youtube.com/watch? v=sFqBp3rfTTc", { pauseOnLinkClicked: true } ); โ€ข This instantiates a Popcorn object loading the YouTube Video in my #video Div. The final parameter pauses the video if a link is clicked. pop.image({ start: 1, end: 10, target: 'images', href: 'http://www.gbv.com/', src: 'img/pic1.jpg' }); โ€ข This is the format for the images that get spawned by the video. This image is displayed in the โ€œimagesโ€ section from 1 second to 10 seconds. It links to the specified URL. โ€ข Check out the subsequent images that are spawned and their timing.
  • 12. A CLOSER LOOK - SCRIPT.JS pop.tagthisperson({ start: 5, target: 'tags', person: 'Guided By Voices', href: 'http://www.gbv.com/' }); โ€ข This is the format for the โ€œtagsโ€ that get spawned by the video. This tag is displayed in the โ€œtagsโ€ section at 5 seconds. It links to the specified URL. โ€ข Check out the subsequent tags that are spawned and their timing. pop.play(); โ€ข Finally we call the play() method which auto-plays the video after the page loads.
  • 13. OTHER EXAMPLES http://www.storycode.org/immersions/popcorn/ popcorn_demo/index.htm โ€ข Uses the Image, GoogleMaps, Twitter, GoogleFeed, Wikipedia, Facebook, and Tagthisperson plugins. http://popcornjs.org/code/demos/semantic_video/ โ€ข Pretty tricked out example of what is possible with Popcorn.
  • 14. HINTS โ€ข When downloading something from Mozilla - use a Mozilla browser like Firefox โ€ข Not always easy to edit locally, you may need to develop on a web server if you are doing anything that is somewhat advanced
  • 15. RESOURCES โ€ข popcornjs.org - the hub for all information - documentation, plugins, demos, community, downloads โ€ข mozillapopcorn.org - includes Popcorn Maker - an online authoring environment (can be buggy) โ€ข Popcorn on Twitter - @popcornjs