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

HTML5 Video Presentation
HTML5 Video PresentationHTML5 Video Presentation
HTML5 Video Presentation
sith33
 
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

Models in Deira 0567006274 Deira Call girl Service
Models in Deira 0567006274 Deira Call girl ServiceModels in Deira 0567006274 Deira Call girl Service
Models in Deira 0567006274 Deira Call girl Service
Monica Sydney
 
Vip Models Escorts in Lahore 03068178123
Vip Models Escorts in Lahore 03068178123Vip Models Escorts in Lahore 03068178123
Vip Models Escorts in Lahore 03068178123
Escorts in Lahore 03068178123
 
Pakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsPakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girls
Monica Sydney
 

Recently uploaded (20)

Turbhe Female Escorts 09167354423 Turbhe Escorts,Call Girls In Turbhe
Turbhe Female Escorts 09167354423  Turbhe Escorts,Call Girls In TurbheTurbhe Female Escorts 09167354423  Turbhe Escorts,Call Girls In Turbhe
Turbhe Female Escorts 09167354423 Turbhe Escorts,Call Girls In Turbhe
 
Hire 💕 8617370543 Kushinagar Call Girls Service Call Girls Agency
Hire 💕 8617370543 Kushinagar Call Girls Service Call Girls AgencyHire 💕 8617370543 Kushinagar Call Girls Service Call Girls Agency
Hire 💕 8617370543 Kushinagar Call Girls Service Call Girls Agency
 
Mandvi (Ahemdabad) Escorts 6367492432 with Real Phone number and Model
Mandvi (Ahemdabad) Escorts 6367492432 with Real Phone number and ModelMandvi (Ahemdabad) Escorts 6367492432 with Real Phone number and Model
Mandvi (Ahemdabad) Escorts 6367492432 with Real Phone number and Model
 
Hire 💕 8617370543 Mirzapur Call Girls Service Call Girls Agency
Hire 💕 8617370543 Mirzapur Call Girls Service Call Girls AgencyHire 💕 8617370543 Mirzapur Call Girls Service Call Girls Agency
Hire 💕 8617370543 Mirzapur Call Girls Service Call Girls Agency
 
Models in Deira 0567006274 Deira Call girl Service
Models in Deira 0567006274 Deira Call girl ServiceModels in Deira 0567006274 Deira Call girl Service
Models in Deira 0567006274 Deira Call girl Service
 
Call Girls in Nizampet / 8250092165 Genuine Call girls with real Photos and N...
Call Girls in Nizampet / 8250092165 Genuine Call girls with real Photos and N...Call Girls in Nizampet / 8250092165 Genuine Call girls with real Photos and N...
Call Girls in Nizampet / 8250092165 Genuine Call girls with real Photos and N...
 
Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
 
Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...
 
Vip Models Escorts in Lahore 03068178123
Vip Models Escorts in Lahore 03068178123Vip Models Escorts in Lahore 03068178123
Vip Models Escorts in Lahore 03068178123
 
Pakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsPakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girls
 
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
 
Call girls Service Bellary - 9332606886 Rs 3000 Free Pickup & Drop Services 2...
Call girls Service Bellary - 9332606886 Rs 3000 Free Pickup & Drop Services 2...Call girls Service Bellary - 9332606886 Rs 3000 Free Pickup & Drop Services 2...
Call girls Service Bellary - 9332606886 Rs 3000 Free Pickup & Drop Services 2...
 
Thane Female Escorts-✔9833754194-Kalyan Reasonalble Escorts-Kurla Independent...
Thane Female Escorts-✔9833754194-Kalyan Reasonalble Escorts-Kurla Independent...Thane Female Escorts-✔9833754194-Kalyan Reasonalble Escorts-Kurla Independent...
Thane Female Escorts-✔9833754194-Kalyan Reasonalble Escorts-Kurla Independent...
 
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
 
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdfTop IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
 
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
 
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
 
Call Girls Bijnor Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Bijnor  Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Bijnor  Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Bijnor Just Call 8617370543 Top Class Call Girl Service Available
 
Deira call girls 0507330913 Call girls in Deira
Deira call girls 0507330913  Call girls in DeiraDeira call girls 0507330913  Call girls in Deira
Deira call girls 0507330913 Call girls in Deira
 
Satara call girl 8617370543♥️ call girls in satara escort service
Satara call girl 8617370543♥️ call girls in satara escort serviceSatara call girl 8617370543♥️ call girls in satara escort service
Satara call girl 8617370543♥️ call girls in satara escort service
 

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