SlideShare ist ein Scribd-Unternehmen logo
1 von 47
Downloaden Sie, um offline zu lesen
1Driving E-Commerce with Video • May 13, 2014
DRIVING
COMMERCE WITH
VIDEO
May 13, 2014
Charles Hudson
chuckahudson+smw@gmail.com
2Driving E-Commerce with Video • May 13, 2014
STATS
VIDEO IN COMMERCE
YOUTUBE APIs
IFRAME PLAYER EMBEDDING
AND CONTROL
MOBILE
MERGING THE PHYSICAL AND
VIRTUAL / SHOPPING
ANYWHERE
<VIDEO>
REFRESH ONVIDEO IN HTML5
ANALYTICS
HOME GROWN &YOUTUBE
CONCLUSION
RECOMMENDATIONS AND
THOUGHTS
3Driving E-Commerce with Video • May 13, 2014
POWER OFVIDEO
•  1,014 U.S. adults from December 26 to December 30, 2013
•  73% of U.S. adults are more likely to purchase a product or service after watching a related
video.
•  79% said it was helpful to watch a video before making a purchase
•  68% found it helpful to watch a video more than once before making a purchase
•  77% think brands who create online videos are more engaged with their customers
•  73% think brands who create online videos are also more likely to gain repeat customers
•  71% feel that they’re left with a positive impression after watching a brand’s video
•  65% who watched brand videos viewed the company as an expert, and 58 percent believe
brands who create their own videos are more trustworthy.
•  96% of consumers find videos helpful when making purchase decisions online
Reference – Animoto.com - March 13, 2014 - http://animoto.com/blog/business/small-
business-video-infographic/
BY THE NUMBERS – RECENT ANIMOTO SURVEY
4Driving E-Commerce with Video • May 13, 2014
PRODUCTVIDEO
•  Traditional Video Types
–  Brand Awareness (yours or manufacturers)
–  Inline Product Features
–  Instructional / How To
–  Testimonial / Experience
PUT OUT BYYOUR MARKETING TEAM
Internet Retailer reports that
shoppers who viewed video on Stacks
and Stacks product pages were 144%
more likely to add to cart than other
shoppers. -
http://www.internetretailer.com/
2011/03/07/product-videos-raise-
purchase-likelihood-stacks-and-
stacks
5Driving E-Commerce with Video • May 13, 2014
PRODUCTVIDEO CLASSIFICATION
•  In terms of product videos we have seen an explosion.
•  Multiple categories stemming from categories used years ago.
Unboxing Empties How To’s & Tutorials
Torture Tests Tours Vs. / Versus
Haul Giveaways TAGs
Pickup Favorites Parodies
•  These are the types of videos influencing customers.
•  http://www.reelseo.com/12-types-product-videos/
CATEGORIES INFLUENCING CUSTOMERS
6Driving E-Commerce with Video • May 13, 2014
HIGHLY INFORMATIVE
•  Provides methods for better association of customers with vendors.
»  https://www.youtube.com/watch?v=L2RjEcAodjw
•  Also provides an easy method for customers to review. Product Fail Videos!
CAN WORK BOTH WAYS
7Driving E-Commerce with Video • May 13, 2014
<VIDEO> TAG
EMBEDDED WITH HTML AND JS
“Online retailer Bizchair.com told STORES Magazine that video viewing had a
powerful impact on sales, citing data showing that 33% of online sales came from
the 13% of site visitors who viewed video.”
STORES MAGAZINE, JULY 2012
8Driving E-Commerce with Video • May 13, 2014
HTML5 <VIDEO> ELEMENT
•  Added in HTML5 to mainstream media video playback with out plugins.
•  Built in controls available.
•  Multiple sources to provide various browser support.
•  Fallback messaging allowed for unsupported browsers.
•  Still varied support in breadth and depth across browsers.
REFRESH
<video controls>!
<source src="/video/big_buck_bunny_480p_surround.avi" type='video/mp4’>!
<source src="/video/big_buck_bunny_480p_stereo.ogg" type='video/ogg’>!
<p>HTML5 Video is not supported by this browser.</p>!
</video>!
9Driving E-Commerce with Video • May 13, 2014
VIDEO API EVENTS & PROPERTIES
•  Key events
•  Properties Include
–  currentTime – read/write of the playing pointer on the video media.
SMALL BUT KEY SUBSET
play Video is played.
pause Video playback is paused.
ended Video playback has ended.
timeupdate Video currentTime is updated.
10Driving E-Commerce with Video • May 13, 2014
Get currentTime
Returns the current pointer time
TIMELINE METHOD / EVENTS
A SAMPLE FLOW
00:00:00:000
pause()
Pause event fired
autoplay
Play event fired
Ended event fired
•  Methods and current time fired automatically or manually.
Set currentTime
Moves the play pointer
play()
Play event fired
11Driving E-Commerce with Video • May 13, 2014
OVERLAYING HTML ELEMENTS
•  Leverage CSS position to place elements.
•  Canvas an option as well.
•  Provides for interactions
–  While video loading.
–  During playback or timeline navigation.
–  When play ends.
•  Can overlay entire video element or partial.
BASIC ELEMENTS
<video>
<div>
12Driving E-Commerce with Video • May 13, 2014
EXAMPLE – 360 DEGREEVIEW
Overloading the VIDEO tag with a slider to control video
currentTime position and overlaying a canvas viewpoint.
Video Credit - http://vimeo.com/29384844
IMAGIN WORKSHOP
Website: imagin.hk
13Driving E-Commerce with Video • May 13, 2014
VIDEO OVERLAY USES
•  Inline Purchasing
–  Place Add to Cart or Buy Now buttons inline with specific product.
•  Social Sharing and Returns
–  Place social sharing buttons overlaid at end of video.
•  Pop Bubbles
–  Draw attention to specific products or information in an experience.
•  For more information see HTML5 Video presentation from Streaming
Media West 2013 online.
SOME WAYS TO ENHANCE FOR COMMERCE
14Driving E-Commerce with Video • May 13, 2014
VIDEO ELEMENT SUPPORT
•  Sample using flash as first but don’t need to include flash.
FALL THROUGH
<div>
<video width="642" height="361" src="http://www.totalec…?eclipid=e124798">
<object width="642" height="361" type="application/x-shockwave-flash" data="http://
misc.bbyst…mediael7578a9ee9e158.swf">
<param name="movie" value="http://misc.bbyst…7578a9ee9e158.swf">
<param name="flashvars" value="controls=true">
<!-- Image fall back for non-HTML5 browser with JS turned off and no Flash player
installed - Add image tag here-->
</object>
<source src="http://www.totalec…=e124798" type="video/mp4">
</video>
</div>
15Driving E-Commerce with Video • May 13, 2014
VIDEO TAG FALL THROUGH
1.  In Chrome – go to chrome://plugins
2.  Disable Adobe Flash Player
This does not require a restart of chrome.
3.  Verify flash player is disabled – go to
http://helpx.adobe.com/flash-player.html
HOW TO VALIDATE – FOR THE ABOVE CODE
16Driving E-Commerce with Video • May 13, 2014
3RD PARTY INTEGRATION
•  Shopping Cart Incorporation
–  Typically support inline video with extensions from 3rd party developers.
–  Inline, thumbnails, pop ups, galleries, YouTube player control, etc.
–  For example Magento has several extensions available including pulling in video from
social sites.
SHOPPING CARTS HAVE BEEN TENTATIVE
17Driving E-Commerce with Video • May 13, 2014
YOUTUBE APIS
AVAILABLE APIS & USAGE
“YouTube videos have influenced a purchase at least once for 53 percent of
consumers.” Walker Sands’ 2014 Future of Retail Study
18Driving E-Commerce with Video • May 13, 2014
SIMPLE EMBEDDING
1.  Take the YouTube video id from the query string. In this case 6A99O-mCZSM
2.  Add onto embedded URL for YouTube.
//www.youtube.com/embed/6A99O-mCZXM
3.  Place in iframe
EASY SHARING AND RETURN REFERENCE
<iframe width="600" height="338" src=”http://www.youtube.com/embed/
6A99O-mCZSM" frameborder="0" allowfullscreen>
</iframe>
19Driving E-Commerce with Video • May 13, 2014
•  Documentation at https://developers.google.com/youtube
•  APIs Available
YOUTUBE LIBRARIES
EXTENSIBLE SET FOR DEVELOPERS
Analytics For retrieving metrics on your channels or videos.
Data Working with videos and playlists in your app.
Live Streaming For creating, updating, and managing live events on YouTube.
Player Includes Android, Iframe, JavaScript, and Flash Player APIs.
20Driving E-Commerce with Video • May 13, 2014
•  Player loaded into element id
passed in as first variable.
•  Provide:
–  Size
–  Video id to load
–  Events to register for
•  Optional playerVars provides
customization of player
YOUTUBE IFRAME API
PLAYER IFRAME INSERTION
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: '390',
width: '640',
videoId: ’<youtube video id>',
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
}
21Driving E-Commerce with Video • May 13, 2014
•  A sampling:
–  Load and play a specific video
loadVideoById( videoId, start seconds, suggested quality )
–  Control a video
playVideo()
pauseVideo()
stopVideo()
seekTo( seconds, allow seek ahead)
clearVideo()
•  Others include volume, playlist, and playback rate control.
YOUTUBE IFRAME API
IFRAME PLAYER FUNCTIONS
22Driving E-Commerce with Video • May 13, 2014
EXAMPLE – IFRAME PLAYER
Load and control the YouTube Iframe player.
23Driving E-Commerce with Video • May 13, 2014
MOBILE AUTO PLAY
Note that the auto play functionality is prevented from
running by mobile platforms to be friendly to users and
their cell plan data usage.
24Driving E-Commerce with Video • May 13, 2014
•  Events
–  onReady – player is ready.
–  onStateChange – play state has changed.
–  onPlaybackQualityChange – quality has changed.
–  onPlaybackRateChange – play rate has changed.
–  onError – player error has occurred.
–  onApiChange
•  Event object passed with events with potentially a “target” and a “data”
element.
YOUTUBE IFRAME API
PLAYER EVENTS
Note that the target usage may create a cross domain error. The player
reference may be used instead.
25Driving E-Commerce with Video • May 13, 2014
EXAMPLE – CUEING VIDEOS
Using the YouTube Iframe API loading the player based on
user’s thumbnail selections.
26Driving E-Commerce with Video • May 13, 2014
•  Leverage YouTube Data API version 3.
•  Thumbnails object available on the video
resource.
•  “key” is either default, medium, high.
•  See
https://developers.google.com/youtube/
v3/docs/videos
EXAMPLE EXTENSION
CAN PULL THUMBNAILS DYNAMICALLY
{
"kind": "youtube#video",
"etag": etag,
"id": string,
"snippet": {
"publishedAt": datetime,
"channelId": string,
"title": string,
"description": string,
"thumbnails": {
(key): {
"url": string,
"width": unsigned integer,
"height": unsigned integer
}
},
"channelTitle": string,
…
27Driving E-Commerce with Video • May 13, 2014
•  MediaElement.js - http://www.mediaelementjs.com/
•  Wraps the APIs to act like the HTML5 video element.
WRAPPERS FOR 3RD PARTIES
FORYOUTUBE AND VIMEO
HTML -
<video id="youtube1" width="640" height="360">
<source src="http://www.youtube.com/watch?v=nOEw9iiopwI" type="video/youtube" >
</video>
Javascript -
jQuery(document).ready(function($) {
$('#youtube1').mediaelementplayer();
});
28Driving E-Commerce with Video • May 13, 2014
ANALYTICS
INSIGHT & ANALYSIS
29Driving E-Commerce with Video • May 13, 2014
•  Some Metrics of Interest
–  CVR – conversion rates
–  Play rate per product
–  Views total and views per user
–  Number of times played per user
–  Number of completion plays
–  Distribution of play lengths
–  Estimated minutes watched
–  Average view duration
•  Click through rates on overlay buttons
•  Able to leverage the HTML5 video and YouTube functions such as player status and current time.
ANALYTICS
MEASURING RETURN
Sample YouTube Analytics
30Driving E-Commerce with Video • May 13, 2014
YOUTUBE ANALYTICS
•  The whole picture if YouTube hosted.
•  20+ metrics available including;
–  View Metrics – views, uniques
–  Watch Time Metrics - estimatedMinutesWatched
–  Engagement Metrics
–  Annotations Metrics
–  Earning Metrics
–  Ad Performance Metrics
•  Requires registration of your application and Oauth authentication.
•  https://developers.google.com/youtube/analytics/
YOUTUBE ANALYTICS API
31Driving E-Commerce with Video • May 13, 2014
MOBILE
INTEGRATION & INTERACTION
“Online media influences more than 50% of in-store sales, making cross-channel
campaigns for the omnichannel shopper more critical than ever. Than number is
expected to rise to 60% by 2017. “ MediaPost – Web Media Influences Half of Store
Sales
32Driving E-Commerce with Video • May 13, 2014
MOBILE PRODUCTVIDEO USAGE
•  Mobile leveraged for:
–  Casual Browsing / Product Research
–  In store research using a mobile device
•  Two types internet supported research in store:
–  Unguided / Self-guided
•  Keyword Searching
–  Directed from product packaging / signage
•  Vendor website
•  Specific product information launch point
33Driving E-Commerce with Video • May 13, 2014
MERGING OF PHYSICAL ANDVIRTUAL
•  More and more people using mobile seamlessly in
physical locations.
•  From CMB - 41% say the information they got was
useful.
•  Launched from product packaging or signage.
•  Less about the technology and more of how to get
the information to the user in the decision window.
34Driving E-Commerce with Video • May 13, 2014
EQUIVALENCY ACROSS PLATFORMS
•  BestBuy uses shelf tags with QR Codes for the online product experience.
•  However
–  3 Videos available on desktop while no video is available on the iPhone for Destiny.
BESTBUY DIFFERENCE ON IPHONE
35Driving E-Commerce with Video • May 13, 2014
QR CODE ON SITE LAUNCHING
•  Make sure the code can be scanned.
Image credit – mobile marketer Image credit – Tag It Up, LLC
OTHER FAILS
36Driving E-Commerce with Video • May 13, 2014
PUSHVIDEO
•  Whether in-store or online.
•  Make it easy to find and view.
•  Can we get to one click or tap information?
BRING VIDEO CONTENT TO THE FRONT
37Driving E-Commerce with Video • May 13, 2014
CONCLUSION
RECOMMENDATIONS & THOUGHTS
38Driving E-Commerce with Video • May 13, 2014
PRODUCTVIDEO TOOLS
•  Quickly growing area of commerce services
–  Animoto – online video creation service
–  Treepodia – www.treepodia.com - ecommerce video platform
–  Invodo – invodo.com
•  Provide various features:
–  Creation
–  Analytics
–  Distribution
–  Social sharing
–  Video advertising (banners and like)
SIMPLIFYING THE PROCESS
39Driving E-Commerce with Video • May 13, 2014
RECOMMENDATIONS
•  Use video links on product pages,
not just brand pages.
•  Keep videos short – 1-2 minutes
(small opportunity window).
•  Stay away from photo montages
videos.
•  If unable to create own videos link
to manufacturers video.
•  Keep content up to date.
SOME GATHERED EXPERIENCES
40Driving E-Commerce with Video • May 13, 2014
RECOMMENDATIONS
•  Put video above the fold either linked
or embedded.
•  Use a combination of video types.
•  Use A/B testing for length, subject
material, style.
•  Test on a variety of viewing platforms.
•  Verify ROI with analytics. A
combination of in-house and third
party.
TESTING AND METRICS
41Driving E-Commerce with Video • May 13, 2014
From ONLINEVIDEO.NET, 2013
-17% of consumers have discovered a product through Pinterest.
- Consumers also use social media to discover the latest news and
products from brands (65 percent of consumers), receive customer
support (24 percent), and to see what others are buying (19
percent).
- Mobile shoppers are 3x as likely to view a video than desktop
shoppers.
Increasingly seamless experience with mobile/social and product videos will be
key.
Not only is it now easy to view videos anywhere but it is also easy for
customers to create and share.
FOCUS MOBILE & SOCIAL
42Driving E-Commerce with Video • May 13, 2014
•  Test on a variety of viewing platforms.
•  Plan on an omni channel strategy.
•  Understand location and usage paradigms.
43Driving E-Commerce with Video • May 13, 2014
FUTURES
•  Continued “experimentation” of augmented
reality interactive product packaging – without 2D
codes.
•  Increased virtual physical experiences.
•  Wearable interaction and video triggering based
on location – beacons, geofencing, NFC, etc.
•  More contextual click through video elements.
•  Video customer reviews posting in real time right
to product pages.
•  Increased business costs of video safeguards.
WHAT MAY BE
44Driving E-Commerce with Video • May 13, 2014
Q&A
Chuckahudson+smw@gmail.com
linkedin.com/in/chuckhudson
Code samples
https://github.com/cahudson/vcommerce
45Driving E-Commerce with Video • May 13, 2014
REFERENCES
•  Animoto – The Power of Video for Small Business Infographic, March 13,
2014.
•  Invodo
–  Invodo Statistics
–  Invodo Q1 2014 Video Commerce Benchmarks
•  ReelSEO - http://www.reelseo.com/12-types-product-videos/
•  Walker Sands Communications –
Reinventing Retail: What Businesses Need To Know for 2014
•  Making the VIDEO tag interactive -
http://www.slideshare.net/charlesahudson/html5-video-
interactive-28467810
SUGGESTED READING MATERIAL
46Driving E-Commerce with Video • May 13, 2014
IFYOU LIKE THIS TALK
•  Check out
–  Making the HTML5 VIDEO tag interactive
•  http://www.slideshare.net/charlesahudson/html5-video-interactive-28467810
47Driving E-Commerce with Video • May 13, 2014
CHARLES HUDSON
•  Google+ https://plus.google.com/u/0/+CharlesHudsonA
•  http://www.slideshare.net/charlesahudson/
linkedin.com/in/chuckhudson

Weitere ähnliche Inhalte

Andere mochten auch

Live Streaming: Consumption, branding and it's future
Live Streaming: Consumption, branding and it's futureLive Streaming: Consumption, branding and it's future
Live Streaming: Consumption, branding and it's futureString Nguyen | Top Voice
 
How to Build Your Brand with Live Streaming Video
How to Build Your Brand with Live Streaming VideoHow to Build Your Brand with Live Streaming Video
How to Build Your Brand with Live Streaming VideoMike Delgado
 
Live Streaming Video Use By Brands [INFOGRAPHIC]
Live Streaming Video Use By Brands [INFOGRAPHIC]Live Streaming Video Use By Brands [INFOGRAPHIC]
Live Streaming Video Use By Brands [INFOGRAPHIC]Brandlive
 
Ultimate Guide to Live Streaming
Ultimate Guide to Live StreamingUltimate Guide to Live Streaming
Ultimate Guide to Live StreamingPaul Richards
 
Joel Comm - The Live Streaming Revolution
Joel Comm - The Live Streaming RevolutionJoel Comm - The Live Streaming Revolution
Joel Comm - The Live Streaming RevolutionINBOUND
 
Virtual reality and 360° live streaming
Virtual reality and 360° live streamingVirtual reality and 360° live streaming
Virtual reality and 360° live streamingRyan Jespersen
 

Andere mochten auch (6)

Live Streaming: Consumption, branding and it's future
Live Streaming: Consumption, branding and it's futureLive Streaming: Consumption, branding and it's future
Live Streaming: Consumption, branding and it's future
 
How to Build Your Brand with Live Streaming Video
How to Build Your Brand with Live Streaming VideoHow to Build Your Brand with Live Streaming Video
How to Build Your Brand with Live Streaming Video
 
Live Streaming Video Use By Brands [INFOGRAPHIC]
Live Streaming Video Use By Brands [INFOGRAPHIC]Live Streaming Video Use By Brands [INFOGRAPHIC]
Live Streaming Video Use By Brands [INFOGRAPHIC]
 
Ultimate Guide to Live Streaming
Ultimate Guide to Live StreamingUltimate Guide to Live Streaming
Ultimate Guide to Live Streaming
 
Joel Comm - The Live Streaming Revolution
Joel Comm - The Live Streaming RevolutionJoel Comm - The Live Streaming Revolution
Joel Comm - The Live Streaming Revolution
 
Virtual reality and 360° live streaming
Virtual reality and 360° live streamingVirtual reality and 360° live streaming
Virtual reality and 360° live streaming
 

Ähnlich wie Driving Commerce Through Streaming Video

Top 5 Ways To Use Video To Drive Marketing Results #LLCSeries
Top 5 Ways To Use Video To Drive Marketing Results #LLCSeriesTop 5 Ways To Use Video To Drive Marketing Results #LLCSeries
Top 5 Ways To Use Video To Drive Marketing Results #LLCSeriesG3 Communications
 
Video Live and Targeted
Video Live and TargetedVideo Live and Targeted
Video Live and TargetedGreg Fry
 
Video Marketing Secrets
Video Marketing SecretsVideo Marketing Secrets
Video Marketing SecretsIsaac Johnson
 
Video marketing secrets
Video marketing secretsVideo marketing secrets
Video marketing secretsFlora Runyenje
 
Video marketing secrets
Video marketing secretsVideo marketing secrets
Video marketing secretsGokulS172
 
Social Video For Business Vistage Talk April 28
Social Video For Business Vistage Talk April 28Social Video For Business Vistage Talk April 28
Social Video For Business Vistage Talk April 28Doug Lehman
 
John Hickling - More than Just First Place - ionSearch 2012
John Hickling - More than Just First Place - ionSearch 2012John Hickling - More than Just First Place - ionSearch 2012
John Hickling - More than Just First Place - ionSearch 2012ionSearch Conference
 
The Black Hole of Video Analytics- KISSmetrics / Viddler Webinar
The Black Hole of Video Analytics- KISSmetrics / Viddler WebinarThe Black Hole of Video Analytics- KISSmetrics / Viddler Webinar
The Black Hole of Video Analytics- KISSmetrics / Viddler WebinarViddler Inc.
 
How to succeed with video on WordPress
How to succeed with video on WordPressHow to succeed with video on WordPress
How to succeed with video on WordPressWP Engine
 
The ABC Of Video Marketing
The ABC Of Video MarketingThe ABC Of Video Marketing
The ABC Of Video Marketingmgower
 
Get social with video marketing June 9 Social Selling Video
Get social with video marketing June 9 Social Selling VideoGet social with video marketing June 9 Social Selling Video
Get social with video marketing June 9 Social Selling VideoDoug Lehman
 
Vlogging an innovative addition to word press blogging landscape
Vlogging  an innovative addition to word press blogging landscapeVlogging  an innovative addition to word press blogging landscape
Vlogging an innovative addition to word press blogging landscapeman33la
 
7 ways videos can generate leads and dominate your competition.
7 ways videos can generate leads and dominate your competition.7 ways videos can generate leads and dominate your competition.
7 ways videos can generate leads and dominate your competition.True Focus Media
 
ZiMoviFeatureDocument2016
ZiMoviFeatureDocument2016ZiMoviFeatureDocument2016
ZiMoviFeatureDocument2016Karl McCaffrey
 
What Every Business Needs to Know about Video Marketing
What Every Business Needs to Know about Video MarketingWhat Every Business Needs to Know about Video Marketing
What Every Business Needs to Know about Video MarketingAbility SEO
 
Video Creation 101 for Advisors
Video Creation 101 for AdvisorsVideo Creation 101 for Advisors
Video Creation 101 for AdvisorsLoic Jeanjean
 
Using video online to increase sales slideshare
Using video online to increase sales slideshareUsing video online to increase sales slideshare
Using video online to increase sales slideshareDIYMarketers
 
How to Invest in Video and Demonstrate Marketing ROI
How to Invest in Video and Demonstrate Marketing ROI How to Invest in Video and Demonstrate Marketing ROI
How to Invest in Video and Demonstrate Marketing ROI Brightcove
 

Ähnlich wie Driving Commerce Through Streaming Video (20)

Top 5 Ways To Use Video To Drive Marketing Results #LLCSeries
Top 5 Ways To Use Video To Drive Marketing Results #LLCSeriesTop 5 Ways To Use Video To Drive Marketing Results #LLCSeries
Top 5 Ways To Use Video To Drive Marketing Results #LLCSeries
 
Video Live and Targeted
Video Live and TargetedVideo Live and Targeted
Video Live and Targeted
 
Video Marketing Secrets
Video Marketing SecretsVideo Marketing Secrets
Video Marketing Secrets
 
Video marketing secrets
Video marketing secretsVideo marketing secrets
Video marketing secrets
 
Video marketing secrets
Video marketing secretsVideo marketing secrets
Video marketing secrets
 
Social Video For Business Vistage Talk April 28
Social Video For Business Vistage Talk April 28Social Video For Business Vistage Talk April 28
Social Video For Business Vistage Talk April 28
 
John Hickling - More than Just First Place - ionSearch 2012
John Hickling - More than Just First Place - ionSearch 2012John Hickling - More than Just First Place - ionSearch 2012
John Hickling - More than Just First Place - ionSearch 2012
 
The Black Hole of Video Analytics- KISSmetrics / Viddler Webinar
The Black Hole of Video Analytics- KISSmetrics / Viddler WebinarThe Black Hole of Video Analytics- KISSmetrics / Viddler Webinar
The Black Hole of Video Analytics- KISSmetrics / Viddler Webinar
 
How to succeed with video on WordPress
How to succeed with video on WordPressHow to succeed with video on WordPress
How to succeed with video on WordPress
 
Illawarra Digital Enterprise Program - Creating and uploading videos for YouT...
Illawarra Digital Enterprise Program - Creating and uploading videos for YouT...Illawarra Digital Enterprise Program - Creating and uploading videos for YouT...
Illawarra Digital Enterprise Program - Creating and uploading videos for YouT...
 
video marketing
video marketingvideo marketing
video marketing
 
The ABC Of Video Marketing
The ABC Of Video MarketingThe ABC Of Video Marketing
The ABC Of Video Marketing
 
Get social with video marketing June 9 Social Selling Video
Get social with video marketing June 9 Social Selling VideoGet social with video marketing June 9 Social Selling Video
Get social with video marketing June 9 Social Selling Video
 
Vlogging an innovative addition to word press blogging landscape
Vlogging  an innovative addition to word press blogging landscapeVlogging  an innovative addition to word press blogging landscape
Vlogging an innovative addition to word press blogging landscape
 
7 ways videos can generate leads and dominate your competition.
7 ways videos can generate leads and dominate your competition.7 ways videos can generate leads and dominate your competition.
7 ways videos can generate leads and dominate your competition.
 
ZiMoviFeatureDocument2016
ZiMoviFeatureDocument2016ZiMoviFeatureDocument2016
ZiMoviFeatureDocument2016
 
What Every Business Needs to Know about Video Marketing
What Every Business Needs to Know about Video MarketingWhat Every Business Needs to Know about Video Marketing
What Every Business Needs to Know about Video Marketing
 
Video Creation 101 for Advisors
Video Creation 101 for AdvisorsVideo Creation 101 for Advisors
Video Creation 101 for Advisors
 
Using video online to increase sales slideshare
Using video online to increase sales slideshareUsing video online to increase sales slideshare
Using video online to increase sales slideshare
 
How to Invest in Video and Demonstrate Marketing ROI
How to Invest in Video and Demonstrate Marketing ROI How to Invest in Video and Demonstrate Marketing ROI
How to Invest in Video and Demonstrate Marketing ROI
 

Kürzlich hochgeladen

A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxAna-Maria Mihalceanu
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesBernd Ruecker
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentMahmoud Rabie
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...Karmanjay Verma
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFMichael Gough
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 

Kürzlich hochgeladen (20)

A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance Toolbox
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architectures
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career Development
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDF
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 

Driving Commerce Through Streaming Video

  • 1. 1Driving E-Commerce with Video • May 13, 2014 DRIVING COMMERCE WITH VIDEO May 13, 2014 Charles Hudson chuckahudson+smw@gmail.com
  • 2. 2Driving E-Commerce with Video • May 13, 2014 STATS VIDEO IN COMMERCE YOUTUBE APIs IFRAME PLAYER EMBEDDING AND CONTROL MOBILE MERGING THE PHYSICAL AND VIRTUAL / SHOPPING ANYWHERE <VIDEO> REFRESH ONVIDEO IN HTML5 ANALYTICS HOME GROWN &YOUTUBE CONCLUSION RECOMMENDATIONS AND THOUGHTS
  • 3. 3Driving E-Commerce with Video • May 13, 2014 POWER OFVIDEO •  1,014 U.S. adults from December 26 to December 30, 2013 •  73% of U.S. adults are more likely to purchase a product or service after watching a related video. •  79% said it was helpful to watch a video before making a purchase •  68% found it helpful to watch a video more than once before making a purchase •  77% think brands who create online videos are more engaged with their customers •  73% think brands who create online videos are also more likely to gain repeat customers •  71% feel that they’re left with a positive impression after watching a brand’s video •  65% who watched brand videos viewed the company as an expert, and 58 percent believe brands who create their own videos are more trustworthy. •  96% of consumers find videos helpful when making purchase decisions online Reference – Animoto.com - March 13, 2014 - http://animoto.com/blog/business/small- business-video-infographic/ BY THE NUMBERS – RECENT ANIMOTO SURVEY
  • 4. 4Driving E-Commerce with Video • May 13, 2014 PRODUCTVIDEO •  Traditional Video Types –  Brand Awareness (yours or manufacturers) –  Inline Product Features –  Instructional / How To –  Testimonial / Experience PUT OUT BYYOUR MARKETING TEAM Internet Retailer reports that shoppers who viewed video on Stacks and Stacks product pages were 144% more likely to add to cart than other shoppers. - http://www.internetretailer.com/ 2011/03/07/product-videos-raise- purchase-likelihood-stacks-and- stacks
  • 5. 5Driving E-Commerce with Video • May 13, 2014 PRODUCTVIDEO CLASSIFICATION •  In terms of product videos we have seen an explosion. •  Multiple categories stemming from categories used years ago. Unboxing Empties How To’s & Tutorials Torture Tests Tours Vs. / Versus Haul Giveaways TAGs Pickup Favorites Parodies •  These are the types of videos influencing customers. •  http://www.reelseo.com/12-types-product-videos/ CATEGORIES INFLUENCING CUSTOMERS
  • 6. 6Driving E-Commerce with Video • May 13, 2014 HIGHLY INFORMATIVE •  Provides methods for better association of customers with vendors. »  https://www.youtube.com/watch?v=L2RjEcAodjw •  Also provides an easy method for customers to review. Product Fail Videos! CAN WORK BOTH WAYS
  • 7. 7Driving E-Commerce with Video • May 13, 2014 <VIDEO> TAG EMBEDDED WITH HTML AND JS “Online retailer Bizchair.com told STORES Magazine that video viewing had a powerful impact on sales, citing data showing that 33% of online sales came from the 13% of site visitors who viewed video.” STORES MAGAZINE, JULY 2012
  • 8. 8Driving E-Commerce with Video • May 13, 2014 HTML5 <VIDEO> ELEMENT •  Added in HTML5 to mainstream media video playback with out plugins. •  Built in controls available. •  Multiple sources to provide various browser support. •  Fallback messaging allowed for unsupported browsers. •  Still varied support in breadth and depth across browsers. REFRESH <video controls>! <source src="/video/big_buck_bunny_480p_surround.avi" type='video/mp4’>! <source src="/video/big_buck_bunny_480p_stereo.ogg" type='video/ogg’>! <p>HTML5 Video is not supported by this browser.</p>! </video>!
  • 9. 9Driving E-Commerce with Video • May 13, 2014 VIDEO API EVENTS & PROPERTIES •  Key events •  Properties Include –  currentTime – read/write of the playing pointer on the video media. SMALL BUT KEY SUBSET play Video is played. pause Video playback is paused. ended Video playback has ended. timeupdate Video currentTime is updated.
  • 10. 10Driving E-Commerce with Video • May 13, 2014 Get currentTime Returns the current pointer time TIMELINE METHOD / EVENTS A SAMPLE FLOW 00:00:00:000 pause() Pause event fired autoplay Play event fired Ended event fired •  Methods and current time fired automatically or manually. Set currentTime Moves the play pointer play() Play event fired
  • 11. 11Driving E-Commerce with Video • May 13, 2014 OVERLAYING HTML ELEMENTS •  Leverage CSS position to place elements. •  Canvas an option as well. •  Provides for interactions –  While video loading. –  During playback or timeline navigation. –  When play ends. •  Can overlay entire video element or partial. BASIC ELEMENTS <video> <div>
  • 12. 12Driving E-Commerce with Video • May 13, 2014 EXAMPLE – 360 DEGREEVIEW Overloading the VIDEO tag with a slider to control video currentTime position and overlaying a canvas viewpoint. Video Credit - http://vimeo.com/29384844 IMAGIN WORKSHOP Website: imagin.hk
  • 13. 13Driving E-Commerce with Video • May 13, 2014 VIDEO OVERLAY USES •  Inline Purchasing –  Place Add to Cart or Buy Now buttons inline with specific product. •  Social Sharing and Returns –  Place social sharing buttons overlaid at end of video. •  Pop Bubbles –  Draw attention to specific products or information in an experience. •  For more information see HTML5 Video presentation from Streaming Media West 2013 online. SOME WAYS TO ENHANCE FOR COMMERCE
  • 14. 14Driving E-Commerce with Video • May 13, 2014 VIDEO ELEMENT SUPPORT •  Sample using flash as first but don’t need to include flash. FALL THROUGH <div> <video width="642" height="361" src="http://www.totalec…?eclipid=e124798"> <object width="642" height="361" type="application/x-shockwave-flash" data="http:// misc.bbyst…mediael7578a9ee9e158.swf"> <param name="movie" value="http://misc.bbyst…7578a9ee9e158.swf"> <param name="flashvars" value="controls=true"> <!-- Image fall back for non-HTML5 browser with JS turned off and no Flash player installed - Add image tag here--> </object> <source src="http://www.totalec…=e124798" type="video/mp4"> </video> </div>
  • 15. 15Driving E-Commerce with Video • May 13, 2014 VIDEO TAG FALL THROUGH 1.  In Chrome – go to chrome://plugins 2.  Disable Adobe Flash Player This does not require a restart of chrome. 3.  Verify flash player is disabled – go to http://helpx.adobe.com/flash-player.html HOW TO VALIDATE – FOR THE ABOVE CODE
  • 16. 16Driving E-Commerce with Video • May 13, 2014 3RD PARTY INTEGRATION •  Shopping Cart Incorporation –  Typically support inline video with extensions from 3rd party developers. –  Inline, thumbnails, pop ups, galleries, YouTube player control, etc. –  For example Magento has several extensions available including pulling in video from social sites. SHOPPING CARTS HAVE BEEN TENTATIVE
  • 17. 17Driving E-Commerce with Video • May 13, 2014 YOUTUBE APIS AVAILABLE APIS & USAGE “YouTube videos have influenced a purchase at least once for 53 percent of consumers.” Walker Sands’ 2014 Future of Retail Study
  • 18. 18Driving E-Commerce with Video • May 13, 2014 SIMPLE EMBEDDING 1.  Take the YouTube video id from the query string. In this case 6A99O-mCZSM 2.  Add onto embedded URL for YouTube. //www.youtube.com/embed/6A99O-mCZXM 3.  Place in iframe EASY SHARING AND RETURN REFERENCE <iframe width="600" height="338" src=”http://www.youtube.com/embed/ 6A99O-mCZSM" frameborder="0" allowfullscreen> </iframe>
  • 19. 19Driving E-Commerce with Video • May 13, 2014 •  Documentation at https://developers.google.com/youtube •  APIs Available YOUTUBE LIBRARIES EXTENSIBLE SET FOR DEVELOPERS Analytics For retrieving metrics on your channels or videos. Data Working with videos and playlists in your app. Live Streaming For creating, updating, and managing live events on YouTube. Player Includes Android, Iframe, JavaScript, and Flash Player APIs.
  • 20. 20Driving E-Commerce with Video • May 13, 2014 •  Player loaded into element id passed in as first variable. •  Provide: –  Size –  Video id to load –  Events to register for •  Optional playerVars provides customization of player YOUTUBE IFRAME API PLAYER IFRAME INSERTION var player; function onYouTubeIframeAPIReady() { player = new YT.Player('player', { height: '390', width: '640', videoId: ’<youtube video id>', events: { 'onReady': onPlayerReady, 'onStateChange': onPlayerStateChange } }); }
  • 21. 21Driving E-Commerce with Video • May 13, 2014 •  A sampling: –  Load and play a specific video loadVideoById( videoId, start seconds, suggested quality ) –  Control a video playVideo() pauseVideo() stopVideo() seekTo( seconds, allow seek ahead) clearVideo() •  Others include volume, playlist, and playback rate control. YOUTUBE IFRAME API IFRAME PLAYER FUNCTIONS
  • 22. 22Driving E-Commerce with Video • May 13, 2014 EXAMPLE – IFRAME PLAYER Load and control the YouTube Iframe player.
  • 23. 23Driving E-Commerce with Video • May 13, 2014 MOBILE AUTO PLAY Note that the auto play functionality is prevented from running by mobile platforms to be friendly to users and their cell plan data usage.
  • 24. 24Driving E-Commerce with Video • May 13, 2014 •  Events –  onReady – player is ready. –  onStateChange – play state has changed. –  onPlaybackQualityChange – quality has changed. –  onPlaybackRateChange – play rate has changed. –  onError – player error has occurred. –  onApiChange •  Event object passed with events with potentially a “target” and a “data” element. YOUTUBE IFRAME API PLAYER EVENTS Note that the target usage may create a cross domain error. The player reference may be used instead.
  • 25. 25Driving E-Commerce with Video • May 13, 2014 EXAMPLE – CUEING VIDEOS Using the YouTube Iframe API loading the player based on user’s thumbnail selections.
  • 26. 26Driving E-Commerce with Video • May 13, 2014 •  Leverage YouTube Data API version 3. •  Thumbnails object available on the video resource. •  “key” is either default, medium, high. •  See https://developers.google.com/youtube/ v3/docs/videos EXAMPLE EXTENSION CAN PULL THUMBNAILS DYNAMICALLY { "kind": "youtube#video", "etag": etag, "id": string, "snippet": { "publishedAt": datetime, "channelId": string, "title": string, "description": string, "thumbnails": { (key): { "url": string, "width": unsigned integer, "height": unsigned integer } }, "channelTitle": string, …
  • 27. 27Driving E-Commerce with Video • May 13, 2014 •  MediaElement.js - http://www.mediaelementjs.com/ •  Wraps the APIs to act like the HTML5 video element. WRAPPERS FOR 3RD PARTIES FORYOUTUBE AND VIMEO HTML - <video id="youtube1" width="640" height="360"> <source src="http://www.youtube.com/watch?v=nOEw9iiopwI" type="video/youtube" > </video> Javascript - jQuery(document).ready(function($) { $('#youtube1').mediaelementplayer(); });
  • 28. 28Driving E-Commerce with Video • May 13, 2014 ANALYTICS INSIGHT & ANALYSIS
  • 29. 29Driving E-Commerce with Video • May 13, 2014 •  Some Metrics of Interest –  CVR – conversion rates –  Play rate per product –  Views total and views per user –  Number of times played per user –  Number of completion plays –  Distribution of play lengths –  Estimated minutes watched –  Average view duration •  Click through rates on overlay buttons •  Able to leverage the HTML5 video and YouTube functions such as player status and current time. ANALYTICS MEASURING RETURN Sample YouTube Analytics
  • 30. 30Driving E-Commerce with Video • May 13, 2014 YOUTUBE ANALYTICS •  The whole picture if YouTube hosted. •  20+ metrics available including; –  View Metrics – views, uniques –  Watch Time Metrics - estimatedMinutesWatched –  Engagement Metrics –  Annotations Metrics –  Earning Metrics –  Ad Performance Metrics •  Requires registration of your application and Oauth authentication. •  https://developers.google.com/youtube/analytics/ YOUTUBE ANALYTICS API
  • 31. 31Driving E-Commerce with Video • May 13, 2014 MOBILE INTEGRATION & INTERACTION “Online media influences more than 50% of in-store sales, making cross-channel campaigns for the omnichannel shopper more critical than ever. Than number is expected to rise to 60% by 2017. “ MediaPost – Web Media Influences Half of Store Sales
  • 32. 32Driving E-Commerce with Video • May 13, 2014 MOBILE PRODUCTVIDEO USAGE •  Mobile leveraged for: –  Casual Browsing / Product Research –  In store research using a mobile device •  Two types internet supported research in store: –  Unguided / Self-guided •  Keyword Searching –  Directed from product packaging / signage •  Vendor website •  Specific product information launch point
  • 33. 33Driving E-Commerce with Video • May 13, 2014 MERGING OF PHYSICAL ANDVIRTUAL •  More and more people using mobile seamlessly in physical locations. •  From CMB - 41% say the information they got was useful. •  Launched from product packaging or signage. •  Less about the technology and more of how to get the information to the user in the decision window.
  • 34. 34Driving E-Commerce with Video • May 13, 2014 EQUIVALENCY ACROSS PLATFORMS •  BestBuy uses shelf tags with QR Codes for the online product experience. •  However –  3 Videos available on desktop while no video is available on the iPhone for Destiny. BESTBUY DIFFERENCE ON IPHONE
  • 35. 35Driving E-Commerce with Video • May 13, 2014 QR CODE ON SITE LAUNCHING •  Make sure the code can be scanned. Image credit – mobile marketer Image credit – Tag It Up, LLC OTHER FAILS
  • 36. 36Driving E-Commerce with Video • May 13, 2014 PUSHVIDEO •  Whether in-store or online. •  Make it easy to find and view. •  Can we get to one click or tap information? BRING VIDEO CONTENT TO THE FRONT
  • 37. 37Driving E-Commerce with Video • May 13, 2014 CONCLUSION RECOMMENDATIONS & THOUGHTS
  • 38. 38Driving E-Commerce with Video • May 13, 2014 PRODUCTVIDEO TOOLS •  Quickly growing area of commerce services –  Animoto – online video creation service –  Treepodia – www.treepodia.com - ecommerce video platform –  Invodo – invodo.com •  Provide various features: –  Creation –  Analytics –  Distribution –  Social sharing –  Video advertising (banners and like) SIMPLIFYING THE PROCESS
  • 39. 39Driving E-Commerce with Video • May 13, 2014 RECOMMENDATIONS •  Use video links on product pages, not just brand pages. •  Keep videos short – 1-2 minutes (small opportunity window). •  Stay away from photo montages videos. •  If unable to create own videos link to manufacturers video. •  Keep content up to date. SOME GATHERED EXPERIENCES
  • 40. 40Driving E-Commerce with Video • May 13, 2014 RECOMMENDATIONS •  Put video above the fold either linked or embedded. •  Use a combination of video types. •  Use A/B testing for length, subject material, style. •  Test on a variety of viewing platforms. •  Verify ROI with analytics. A combination of in-house and third party. TESTING AND METRICS
  • 41. 41Driving E-Commerce with Video • May 13, 2014 From ONLINEVIDEO.NET, 2013 -17% of consumers have discovered a product through Pinterest. - Consumers also use social media to discover the latest news and products from brands (65 percent of consumers), receive customer support (24 percent), and to see what others are buying (19 percent). - Mobile shoppers are 3x as likely to view a video than desktop shoppers. Increasingly seamless experience with mobile/social and product videos will be key. Not only is it now easy to view videos anywhere but it is also easy for customers to create and share. FOCUS MOBILE & SOCIAL
  • 42. 42Driving E-Commerce with Video • May 13, 2014 •  Test on a variety of viewing platforms. •  Plan on an omni channel strategy. •  Understand location and usage paradigms.
  • 43. 43Driving E-Commerce with Video • May 13, 2014 FUTURES •  Continued “experimentation” of augmented reality interactive product packaging – without 2D codes. •  Increased virtual physical experiences. •  Wearable interaction and video triggering based on location – beacons, geofencing, NFC, etc. •  More contextual click through video elements. •  Video customer reviews posting in real time right to product pages. •  Increased business costs of video safeguards. WHAT MAY BE
  • 44. 44Driving E-Commerce with Video • May 13, 2014 Q&A Chuckahudson+smw@gmail.com linkedin.com/in/chuckhudson Code samples https://github.com/cahudson/vcommerce
  • 45. 45Driving E-Commerce with Video • May 13, 2014 REFERENCES •  Animoto – The Power of Video for Small Business Infographic, March 13, 2014. •  Invodo –  Invodo Statistics –  Invodo Q1 2014 Video Commerce Benchmarks •  ReelSEO - http://www.reelseo.com/12-types-product-videos/ •  Walker Sands Communications – Reinventing Retail: What Businesses Need To Know for 2014 •  Making the VIDEO tag interactive - http://www.slideshare.net/charlesahudson/html5-video- interactive-28467810 SUGGESTED READING MATERIAL
  • 46. 46Driving E-Commerce with Video • May 13, 2014 IFYOU LIKE THIS TALK •  Check out –  Making the HTML5 VIDEO tag interactive •  http://www.slideshare.net/charlesahudson/html5-video-interactive-28467810
  • 47. 47Driving E-Commerce with Video • May 13, 2014 CHARLES HUDSON •  Google+ https://plus.google.com/u/0/+CharlesHudsonA •  http://www.slideshare.net/charlesahudson/ linkedin.com/in/chuckhudson