<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Google Data &#187; Youtube</title>
	<atom:link href="/category/youtube/feed/" rel="self" type="application/rss+xml" />
	<link>https://googledata.org</link>
	<description>Everything Google: News, Products, Services, Content, Culture</description>
	<lastBuildDate>Wed, 28 Dec 2016 21:09:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.13</generator>
	<item>
		<title>Podcast to YouTube: an open source story</title>
		<link>https://googledata.org/youtube/podcast-to-youtube-an-open-source-story/</link>
		<comments>https://googledata.org/youtube/podcast-to-youtube-an-open-source-story/#comments</comments>
		<pubDate>Fri, 04 Nov 2016 17:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Open Source Programs Office]]></dc:creator>
				<category><![CDATA[Google Open Source]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=6d65b9b4732b42f746b7dc9fa36d180c</guid>
		<description><![CDATA[Almost a year ago <a href="https://twitter.com/Neurotic">Mark Mandel</a> and I started the <a href="https://www.gcppodcast.com/">Google Cloud Platform Podcast</a>, a weekly podcast that covers topics related to <a href="https://cloud.google.com/">Google Cloud Platform</a>, among other things. It's been a pretty successful podcast, but that&#8217;s not what I want to write about today.<br /><br />After a while we started receiving emails from listeners that wanted to access our podcast on YouTube. Even though this might seem strange for those that love podcasts and have their favorite app on their phones, we decided that the customer is always right: we should post every episode to YouTube.<br /><br /><b>Specifications</b><br /><br />Ok, so &#8230; how? Well, to create a video I need to merge the mp3 audio from an episode with a static image. Let's include the title of the episode and the Google Cloud Platform Podcast logo.<br /><br /><div><a href="http://4.bp.blogspot.com/-BKffPSfJobk/WBJX0BnPwRI/AAAAAAAAA9Q/DAm82F4H3UgWuFiSG9xG0qjVBlhgKNpPgCK4B/s1600/image01.png"><img border="0" height="250" src="https://4.bp.blogspot.com/-BKffPSfJobk/WBJX0BnPwRI/AAAAAAAAA9Q/DAm82F4H3UgWuFiSG9xG0qjVBlhgKNpPgCK4B/s400/image01.png" width="400"></a></div><br />But once we post the video to YouTube we're going to need more than that! We need a description, some tags, and probably a link to the episode (SEO FTW!).<br /><br />Where can we get that information from? Let's think about this for a minute. Where are others getting this information from? The RSS feed! Would it be possible to create a tool to which I could say "post the video for episode 46" and a couple minutes later the video appeared on YouTube? That'd be awesome! Let's do that!<br /><br /><b>Architecture</b><br /><br />The application I wrote parses an RSS feed and given the episodes to publish it downloads the metadata and audio for an episode, generates the corresponding videos, and pushes them to YouTube.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://1.bp.blogspot.com/-5nd1XthjNsI/WBJX57F9DrI/AAAAAAAAA9Y/8qhiCAFwfDUPJtgFFzDtJlx_PjrlILD3wCK4B/s1600/image00.png"><img border="0" src="https://1.bp.blogspot.com/-5nd1XthjNsI/WBJX57F9DrI/AAAAAAAAA9Y/8qhiCAFwfDUPJtgFFzDtJlx_PjrlILD3wCK4B/s1600/image00.png"></a></td></tr><tr><td>Diagram of the flow of data in podcast-to-youtube</td></tr></tbody></table>The hardest parts here are the creation of the image and the video. The rest is sending HTTP requests right and left.<br /><br /><b>Image Maker: rendering images in pure Go</b><br /><br />After trying a couple of different tools I decided that the easiest was to create the image from scratch in Go using the <i>image</i> package from the standard library and a <a href="http://github.com/golang/freetype/truetype">freetype</a> library available on GitHub.<br /><br />Probably the most fun part was to be able to choose a font that would make the title fit the image correctly regardless of the length in characters. I ended up creating a loop that:<br /><ul><li>chooses a font and measures the width of the resulting text</li><li>if it's too wide, decreases the font size by one and repeats.</li></ul>Surprisingly, for me, this is actually a pretty common practice!<br /><br />It is also worth mentioning the way I test the package: Using a standard image that I compare to the one generated by the package, then showing a "diff" image where all the pixels that differ are highlighted in red.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://4.bp.blogspot.com/-9WZs9Wy2s2k/WBJYGsjB_zI/AAAAAAAAA9g/gNcGjOXrbMAFTwFSc9mQvq8t0OjY3sqlQCK4B/s1600/image02.png"><img border="0" height="225" src="https://4.bp.blogspot.com/-9WZs9Wy2s2k/WBJYGsjB_zI/AAAAAAAAA9g/gNcGjOXrbMAFTwFSc9mQvq8t0OjY3sqlQCK4B/s400/image02.png" width="400"></a></td></tr><tr><td>Diff image generated when using a wrong DPI.</td></tr></tbody></table>The code for this package is available <a href="https://github.com/campoy/podcast-to-youtube/tree/master/image">here</a>.<br /><br /><b>Video maker: ffmpeg is awesome</b><br /><br />From the beginning I knew I would end up using ffmpeg to create my video. Why? Well, because it is as simple as running this command:<br /><br /><pre>$ ffmpeg -i image.png -i audio.mp3 video.mp4</pre><br />Easy right? Well, this is once ffmpeg has been installed and correctly configured, which is actually not that simple and would make this tool hard to install on any machine.<br /><br />That's why the whole tool runs on Docker. Docker is a pretty widespread technology, and thanks to Makefile I'm able to provide a tool that can be run like this:<br /><br /><pre>$ make run</pre><br /><b>Conclusion</b><br /><br />It took me a couple of days to write the tool and get it to a point where I could open source it, but it was totally worth it. I know that others will be able to easily reuse it, or even extend it. Who knows, maybe this should be exposed as a web application so anyone can use it, no Docker or Makefile needed!<br /><br />I am currently using this tool weekly to upload the <a href="http://gcppodcast.com/">Google Cloud Platform Podcast</a> episodes to <a href="https://www.youtube.com/playlist?list=PLIivdWyY5sqJOTOszXDZh3XustjvTsrmQ">this playlist</a>, and you can find the whole code on this <a href="https://github.com/campoy/podcast-to-youtube/">GitHub repository</a>.<br /><br />Any questions? I'm <a href="https://twitter.com/francesc">@francesc</a> on Twitter.<br /><br /><i>By Francesc Campoy, Developer Advocate</i><br /><div><br /></div>]]></description>
				<content:encoded><![CDATA[Almost a year ago <a href="https://twitter.com/Neurotic">Mark Mandel</a> and I started the <a href="https://www.gcppodcast.com/">Google Cloud Platform Podcast</a>, a weekly podcast that covers topics related to <a href="https://cloud.google.com/">Google Cloud Platform</a>, among other things. It's been a pretty successful podcast, but that’s not what I want to write about today.<br /><br />After a while we started receiving emails from listeners that wanted to access our podcast on YouTube. Even though this might seem strange for those that love podcasts and have their favorite app on their phones, we decided that the customer is always right: we should post every episode to YouTube.<br /><br /><b>Specifications</b><br /><br />Ok, so … how? Well, to create a video I need to merge the mp3 audio from an episode with a static image. Let's include the title of the episode and the Google Cloud Platform Podcast logo.<br /><br /><div style="text-align: center;"><a href="http://4.bp.blogspot.com/-BKffPSfJobk/WBJX0BnPwRI/AAAAAAAAA9Q/DAm82F4H3UgWuFiSG9xG0qjVBlhgKNpPgCK4B/s1600/image01.png" imageanchor="1"><img border="0" height="250" src="https://4.bp.blogspot.com/-BKffPSfJobk/WBJX0BnPwRI/AAAAAAAAA9Q/DAm82F4H3UgWuFiSG9xG0qjVBlhgKNpPgCK4B/s400/image01.png" width="400" /></a></div><br />But once we post the video to YouTube we're going to need more than that! We need a description, some tags, and probably a link to the episode (SEO FTW!).<br /><br />Where can we get that information from? Let's think about this for a minute. Where are others getting this information from? The RSS feed! Would it be possible to create a tool to which I could say "post the video for episode 46" and a couple minutes later the video appeared on YouTube? That'd be awesome! Let's do that!<br /><br /><b>Architecture</b><br /><br />The application I wrote parses an RSS feed and given the episodes to publish it downloads the metadata and audio for an episode, generates the corresponding videos, and pushes them to YouTube.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-5nd1XthjNsI/WBJX57F9DrI/AAAAAAAAA9Y/8qhiCAFwfDUPJtgFFzDtJlx_PjrlILD3wCK4B/s1600/image00.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" src="https://1.bp.blogspot.com/-5nd1XthjNsI/WBJX57F9DrI/AAAAAAAAA9Y/8qhiCAFwfDUPJtgFFzDtJlx_PjrlILD3wCK4B/s1600/image00.png" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Diagram of the flow of data in podcast-to-youtube</td></tr></tbody></table>The hardest parts here are the creation of the image and the video. The rest is sending HTTP requests right and left.<br /><br /><b>Image Maker: rendering images in pure Go</b><br /><br />After trying a couple of different tools I decided that the easiest was to create the image from scratch in Go using the <i>image</i> package from the standard library and a <a href="http://github.com/golang/freetype/truetype">freetype</a> library available on GitHub.<br /><br />Probably the most fun part was to be able to choose a font that would make the title fit the image correctly regardless of the length in characters. I ended up creating a loop that:<br /><ul><li>chooses a font and measures the width of the resulting text</li><li>if it's too wide, decreases the font size by one and repeats.</li></ul>Surprisingly, for me, this is actually a pretty common practice!<br /><br />It is also worth mentioning the way I test the package: Using a standard image that I compare to the one generated by the package, then showing a "diff" image where all the pixels that differ are highlighted in red.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-9WZs9Wy2s2k/WBJYGsjB_zI/AAAAAAAAA9g/gNcGjOXrbMAFTwFSc9mQvq8t0OjY3sqlQCK4B/s1600/image02.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="225" src="https://4.bp.blogspot.com/-9WZs9Wy2s2k/WBJYGsjB_zI/AAAAAAAAA9g/gNcGjOXrbMAFTwFSc9mQvq8t0OjY3sqlQCK4B/s400/image02.png" width="400" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Diff image generated when using a wrong DPI.</td></tr></tbody></table>The code for this package is available <a href="https://github.com/campoy/podcast-to-youtube/tree/master/image">here</a>.<br /><br /><b>Video maker: ffmpeg is awesome</b><br /><br />From the beginning I knew I would end up using ffmpeg to create my video. Why? Well, because it is as simple as running this command:<br /><br /><pre>$ ffmpeg -i image.png -i audio.mp3 video.mp4</pre><br />Easy right? Well, this is once ffmpeg has been installed and correctly configured, which is actually not that simple and would make this tool hard to install on any machine.<br /><br />That's why the whole tool runs on Docker. Docker is a pretty widespread technology, and thanks to Makefile I'm able to provide a tool that can be run like this:<br /><br /><pre>$ make run</pre><br /><b>Conclusion</b><br /><br />It took me a couple of days to write the tool and get it to a point where I could open source it, but it was totally worth it. I know that others will be able to easily reuse it, or even extend it. Who knows, maybe this should be exposed as a web application so anyone can use it, no Docker or Makefile needed!<br /><br />I am currently using this tool weekly to upload the <a href="http://gcppodcast.com/">Google Cloud Platform Podcast</a> episodes to <a href="https://www.youtube.com/playlist?list=PLIivdWyY5sqJOTOszXDZh3XustjvTsrmQ">this playlist</a>, and you can find the whole code on this <a href="https://github.com/campoy/podcast-to-youtube/">GitHub repository</a>.<br /><br />Any questions? I'm <a href="https://twitter.com/francesc">@francesc</a> on Twitter.<br /><br /><i>By Francesc Campoy, Developer Advocate</i><br /><div><br /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/podcast-to-youtube-an-open-source-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Announcing YouTube-8M: A Large and Diverse Labeled Video Dataset for Video Understanding Research</title>
		<link>https://googledata.org/youtube/announcing-youtube-8m-a-large-and-diverse-labeled-video-dataset-for-video-understanding-research/</link>
		<comments>https://googledata.org/youtube/announcing-youtube-8m-a-large-and-diverse-labeled-video-dataset-for-video-understanding-research/#comments</comments>
		<pubDate>Wed, 28 Sep 2016 17:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Research Blog]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=8564253f15fe1f87fac089f133532dce</guid>
		<description><![CDATA[<span>Posted by Sudheendra Vijayanarasimhan and Paul Natsev, Software Engineers</span><br /><br />Many recent breakthroughs in machine learning and machine perception have come from the availability of large labeled datasets, such as <a href="http://www.image-net.org/">ImageNet</a>, which has millions of images labeled with thousands of classes. Their availability has significantly accelerated research in image understanding, for example on <a href="http://googleresearch.blogspot.com/2014/09/building-deeper-understanding-of-images.html">detecting and classifying objects in static images</a>.<br /><br /><a href="https://research.googleblog.com/2015/04/beyond-short-snippets-deep-networks-for.html">Video analysis</a> provides even more information for detecting and recognizing objects, and understanding human actions and interactions with the world.  Improving video understanding can lead to better video search and discovery, similarly to how image understanding <a href="https://googleblog.blogspot.com/2015/05/picture-this-fresh-approach-to-photos.html">helped re-imagine the photos experience</a>. However, one of the key bottlenecks for further advancements in this area has been the lack of real-world video datasets with the same scale and diversity as image datasets. <br /><br />Today, we are excited to announce the release of <a href="https://research.google.com/youtube8m">YouTube-8M</a>, a dataset of 8 million YouTube video URLs (representing over 500,000 hours of video), along with video-level labels from a diverse set of 4800 <a href="https://developers.google.com/knowledge-graph/">Knowledge Graph</a> entities.  This represents a significant increase in scale and diversity compared to existing video datasets. For example, <a href="https://github.com/gtoderici/sports-1m-dataset">Sports-1M</a>, the largest existing labeled video dataset we are aware of, has around 1 million YouTube videos and 500 sports-specific classes--YouTube-8M represents nearly an <i>order of magnitude increase</i> in both number of videos <i>and</i> classes.<br /><div><a href="https://2.bp.blogspot.com/-7TeQwPP34iE/V-vnyZPp0dI/AAAAAAAABRA/uH19ST1iJdITzX73A8Uu5HMRjTrLvWc-QCEw/s1600/image08.png"><img border="0" height="74" src="https://2.bp.blogspot.com/-7TeQwPP34iE/V-vnyZPp0dI/AAAAAAAABRA/uH19ST1iJdITzX73A8Uu5HMRjTrLvWc-QCEw/s640/image08.png" width="640"></a></div>In order to construct a labeled video dataset of this scale, we needed to address two key challenges: (1) video is much more time-consuming to annotate manually than images, and (2) video is very computationally expensive to process and store. To overcome (1), we turned to YouTube and its video annotation system, which identifies relevant Knowledge Graph topics for all public YouTube videos.  While these annotations are machine-generated, they incorporate powerful user engagement signals from millions of users as well as video metadata and content analysis. As a result, the quality of these annotations is sufficiently high to be useful for video understanding research and benchmarking purposes. <br /><div> <br /></div>To ensure the stability and quality of the labeled video dataset, we used only public videos with more than 1000 views, and we constructed a diverse vocabulary of entities, which are visually observable and sufficiently frequent. The vocabulary construction was a combination of frequency analysis, automated filtering, verification by human raters that the entities are visually observable, and grouping into 24 top-level verticals (more details in our <a href="http://arxiv.org/abs/1609.08675">technical report</a>). The figures below depict the <a href="https://research.google.com/youtube8m/explore.html">dataset browser</a> and the distribution of videos along the top-level verticals, and illustrate the dataset&#8217;s scale and diversity.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://4.bp.blogspot.com/-nyrn6uJpjtk/V-vwHkrY5JI/AAAAAAAABRU/uqjVCmFGq_gSfVRlEeyHRkcirHwE3BNfQCLcB/s1600/image07.png"><img border="0" height="428" src="https://4.bp.blogspot.com/-nyrn6uJpjtk/V-vwHkrY5JI/AAAAAAAABRU/uqjVCmFGq_gSfVRlEeyHRkcirHwE3BNfQCLcB/s640/image07.png" width="640"></a></td></tr><tr><td>A <a href="https://research.google.com/youtube8m/explore.html">dataset explorer </a>allows browsing and searching the full vocabulary of Knowledge Graph entities, grouped in 24 top-level verticals, along with corresponding videos. This screenshot depicts a subset of dataset videos annotated with the entity &#8220;Guitar&#8221;.</td></tr></tbody></table><div></div><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="https://1.bp.blogspot.com/-a9S_rpU77wk/V-vwjxMX96I/AAAAAAAABRc/x8OI8UrD0tgyjSfNc49cwq2PLI1ooMntQCLcB/s1600/image09.png"><img border="0" height="480" src="https://1.bp.blogspot.com/-a9S_rpU77wk/V-vwjxMX96I/AAAAAAAABRc/x8OI8UrD0tgyjSfNc49cwq2PLI1ooMntQCLcB/s640/image09.png" width="640"></a></td></tr><tr><td>The distribution of videos in the top-level verticals illustrates the scope and diversity of the dataset and reflects the natural distribution of popular YouTube videos.</td></tr></tbody></table>To address (2), we had to overcome the storage and computational resource bottlenecks that researchers face when working with videos. Pursuing video understanding at YouTube-8M&#8217;s scale would normally require a petabyte of video storage and dozens of CPU-years worth of processing.  To make the dataset useful to researchers and students with limited computational resources, we pre-processed the videos and extracted frame-level <a href="https://en.wikipedia.org/wiki/Feature_(machine_learning)">features</a> using a state-of-the-art deep learning model--the publicly available <a href="https://www.tensorflow.org/versions/r0.9/tutorials/image_recognition/index.html">Inception-V3 image annotation model</a> trained on ImageNet. These features are extracted at 1 frame-per-second temporal resolution, from 1.9 billion video frames, and are further compressed to fit on a single commodity hard disk (less than 1.5 TB).  This makes it possible to download this dataset and train a baseline <a href="https://www.tensorflow.org/">TensorFlow</a> model at full scale on a single GPU in less than a day!<br /><br />We believe this dataset can significantly accelerate research on video understanding as it enables researchers and students without access to big data or big machines to do their research at previously unprecedented scale. We hope this dataset will spur exciting new research on video modeling architectures and representation learning, especially approaches that deal effectively with noisy or incomplete labels, transfer learning and domain adaptation.  In fact, we show that pre-training models on this dataset and applying / fine-tuning on other external datasets leads to state of the art performance on them (e.g.&#160;<a href="http://activity-net.org/">ActivityNet,</a> <a href="https://github.com/gtoderici/sports-1m-dataset">Sports-1M</a>). You can read all about our experiments using this dataset, along with more details on how we constructed it, in our <a href="http://arxiv.org/abs/1609.08675">technical report</a>.]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Sudheendra Vijayanarasimhan and Paul Natsev, Software Engineers</span><br /><br />Many recent breakthroughs in machine learning and machine perception have come from the availability of large labeled datasets, such as <a href="http://www.image-net.org/">ImageNet</a>, which has millions of images labeled with thousands of classes. Their availability has significantly accelerated research in image understanding, for example on <a href="http://googleresearch.blogspot.com/2014/09/building-deeper-understanding-of-images.html">detecting and classifying objects in static images</a>.<br /><br /><a href="https://research.googleblog.com/2015/04/beyond-short-snippets-deep-networks-for.html">Video analysis</a> provides even more information for detecting and recognizing objects, and understanding human actions and interactions with the world.  Improving video understanding can lead to better video search and discovery, similarly to how image understanding <a href="https://googleblog.blogspot.com/2015/05/picture-this-fresh-approach-to-photos.html">helped re-imagine the photos experience</a>. However, one of the key bottlenecks for further advancements in this area has been the lack of real-world video datasets with the same scale and diversity as image datasets. <br /><br />Today, we are excited to announce the release of <a href="https://research.google.com/youtube8m">YouTube-8M</a>, a dataset of 8 million YouTube video URLs (representing over 500,000 hours of video), along with video-level labels from a diverse set of 4800 <a href="https://developers.google.com/knowledge-graph/">Knowledge Graph</a> entities.  This represents a significant increase in scale and diversity compared to existing video datasets. For example, <a href="https://github.com/gtoderici/sports-1m-dataset">Sports-1M</a>, the largest existing labeled video dataset we are aware of, has around 1 million YouTube videos and 500 sports-specific classes--YouTube-8M represents nearly an <i>order of magnitude increase</i> in both number of videos <i>and</i> classes.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-7TeQwPP34iE/V-vnyZPp0dI/AAAAAAAABRA/uH19ST1iJdITzX73A8Uu5HMRjTrLvWc-QCEw/s1600/image08.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="74" src="https://2.bp.blogspot.com/-7TeQwPP34iE/V-vnyZPp0dI/AAAAAAAABRA/uH19ST1iJdITzX73A8Uu5HMRjTrLvWc-QCEw/s640/image08.png" width="640" /></a></div>In order to construct a labeled video dataset of this scale, we needed to address two key challenges: (1) video is much more time-consuming to annotate manually than images, and (2) video is very computationally expensive to process and store. To overcome (1), we turned to YouTube and its video annotation system, which identifies relevant Knowledge Graph topics for all public YouTube videos.  While these annotations are machine-generated, they incorporate powerful user engagement signals from millions of users as well as video metadata and content analysis. As a result, the quality of these annotations is sufficiently high to be useful for video understanding research and benchmarking purposes. <br /><div class="separator" style="clear: both; text-align: center;"><iframe height="400px" src="https://research.google.com/youtube8m/tagcloud.html" width="100%"> </iframe><br /></div>To ensure the stability and quality of the labeled video dataset, we used only public videos with more than 1000 views, and we constructed a diverse vocabulary of entities, which are visually observable and sufficiently frequent. The vocabulary construction was a combination of frequency analysis, automated filtering, verification by human raters that the entities are visually observable, and grouping into 24 top-level verticals (more details in our <a href="http://arxiv.org/abs/1609.08675">technical report</a>). The figures below depict the <a href="https://research.google.com/youtube8m/explore.html">dataset browser</a> and the distribution of videos along the top-level verticals, and illustrate the dataset’s scale and diversity.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="https://4.bp.blogspot.com/-nyrn6uJpjtk/V-vwHkrY5JI/AAAAAAAABRU/uqjVCmFGq_gSfVRlEeyHRkcirHwE3BNfQCLcB/s1600/image07.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="428" src="https://4.bp.blogspot.com/-nyrn6uJpjtk/V-vwHkrY5JI/AAAAAAAABRU/uqjVCmFGq_gSfVRlEeyHRkcirHwE3BNfQCLcB/s640/image07.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">A <a href="https://research.google.com/youtube8m/explore.html">dataset explorer </a>allows browsing and searching the full vocabulary of Knowledge Graph entities, grouped in 24 top-level verticals, along with corresponding videos. This screenshot depicts a subset of dataset videos annotated with the entity “Guitar”.</td></tr></tbody></table><div class="separator" style="clear: both; text-align: center;"></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="https://1.bp.blogspot.com/-a9S_rpU77wk/V-vwjxMX96I/AAAAAAAABRc/x8OI8UrD0tgyjSfNc49cwq2PLI1ooMntQCLcB/s1600/image09.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="480" src="https://1.bp.blogspot.com/-a9S_rpU77wk/V-vwjxMX96I/AAAAAAAABRc/x8OI8UrD0tgyjSfNc49cwq2PLI1ooMntQCLcB/s640/image09.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">The distribution of videos in the top-level verticals illustrates the scope and diversity of the dataset and reflects the natural distribution of popular YouTube videos.</td></tr></tbody></table>To address (2), we had to overcome the storage and computational resource bottlenecks that researchers face when working with videos. Pursuing video understanding at YouTube-8M’s scale would normally require a petabyte of video storage and dozens of CPU-years worth of processing.  To make the dataset useful to researchers and students with limited computational resources, we pre-processed the videos and extracted frame-level <a href="https://en.wikipedia.org/wiki/Feature_(machine_learning)">features</a> using a state-of-the-art deep learning model--the publicly available <a href="https://www.tensorflow.org/versions/r0.9/tutorials/image_recognition/index.html">Inception-V3 image annotation model</a> trained on ImageNet. These features are extracted at 1 frame-per-second temporal resolution, from 1.9 billion video frames, and are further compressed to fit on a single commodity hard disk (less than 1.5 TB).  This makes it possible to download this dataset and train a baseline <a href="https://www.tensorflow.org/">TensorFlow</a> model at full scale on a single GPU in less than a day!<br /><br />We believe this dataset can significantly accelerate research on video understanding as it enables researchers and students without access to big data or big machines to do their research at previously unprecedented scale. We hope this dataset will spur exciting new research on video modeling architectures and representation learning, especially approaches that deal effectively with noisy or incomplete labels, transfer learning and domain adaptation.  In fact, we show that pre-training models on this dataset and applying / fine-tuning on other external datasets leads to state of the art performance on them (e.g.&nbsp;<a href="http://activity-net.org/">ActivityNet,</a> <a href="https://github.com/gtoderici/sports-1m-dataset">Sports-1M</a>). You can read all about our experiments using this dataset, along with more details on how we constructed it, in our <a href="http://arxiv.org/abs/1609.08675">technical report</a>.]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/announcing-youtube-8m-a-large-and-diverse-labeled-video-dataset-for-video-understanding-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>6 Online Video Insights from comScore to Inform Your 2017 Media Plan</title>
		<link>https://googledata.org/google-adwords/6-online-video-insights-from-comscore-to-inform-your-2017-media-plan/</link>
		<comments>https://googledata.org/google-adwords/6-online-video-insights-from-comscore-to-inform-your-2017-media-plan/#comments</comments>
		<pubDate>Thu, 23 Jun 2016 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=ceec1155144e206310f17f2835e8981f</guid>
		<description><![CDATA[<div dir="ltr">As marketers kick off 2017 planning, consumer preference for online video is higher than ever. Today&#8217;s study from comScore, commissioned by Google, shows that adults are 30% more likely to prefer online video platforms over TV when given a choice where to watch video content. Does your media plan reflect that kind of preference?<br /><br />If online video is your audience&#8217;s priority, it should be your media plan&#8217;s priority, too. We dug into the recent study and came up with six things to keep in mind about this changing audience as you develop your 2017 plan:<br /><h3>1. They Prefer Online Video Platforms to TV&#160;</h3>The popularity of online video continues to grow. Today, when given a choice where to watch video, adults prefer online video platforms 30% more than watching on TV. Among millennials, that number jumps to 105%.<br /><div><a href="https://4.bp.blogspot.com/-wbKyeLu4mvg/V2sm3S_If6I/AAAAAAAACac/GopAeeYtvaUFBlyTCLUVT2T-01ELVURcwCLcB/s1600/YT_ComScore_Blog-Post_061516_A.png"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://4.bp.blogspot.com/-wbKyeLu4mvg/V2sm3S_If6I/AAAAAAAACac/GopAeeYtvaUFBlyTCLUVT2T-01ELVURcwCLcB/s640/YT_ComScore_Blog-Post_061516_A.png" width="640"></a></div><br /><h3>2. People Watching Long &#38; Short-Form Video Prefer YouTube&#160;</h3>Among viewers that watch both long and short-form content, 81% cite a preference for YouTube, making it the #1 choice. Compare that to the next-highest choice, TV, which earned just 56% of viewer votes.<br /><div><a href="https://2.bp.blogspot.com/-5QylqmSHXow/V2snGpgG6_I/AAAAAAAACak/0waTQGqsUg01aBypbPRdAJa5OWjK91aIwCLcB/s1600/YT_ComScore_Blog-Post_061516_B.png"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://2.bp.blogspot.com/-5QylqmSHXow/V2snGpgG6_I/AAAAAAAACak/0waTQGqsUg01aBypbPRdAJa5OWjK91aIwCLcB/s640/YT_ComScore_Blog-Post_061516_B.png" width="640"></a></div><br /><h3>3. They Choose YouTube Over Other Online Video Providers&#160;</h3>YouTube also wins when compared to other online video providers. When asked to pick one online video platform, 48% of adults chose YouTube (vs. 29% for Netflix and 10% for Facebook):<br /><br /><h3>4. Viewers Take Action on Video Ads, Especially on Short-Form Content&#160;</h3>Online video has forever changed the media landscape, with more than half of all people regularly watching short-form videos (like branded content or viral videos), and two-thirds of millennials watching short-form weekly.<br /><br />That&#8217;s good news for brands: comScore&#8217;s research shows viewers are more likely to take action after watching ads on short-form content compared to traditional content (like movies and tv shows). Taking action could include sharing on social media, looking for more information about the brand advertised, recommending the brand or product, etc.<br /><br /><h3>5. They Prefer YouTube for Branded Content and Videos&#160;</h3>Uploaded by Users.  We already heard that adults who watch short and long-form content prefer YouTube, but it&#8217;s also preferred across multiple content types. For example, 74% of adults prefer YouTube for videos uploaded by users and&#8212;critically&#8212;69% prefer YouTube for videos uploaded by brands, companies, and institutions.<br /><div><a href="https://3.bp.blogspot.com/-YGGDWuJY0t4/V2snRlS6O2I/AAAAAAAACas/3zkpQ1OeNZcbseBkF7RbqITP3YUiDLA4wCLcB/s1600/YT_ComScore_Blog-Post_061516_C.gif"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://3.bp.blogspot.com/-YGGDWuJY0t4/V2snRlS6O2I/AAAAAAAACas/3zkpQ1OeNZcbseBkF7RbqITP3YUiDLA4wCLcB/s640/YT_ComScore_Blog-Post_061516_C.gif" width="640"></a></div><br /><h3>6. YouTube Super-users May Surprise You&#160;</h3>The final part of comScore&#8217;s research examined YouTube&#8217;s most passionate fans&#8212;&#8220;die hards&#8221;&#8212;and they aren&#8217;t who you might expect. Many are parents, live in a city, and 49% are women:     <span>&#160;</span><br /><br /><div><a href="https://3.bp.blogspot.com/-EtxADGMN32A/V2snZZrhxTI/AAAAAAAACa0/AU49Oh4D8BgdH_GcApmRZMmJ0M_Bz2zmQCLcB/s1600/YT_ComScore_Blog-Post_061516_D.png"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://3.bp.blogspot.com/-EtxADGMN32A/V2snZZrhxTI/AAAAAAAACa0/AU49Oh4D8BgdH_GcApmRZMmJ0M_Bz2zmQCLcB/s640/YT_ComScore_Blog-Post_061516_D.png" width="640"></a></div><br /><br /><span><i>Posted by: <br />Celie O'Neil-Hart, Product Marketing Manager, YouTube B2B<br />Howard Blumenstein, Product Marketing Manager, Strategy and Insights, YouTube B2B</i></span></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">As marketers kick off 2017 planning, consumer preference for online video is higher than ever. Today’s study from comScore, commissioned by Google, shows that adults are 30% more likely to prefer online video platforms over TV when given a choice where to watch video content. Does your media plan reflect that kind of preference?<br /><br />If online video is your audience’s priority, it should be your media plan’s priority, too. We dug into the recent study and came up with six things to keep in mind about this changing audience as you develop your 2017 plan:<br /><h3 style="text-align: left;">1. They Prefer Online Video Platforms to TV&nbsp;</h3>The popularity of online video continues to grow. Today, when given a choice where to watch video, adults prefer online video platforms 30% more than watching on TV. Among millennials, that number jumps to 105%.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-wbKyeLu4mvg/V2sm3S_If6I/AAAAAAAACac/GopAeeYtvaUFBlyTCLUVT2T-01ELVURcwCLcB/s1600/YT_ComScore_Blog-Post_061516_A.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://4.bp.blogspot.com/-wbKyeLu4mvg/V2sm3S_If6I/AAAAAAAACac/GopAeeYtvaUFBlyTCLUVT2T-01ELVURcwCLcB/s640/YT_ComScore_Blog-Post_061516_A.png" width="640" /></a></div><br /><h3 style="text-align: left;">2. People Watching Long &amp; Short-Form Video Prefer YouTube&nbsp;</h3>Among viewers that watch both long and short-form content, 81% cite a preference for YouTube, making it the #1 choice. Compare that to the next-highest choice, TV, which earned just 56% of viewer votes.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-5QylqmSHXow/V2snGpgG6_I/AAAAAAAACak/0waTQGqsUg01aBypbPRdAJa5OWjK91aIwCLcB/s1600/YT_ComScore_Blog-Post_061516_B.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://2.bp.blogspot.com/-5QylqmSHXow/V2snGpgG6_I/AAAAAAAACak/0waTQGqsUg01aBypbPRdAJa5OWjK91aIwCLcB/s640/YT_ComScore_Blog-Post_061516_B.png" width="640" /></a></div><br /><h3 style="text-align: left;">3. They Choose YouTube Over Other Online Video Providers&nbsp;</h3>YouTube also wins when compared to other online video providers. When asked to pick one online video platform, 48% of adults chose YouTube (vs. 29% for Netflix and 10% for Facebook):<br /><br /><h3 style="text-align: left;">4. Viewers Take Action on Video Ads, Especially on Short-Form Content&nbsp;</h3>Online video has forever changed the media landscape, with more than half of all people regularly watching short-form videos (like branded content or viral videos), and two-thirds of millennials watching short-form weekly.<br /><br />That’s good news for brands: comScore’s research shows viewers are more likely to take action after watching ads on short-form content compared to traditional content (like movies and tv shows). Taking action could include sharing on social media, looking for more information about the brand advertised, recommending the brand or product, etc.<br /><br /><h3 style="text-align: left;">5. They Prefer YouTube for Branded Content and Videos&nbsp;</h3>Uploaded by Users.  We already heard that adults who watch short and long-form content prefer YouTube, but it’s also preferred across multiple content types. For example, 74% of adults prefer YouTube for videos uploaded by users and—critically—69% prefer YouTube for videos uploaded by brands, companies, and institutions.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-YGGDWuJY0t4/V2snRlS6O2I/AAAAAAAACas/3zkpQ1OeNZcbseBkF7RbqITP3YUiDLA4wCLcB/s1600/YT_ComScore_Blog-Post_061516_C.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://3.bp.blogspot.com/-YGGDWuJY0t4/V2snRlS6O2I/AAAAAAAACas/3zkpQ1OeNZcbseBkF7RbqITP3YUiDLA4wCLcB/s640/YT_ComScore_Blog-Post_061516_C.gif" width="640" /></a></div><br /><h3 style="text-align: left;">6. YouTube Super-users May Surprise You&nbsp;</h3>The final part of comScore’s research examined YouTube’s most passionate fans—“die hards”—and they aren’t who you might expect. Many are parents, live in a city, and 49% are women:     <span class="byline-author">&nbsp;</span><br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-EtxADGMN32A/V2snZZrhxTI/AAAAAAAACa0/AU49Oh4D8BgdH_GcApmRZMmJ0M_Bz2zmQCLcB/s1600/YT_ComScore_Blog-Post_061516_D.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img alt="6 Online Video Insights from comScore to Inform Your 2017 Media Plan" border="0" height="320" src="https://3.bp.blogspot.com/-EtxADGMN32A/V2snZZrhxTI/AAAAAAAACa0/AU49Oh4D8BgdH_GcApmRZMmJ0M_Bz2zmQCLcB/s640/YT_ComScore_Blog-Post_061516_D.png" width="640" /></a></div><br /><br /><span class="byline-author"><i>Posted by: <br />Celie O'Neil-Hart, Product Marketing Manager, YouTube B2B<br />Howard Blumenstein, Product Marketing Manager, Strategy and Insights, YouTube B2B</i></span></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/6-online-video-insights-from-comscore-to-inform-your-2017-media-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>[VIDEO] Get paid. Learn about AdSense payments</title>
		<link>https://googledata.org/youtube/video-get-paid-learn-about-adsense-payments/</link>
		<comments>https://googledata.org/youtube/video-get-paid-learn-about-adsense-payments/#comments</comments>
		<pubDate>Tue, 24 May 2016 18:30:00 +0000</pubDate>
		<dc:creator><![CDATA[John A.Smith]]></dc:creator>
				<category><![CDATA[Google Adsense]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[adsense google]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=ed09f8ab160414b314e0dfeef81e41f0</guid>
		<description><![CDATA[<div dir="ltr"><div><br /></div>A picture is worth a thousand words, even in the digital age.&#160;Today, we're excited to announce the first of a series of videos addressing some of our most frequently asked questions:<br /><br /><b>When Will I Get Paid? </b><br />Watch it to learn more about how to get paid, and let us know what you think.&#160;#AdSense101<br /><br /><br /><br /><br /><br />Stay tuned for other #AdSense101 videos throughout the year. &#160;Is there something else you&#8217;d like to learn more about? Let us know in the comments below.<br /><br /><br /><br /><div><img border="0" height="80" src="https://2.bp.blogspot.com/-k4K0e6VpWAU/Vxj0amNDnGI/AAAAAAAAFEs/A3adzpoMUt08VWGypCkuR3sdnS5rYtt0gCLcB/s1600/ORZt9A4GuQM.png" width="78"></div><br /><div><br /><br />Posted by Barbara Sarti</div><div><i>Google AdSense Team</i></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><div class="separator" style="clear: both; text-align: center;"><br /></div>A picture is worth a thousand words, even in the digital age.&nbsp;Today, we're excited to announce the first of a series of videos addressing some of our most frequently asked questions:<br /><br /><b>When Will I Get Paid? </b><br />Watch it to learn more about how to get paid, and let us know what you think.&nbsp;#AdSense101<br /><br /><br /><iframe allowfullscreen="" frameborder="0" height="360" src="https://www.youtube.com/embed/HhStIkh0whE" width="640"></iframe><br /><br /><br />Stay tuned for other #AdSense101 videos throughout the year. &nbsp;Is there something else you’d like to learn more about? Let us know in the comments below.<br /><br /><br /><br /><div class="separator" style="clear: both; text-align: center;"><img border="0" height="80" src="https://2.bp.blogspot.com/-k4K0e6VpWAU/Vxj0amNDnGI/AAAAAAAAFEs/A3adzpoMUt08VWGypCkuR3sdnS5rYtt0gCLcB/s1600/ORZt9A4GuQM.png" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" width="78" /></div><br /><div><br /><br />Posted by Barbara Sarti</div><div><i>Google AdSense Team</i></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/video-get-paid-learn-about-adsense-payments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>More ways for schools &amp; organizations to manage YouTube</title>
		<link>https://googledata.org/google-apps/more-ways-for-schools-organizations-to-manage-youtube/</link>
		<comments>https://googledata.org/google-apps/more-ways-for-schools-organizations-to-manage-youtube/#comments</comments>
		<pubDate>Tue, 26 Apr 2016 19:27:00 +0000</pubDate>
		<dc:creator><![CDATA[Jane Smith]]></dc:creator>
				<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[gmail for domains]]></category>
		<category><![CDATA[google apps enterprise]]></category>
		<category><![CDATA[google apps free]]></category>
		<category><![CDATA[google apps gmail]]></category>
		<category><![CDATA[google apps standard]]></category>
		<category><![CDATA[google apps sync]]></category>
		<category><![CDATA[google calendar]]></category>
		<category><![CDATA[google chat]]></category>
		<category><![CDATA[Google Docs]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=144d884dbe93ec5c706ba72877647f21</guid>
		<description><![CDATA[<div dir="ltr">Posted by Matt Ward, Software Engineer<br /><i><br /></i><i>(Cross-posted on <a href="http://googleforeducation.blogspot.com/2016/04/more-ways-for-schools-organizations-to.html" target="_blank">Google for Education blog</a>)&#160;</i><br /><br />In August 2015 we <a href="http://googleappsupdates.blogspot.com/2015/08/new-settings-in-admin-console-for.html" target="_blank">launched YouTube Settings in Google Apps</a> to give schools and other organizations a way to manage the YouTube experience for users logged in to their domains and on networks they manage. Today we&#8217;re happy to announce a number of new features to make these more flexible and easier to use.<br /><br /><b>Channel whitelisting</b><br />Administrators and designated approvers can now whitelist entire channels, not just individual videos. For example, if you want to ensure that all current and future videos uploaded to your organization or school&#8217;s channel are watchable by your users, you can now simply add the entire channel to your approved list. <a href="https://support.google.com/a/answer/6208224?hl=en&#38;ref_topic=6248111" target="_blank">Learn how to designate approvers</a>.<br /><div><a href="https://2.bp.blogspot.com/-HC0Z4sij5Io/Vx-eL_FObNI/AAAAAAAAEcM/wGjKcJX9OgkD6Ej-CE25Cm0nLDNc73b_gCLcB/s1600/yt-settings-1.png"><img border="0" height="444" src="https://2.bp.blogspot.com/-HC0Z4sij5Io/Vx-eL_FObNI/AAAAAAAAEcM/wGjKcJX9OgkD6Ej-CE25Cm0nLDNc73b_gCLcB/s640/yt-settings-1.png" width="640"></a></div><div><i><span>Using YouTube settings in Google Apps for Education already gives your users access to all the videos on educational YouTube channels like <a href="https://www.youtube.com/user/1veritasium" target="_blank">Veritasium</a>, but now your domain&#8217;s video approvers can add other channels as well, like your school&#8217;s YouTube channel.</span></i></div><br /><b>More flexible options for administrators</b><br />Administrators have new capabilities to help them manage YouTube to meet the needs of their organization.<br /><ul><li>Administrators can now <a href="https://admin.google.com/AdminHome?fral=1#AppDetails:service=YouTube&#38;flyout=YOUTUBE_PERMISSIONS" target="_blank">choose</a> between two levels of Restricted Mode restrictions -- strict or moderate -- for their logged-in users.&#160;</li></ul><div><a href="https://3.bp.blogspot.com/-ri9SSk2ldx8/Vx-f0uYjfFI/AAAAAAAAEcc/jd5VabQp1HAMOCUeGot8XIEIOlGlM-LdgCLcB/s1600/yt-settings-2.png"><img border="0" height="220" src="https://3.bp.blogspot.com/-ri9SSk2ldx8/Vx-f0uYjfFI/AAAAAAAAEcc/jd5VabQp1HAMOCUeGot8XIEIOlGlM-LdgCLcB/s640/yt-settings-2.png" width="640"></a></div><div><i><span>Admins can select between a strict and moderate level of restriction for YouTube.&#160;</span></i></div><ul><li>Network managers can now <a href="https://support.google.com/a/answer/6214622" target="_blank">use an HTTP header</a> to enforce either strict or moderate restricted mode on managed devices.&#160;</li><li>Network managers can also <a href="https://support.google.com/a/answer/6214622" target="_blank">use this new DNS configuration</a> if they want to enforce moderate restricted mode on wifi networks they manage.</li><li>Coming soon, logged-out users on YouTube&#8217;s mobile apps on restricted networks will also get a restricted experience.&#160;</li><li>And since we know this can be tricky to set up, network managers can <a href="https://www.youtube.com/check_content_restrictions" target="_blank">visit this page</a> to ensure their network restrictions have been configured correctly.&#160;</li></ul><b><br /></b><b>YouTube for Schools</b><br />In August we announced that we would no longer be maintaining YouTube for Schools (YT4S). As of July 1, 2016, YT4S will no longer be available. View the <a href="https://support.google.com/a/topic/6206681" target="_blank">YouTube Settings in Google Apps Help Center</a> for additional details.<br /><br /><b>More information</b><br />Learn how to <a href="https://support.google.com/a/answer/6214622" target="_blank">enable YouTube settings for your Google Apps domain</a> and <a href="https://productforums.google.com/forum/#!topicsearchin/google-education/category%243A(youtube-for-schools)%2420is%243Afirstpost%7Csort:relevance" target="_blank">join the discussion</a> in the product forum.<br /><br /><hr /><br /><b>Launch Details</b><br /><i>Release track:<span> </span></i><br />Launching to both Rapid release and Scheduled release<br /><br /><i>Rollout pace:&#160;</i><br />Full rollout (1-3 days for feature visibility)<br /><br /><i>Impact:&#160;</i><br />Admins only<br /><span> </span><br /><i>Action:</i><span> </span><br />Admin action suggested/FYI<br /><br /><br /><i><span>Note: all launches are applicable to all Google Apps editions unless otherwise noted</span></i><br /><br /><a href="http://whatsnew.googleapps.com/"><b>Launch release calendar</b></a><br /><a href="http://googleappsupdates.blogspot.com/2015/07/google-apps-launch-announcement.html"><b>Launch detail categories</b></a><br /><a href="http://feedburner.google.com/fb/a/mailverify?uri=GoogleAppsUpdates&#38;loc=en_US"><b>Get these product update alerts by email</b></a><br /><a href="http://googleappsupdates.blogspot.com/atom.xml"><b>Subscribe to the RSS feed of these updates</b></a></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Posted by Matt Ward, Software Engineer<br /><i><br /></i><i>(Cross-posted on <a href="http://googleforeducation.blogspot.com/2016/04/more-ways-for-schools-organizations-to.html" >Google for Education blog</a>)&nbsp;</i><br /><br />In August 2015 we <a href="http://googleappsupdates.blogspot.com/2015/08/new-settings-in-admin-console-for.html" >launched YouTube Settings in Google Apps</a> to give schools and other organizations a way to manage the YouTube experience for users logged in to their domains and on networks they manage. Today we’re happy to announce a number of new features to make these more flexible and easier to use.<br /><br /><b>Channel whitelisting</b><br />Administrators and designated approvers can now whitelist entire channels, not just individual videos. For example, if you want to ensure that all current and future videos uploaded to your organization or school’s channel are watchable by your users, you can now simply add the entire channel to your approved list. <a href="https://support.google.com/a/answer/6208224?hl=en&amp;ref_topic=6248111" >Learn how to designate approvers</a>.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://2.bp.blogspot.com/-HC0Z4sij5Io/Vx-eL_FObNI/AAAAAAAAEcM/wGjKcJX9OgkD6Ej-CE25Cm0nLDNc73b_gCLcB/s1600/yt-settings-1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="444" src="https://2.bp.blogspot.com/-HC0Z4sij5Io/Vx-eL_FObNI/AAAAAAAAEcM/wGjKcJX9OgkD6Ej-CE25Cm0nLDNc73b_gCLcB/s640/yt-settings-1.png" width="640" /></a></div><div style="text-align: center;"><i><span style="font-size: x-small;">Using YouTube settings in Google Apps for Education already gives your users access to all the videos on educational YouTube channels like <a href="https://www.youtube.com/user/1veritasium" >Veritasium</a>, but now your domain’s video approvers can add other channels as well, like your school’s YouTube channel.</span></i></div><br /><b>More flexible options for administrators</b><br />Administrators have new capabilities to help them manage YouTube to meet the needs of their organization.<br /><ul style="text-align: left;"><li>Administrators can now <a href="https://admin.google.com/AdminHome?fral=1#AppDetails:service=YouTube&amp;flyout=YOUTUBE_PERMISSIONS" >choose</a> between two levels of Restricted Mode restrictions -- strict or moderate -- for their logged-in users.&nbsp;</li></ul><div class="separator" style="clear: both; text-align: center;"><a href="https://3.bp.blogspot.com/-ri9SSk2ldx8/Vx-f0uYjfFI/AAAAAAAAEcc/jd5VabQp1HAMOCUeGot8XIEIOlGlM-LdgCLcB/s1600/yt-settings-2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="220" src="https://3.bp.blogspot.com/-ri9SSk2ldx8/Vx-f0uYjfFI/AAAAAAAAEcc/jd5VabQp1HAMOCUeGot8XIEIOlGlM-LdgCLcB/s640/yt-settings-2.png" width="640" /></a></div><div style="text-align: center;"><i><span style="font-size: x-small;">Admins can select between a strict and moderate level of restriction for YouTube.&nbsp;</span></i></div><ul style="text-align: left;"><li>Network managers can now <a href="https://support.google.com/a/answer/6214622" >use an HTTP header</a> to enforce either strict or moderate restricted mode on managed devices.&nbsp;</li><li>Network managers can also <a href="https://support.google.com/a/answer/6214622" >use this new DNS configuration</a> if they want to enforce moderate restricted mode on wifi networks they manage.</li><li>Coming soon, logged-out users on YouTube’s mobile apps on restricted networks will also get a restricted experience.&nbsp;</li><li>And since we know this can be tricky to set up, network managers can <a href="https://www.youtube.com/check_content_restrictions" >visit this page</a> to ensure their network restrictions have been configured correctly.&nbsp;</li></ul><b><br /></b><b>YouTube for Schools</b><br />In August we announced that we would no longer be maintaining YouTube for Schools (YT4S). As of July 1, 2016, YT4S will no longer be available. View the <a href="https://support.google.com/a/topic/6206681" >YouTube Settings in Google Apps Help Center</a> for additional details.<br /><br /><b>More information</b><br />Learn how to <a href="https://support.google.com/a/answer/6214622" >enable YouTube settings for your Google Apps domain</a> and <a href="https://productforums.google.com/forum/#!topicsearchin/google-education/category$3A(youtube-for-schools)$20is$3Afirstpost%7Csort:relevance" >join the discussion</a> in the product forum.<br /><br /><hr /><br /><b>Launch Details</b><br /><i>Release track:<span class="Apple-tab-span" style="white-space: pre;"> </span></i><br />Launching to both Rapid release and Scheduled release<br /><br /><i>Rollout pace:&nbsp;</i><br />Full rollout (1-3 days for feature visibility)<br /><br /><i>Impact:&nbsp;</i><br />Admins only<br /><span class="Apple-tab-span" style="white-space: pre;"> </span><br /><i>Action:</i><span class="Apple-tab-span" style="white-space: pre;"> </span><br />Admin action suggested/FYI<br /><br /><br /><i><span style="color: #999999; font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: x-small;">Note: all launches are applicable to all Google Apps editions unless otherwise noted</span></i><br /><br /><a href="http://whatsnew.googleapps.com/"><b>Launch release calendar</b></a><br /><a href="http://googleappsupdates.blogspot.com/2015/07/google-apps-launch-announcement.html"><b>Launch detail categories</b></a><br /><a href="http://feedburner.google.com/fb/a/mailverify?uri=GoogleAppsUpdates&amp;loc=en_US"><b>Get these product update alerts by email</b></a><br /><a href="http://googleappsupdates.blogspot.com/atom.xml"><b>Subscribe to the RSS feed of these updates</b></a></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-apps/more-ways-for-schools-organizations-to-manage-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Showing how YouTube ads drive sales for CPG brands with Oracle Data Cloud</title>
		<link>https://googledata.org/google-adwords/showing-how-youtube-ads-drive-sales-for-cpg-brands-with-oracle-data-cloud/</link>
		<comments>https://googledata.org/google-adwords/showing-how-youtube-ads-drive-sales-for-cpg-brands-with-oracle-data-cloud/#comments</comments>
		<pubDate>Tue, 19 Apr 2016 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=d404da96917c0c126dd8aef4c918532a</guid>
		<description><![CDATA[<div dir="ltr">Measuring the impact of online video is something of a passion for us at Google. It&#8217;s been three years since we <a href="http://adwords.blogspot.com/2013/03/measuring-brand-lift-with-google.html" target="_blank">unveiled Brand Lift for YouTube</a> and brands <a href="https://www.thinkwithgoogle.com/articles/online-video-ads-drive-consideration-favorability-purchase-intent-sales.html" target="_blank">have seen great success</a>. But the last piece of the puzzle has been how does online video drive offline sales? This is particularly true for consumer packaged goods (CPG) companies, for which the vast majority of sales &#8211; <a href="https://www.census.gov/retail/mrts/www/data/pdf/ec_current.pdf" target="_blank">over 90%</a> &#8211; happen offline. Thanks to our new integration with Oracle Data Cloud &#8211; a leader in the emerging Data as a Service (DaaS) industry that measures the sales impact of digital media &#8211; we now have a solution to answer that question. Today we&#8217;re announcing the availability of sales lift studies in the US, for CPG advertisers using TrueView video ads.<br /><h3><b>The value of video&#160;</b></h3>We&#8217;ve been testing this capability for a while, and have seen promising early results: <b>78% of TrueView campaigns we studied on YouTube showed an increase in offline sales, with 61% driving a statistically significant lift in sales of the advertised brand.<sup>1</sup></b><br /><br />To build this solution we worked with Oracle Data Cloud to develop the first in-depth application of their DLX ROI product on video formats, and we studied a range of CPG video campaigns running TrueView ads across food, health and beauty, beverage and homecare. We built this with privacy at the center, and no personal data is exchanged between the companies.<br /><h3>Early client successes&#160;</h3>One campaign we measured, Gatorade&#8217;s &#8220;We Love Sweat,&#8221; earned <b>$13.50 sales in return for every dollar spent on TrueView</b> (return on ad spend, or ROAS). This stunning success was due in part to persistent branding and strong creative geared specifically for driving sales. Gatorade&#8217;s campaign was also interesting because it delivered a remarkable <b>16% lift in sales among new buyers that had seen the video vs. new buyers that had not </b>&#8211; according to Oracle Data Cloud a typical lift in this metric hovers around 2.5%.<br /><br />Similar to Gatorade, parent company PepsiCo also saw sales lift success with their campaign for Doritos. Not only did our DLX ROI solution show that their 30-second creative drove higher lift in sales among exposed households than a 15-second version, but they saw <b>particular targeting techniques &#8211; namely topic targeting and remarketing &#8211; drove greater sales lift compared to a demographic target.   </b><br /><br />Mars also participated in our DLX ROI test for their Pedigree pet food brand, and the sales lift studies helped them make key creative decisions. They tested a video that opened with strong branding against one that saved their branding for the end, and learned that the video with strong upfront branding drove <b>nearly 7x greater sales lift</b>. As Laurent Larguinat, Global Director of Mars Consumer and Market Insights said, &#8220;With this new offering, YouTube is rounding out a full funnel measurement solution for video. We're excited to continue to see these results for all of our campaigns."<br /><br />This new sales lift offering drops the last piece into place for full funnel measurement of CPG campaigns on YouTube, and we&#8217;re excited to bring you new creative and media strategy insights that drive incremental sales as we scale these studies.<br /><br /><i>Posted by Mark Thomas, Brand Measurement Product Manager</i><br /><div><i><span>1. Google/Oracle Data Cloud Sales Lift Meta Analysis, US (TrueView CPG campaigns tested between April 2015 and March 2016) </span></i></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Measuring the impact of online video is something of a passion for us at Google. It’s been three years since we <a href="http://adwords.blogspot.com/2013/03/measuring-brand-lift-with-google.html" >unveiled Brand Lift for YouTube</a> and brands <a href="https://www.thinkwithgoogle.com/articles/online-video-ads-drive-consideration-favorability-purchase-intent-sales.html" >have seen great success</a>. But the last piece of the puzzle has been how does online video drive offline sales? This is particularly true for consumer packaged goods (CPG) companies, for which the vast majority of sales – <a href="https://www.census.gov/retail/mrts/www/data/pdf/ec_current.pdf" >over 90%</a> – happen offline. Thanks to our new integration with Oracle Data Cloud – a leader in the emerging Data as a Service (DaaS) industry that measures the sales impact of digital media – we now have a solution to answer that question. Today we’re announcing the availability of sales lift studies in the US, for CPG advertisers using TrueView video ads.<br /><h3 style="text-align: left;"><b>The value of video&nbsp;</b></h3>We’ve been testing this capability for a while, and have seen promising early results: <b>78% of TrueView campaigns we studied on YouTube showed an increase in offline sales, with 61% driving a statistically significant lift in sales of the advertised brand.<sup>1</sup> </b><br /><br />To build this solution we worked with Oracle Data Cloud to develop the first in-depth application of their DLX ROI product on video formats, and we studied a range of CPG video campaigns running TrueView ads across food, health and beauty, beverage and homecare. We built this with privacy at the center, and no personal data is exchanged between the companies.<br /><h3 style="text-align: left;">Early client successes&nbsp;</h3>One campaign we measured, Gatorade’s “We Love Sweat,” earned <b>$13.50 sales in return for every dollar spent on TrueView</b> (return on ad spend, or ROAS). This stunning success was due in part to persistent branding and strong creative geared specifically for driving sales. Gatorade’s campaign was also interesting because it delivered a remarkable <b>16% lift in sales among new buyers that had seen the video vs. new buyers that had not </b>– according to Oracle Data Cloud a typical lift in this metric hovers around 2.5%.<br /><br />Similar to Gatorade, parent company PepsiCo also saw sales lift success with their campaign for Doritos. Not only did our DLX ROI solution show that their 30-second creative drove higher lift in sales among exposed households than a 15-second version, but they saw <b>particular targeting techniques – namely topic targeting and remarketing – drove greater sales lift compared to a demographic target.   </b><br /><br />Mars also participated in our DLX ROI test for their Pedigree pet food brand, and the sales lift studies helped them make key creative decisions. They tested a video that opened with strong branding against one that saved their branding for the end, and learned that the video with strong upfront branding drove <b>nearly 7x greater sales lift</b>. As Laurent Larguinat, Global Director of Mars Consumer and Market Insights said, “With this new offering, YouTube is rounding out a full funnel measurement solution for video. We're excited to continue to see these results for all of our campaigns."<br /><br />This new sales lift offering drops the last piece into place for full funnel measurement of CPG campaigns on YouTube, and we’re excited to bring you new creative and media strategy insights that drive incremental sales as we scale these studies.<br /><br /><i>Posted by Mark Thomas, Brand Measurement Product Manager</i><br /><div style="border-top: medium; color: inherit;"><i><span style="font-size: small;">1. Google/Oracle Data Cloud Sales Lift Meta Analysis, US (TrueView CPG campaigns tested between April 2015 and March 2016) </span></i></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/showing-how-youtube-ads-drive-sales-for-cpg-brands-with-oracle-data-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube and NBC News present Democratic primary debate in South Carolina</title>
		<link>https://googledata.org/google-blog/youtube-and-nbc-news-present-democratic-primary-debate-in-south-carolina/</link>
		<comments>https://googledata.org/google-blog/youtube-and-nbc-news-present-democratic-primary-debate-in-south-carolina/#comments</comments>
		<pubDate>Wed, 16 Dec 2015 18:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Blogs]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=dcfa1de3e1c2cef9ea5938dd5537387e</guid>
		<description><![CDATA[From presidential candidates <a href="https://www.youtube.com/watch?v=0uY7gLZDmn4">launching their campaigns</a>, to YouTube creators <a href="https://www.youtube.com/watch?v=MEX2J_sAdGs">discussing issues that matter to their communities</a>, to <a href="https://www.youtube.com/watch?v=nK2IlTweyLQ">light-hearted moments</a> along the campaign trail, you&#8217;ve already been following the 2016 U.S. election from multiple angles on YouTube. <br /><br />Now you can watch the candidates debate on YouTube, too.<br /><br />Next month, we&#8217;ll join together with NBC News to present the final DNC sanctioned Democratic presidential debate before the first caucus and primary votes are cast&#8212;with the action live streamed on YouTube. The NBC News-YouTube Democratic Candidates Debate, hosted by the Congressional Black Caucus Institute and moderated by Lester Holt, will take place on Sunday, January 17, 2016, in Charleston, S.C., airing on NBC from 9-11 p.m. ET and streamed live on the <a href="http://youtube.com/nbcnews">NBC News YouTube channel</a>. <br /><br />With so many YouTube fans following this election closely, of course there will be an opportunity for you to get involved. Along with Google Trends data, the debate will feature questions from the YouTube community. Look out for more information on how you can engage in the coming weeks.<br /><br />Since 2005 you&#8217;ve made YouTube a home for global politics, and today you watch more than 5 million hours of news on YouTube every day. Over the course of 2016, you&#8217;ll be able to find all of the major election moments unfold on YouTube&#8212;tune in to the <a href="http://youtube.com/nbcnews">NBC News YouTube channel</a> January 17 to kick off the election year. <br /><br /><span>Posted by Brandon Feldman, YouTube News, and Steve Grove, Google News Lab<br /></span>  <span> <span>IMAGE URL</span> <span>AUTHOR NAME</span> <span>AUTHOR TITLE</span> <span>AUTHOR TEAM</span> </span>]]></description>
				<content:encoded><![CDATA[From presidential candidates <a href="https://www.youtube.com/watch?v=0uY7gLZDmn4">launching their campaigns</a>, to YouTube creators <a href="https://www.youtube.com/watch?v=MEX2J_sAdGs">discussing issues that matter to their communities</a>, to <a href="https://www.youtube.com/watch?v=nK2IlTweyLQ">light-hearted moments</a> along the campaign trail, you’ve already been following the 2016 U.S. election from multiple angles on YouTube. <br /><br />Now you can watch the candidates debate on YouTube, too.<br /><br />Next month, we’ll join together with NBC News to present the final DNC sanctioned Democratic presidential debate before the first caucus and primary votes are cast—with the action live streamed on YouTube. The NBC News-YouTube Democratic Candidates Debate, hosted by the Congressional Black Caucus Institute and moderated by Lester Holt, will take place on Sunday, January 17, 2016, in Charleston, S.C., airing on NBC from 9-11 p.m. ET and streamed live on the <a href="http://youtube.com/nbcnews">NBC News YouTube channel</a>. <br /><br />With so many YouTube fans following this election closely, of course there will be an opportunity for you to get involved. Along with Google Trends data, the debate will feature questions from the YouTube community. Look out for more information on how you can engage in the coming weeks.<br /><br />Since 2005 you’ve made YouTube a home for global politics, and today you watch more than 5 million hours of news on YouTube every day. Over the course of 2016, you’ll be able to find all of the major election moments unfold on YouTube—tune in to the <a href="http://youtube.com/nbcnews">NBC News YouTube channel</a> January 17 to kick off the election year. <br /><br /><span class="byline-author">Posted by Brandon Feldman, YouTube News, and Steve Grove, Google News Lab<br /></span>  <span data-about-syndication="" style="display: none; font-size: 0; line-height: 0; max-height: 0; mso-hide: all; overflow: hidden;"> <span class="post-image">IMAGE URL</span> <span class="post-author-name">AUTHOR NAME</span> <span class="post-author-title">AUTHOR TITLE</span> <span class="post-author-team">AUTHOR TEAM</span> </span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/youtube-and-nbc-news-present-democratic-primary-debate-in-south-carolina/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Avoid Post-Turkey Crowds and Shop YouTube’s Awesome Stuff Week Gift Grab</title>
		<link>https://googledata.org/google-adwords/avoid-post-turkey-crowds-and-shop-youtubes-awesome-stuff-week-gift-grab/</link>
		<comments>https://googledata.org/google-adwords/avoid-post-turkey-crowds-and-shop-youtubes-awesome-stuff-week-gift-grab/#comments</comments>
		<pubDate>Mon, 23 Nov 2015 07:59:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=556ad3b6b8f64f4a02457c2798b6bec6</guid>
		<description><![CDATA[<div dir="ltr">Watchtime for product review videos on YouTube has grown more than 20% in just the past month as shoppers turn to video to research products before the holidays.<sup>1</sup> In fact, one in every four shoppers say online videos are their go-to source for gift ideas.<sup>2</sup> This week, one of the biggest shopping weeks of the year, we&#8217;re helping consumers discover the best products to grab with our third <a href="http://youtube-global.blogspot.com/2015/10/introducing-awesome-stuff-week-product.html" target="_blank">Awesome Stuff Week</a>, Gift Grab.<br /><div><span><img alt="ASW_GG.gif" height="290px;" src="https://lh6.googleusercontent.com/Jt_u8HqC9Uutpd_3gPSotRg4IwCLssxTWmaLFSMDYXdYzFMgsSQAUxmWIozyQH66Quz24QFjU3UwUPMKIRSeAfMKmQvLu3goqxTcfWUfeYd-aCPwqPtXMvNi5HRZtr4Sp7_FSqvD" width="516px;"></span></div>Creators such as <a href="https://www.youtube.com/user/wilsontech1" target="_blank">Lamarr Wilson</a>, <a href="https://www.youtube.com/user/unboxtherapy" target="_blank">Unbox Therapy</a>, <a href="https://www.youtube.com/user/feastoffiction" target="_blank">Feast of Fiction</a>, <a href="https://www.youtube.com/user/TheAngelofmusic1989" target="_blank">Erica Griffin</a> and <a href="https://www.youtube.com/user/HotPepperGaming" target="_blank">Hot Pepper Gaming</a>, will share their take on the top trending toys, video games, consumer electronics and housewares to help shoppers prepare for Black Friday and Cyber Monday. Best of all, they can avoid the post-turkey crowds and cross items off their holiday gift lists by shopping the products in each video.<span></span><br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://1.bp.blogspot.com/-1M13aGj44Lc/Vk9r0F4rjFI/AAAAAAAACFg/U8Ib1Qej8Qo/s1600/Blog%2BImages%2B%252833%2529.png"><img border="0" height="356" src="http://1.bp.blogspot.com/-1M13aGj44Lc/Vk9r0F4rjFI/AAAAAAAACFg/U8Ib1Qej8Qo/s640/Blog%2BImages%2B%252833%2529.png" width="640"></a></td></tr><tr><td>Lamarr Wilson shares his take on this week's top trending toys</td></tr></tbody></table>For AdWords advertisers running Shopping campaigns, Awesome Stuff Week provides a new opportunity to showcase products alongside contextually relevant creator content. <a href="http://adwords.blogspot.com/2015/11/drive-sales-and-app-downloads-with.html" target="_blank">Show your products</a> on these videos by making sure your Shopping campaigns are opted into <i>search partners </i>within your campaign settings.<br /><br />Lastly, discover the latest shoppable videos by subscribing to the <a href="http://youtube.com/awesomestuffweek" target="_blank">Awesome Stuff Week YouTube channel</a> and tune in next week when creators reveal the best beauty tips, recipes and last minute holiday gifts, with Awesome Stuff Week Unwrapped.<br /><br /><i>Vikram Tank, Product Marketing Manager, Art Copy &#38; Code</i><br /><div><hr width="80%"><sup><span>1&#160;</span></sup><span>Google Data Oct 17-Nov 16 vs. Sept 17 - Oct 16, 2015. United States. Classification as a "product review," was based on public data such as headlines, tags, etc., and may not account for every such video available on YouTube.&#160;</span><br /><sup><span>2&#160;</span></sup><span>Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015</span></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Watchtime for product review videos on YouTube has grown more than 20% in just the past month as shoppers turn to video to research products before the holidays.<sup>1</sup> In fact, one in every four shoppers say online videos are their go-to source for gift ideas.<sup>2</sup> This week, one of the biggest shopping weeks of the year, we’re helping consumers discover the best products to grab with our third <a href="http://youtube-global.blogspot.com/2015/10/introducing-awesome-stuff-week-product.html" >Awesome Stuff Week</a>, Gift Grab.<br /><div class="separator" style="clear: both; text-align: center;"><span style="font-family: &quot;helvetica neue&quot;; font-size: 13.3333px; vertical-align: baseline; white-space: pre-wrap;"><img alt="ASW_GG.gif" height="290px;" src="https://lh6.googleusercontent.com/Jt_u8HqC9Uutpd_3gPSotRg4IwCLssxTWmaLFSMDYXdYzFMgsSQAUxmWIozyQH66Quz24QFjU3UwUPMKIRSeAfMKmQvLu3goqxTcfWUfeYd-aCPwqPtXMvNi5HRZtr4Sp7_FSqvD" style="-webkit-transform: rotate(0.00rad); border: 3px solid #d9d9d9; transform: rotate(0.00rad);" width="516px;" /></span></div>Creators such as <a href="https://www.youtube.com/user/wilsontech1" >Lamarr Wilson</a>, <a href="https://www.youtube.com/user/unboxtherapy" >Unbox Therapy</a>, <a href="https://www.youtube.com/user/feastoffiction" >Feast of Fiction</a>, <a href="https://www.youtube.com/user/TheAngelofmusic1989" >Erica Griffin</a> and <a href="https://www.youtube.com/user/HotPepperGaming" >Hot Pepper Gaming</a>, will share their take on the top trending toys, video games, consumer electronics and housewares to help shoppers prepare for Black Friday and Cyber Monday. Best of all, they can avoid the post-turkey crowds and cross items off their holiday gift lists by shopping the products in each video.<span id="docs-internal-guid-9cb84b01-2637-f3c2-5a9d-e100a7c6edbb"></span><br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-1M13aGj44Lc/Vk9r0F4rjFI/AAAAAAAACFg/U8Ib1Qej8Qo/s1600/Blog%2BImages%2B%252833%2529.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="356" src="http://1.bp.blogspot.com/-1M13aGj44Lc/Vk9r0F4rjFI/AAAAAAAACFg/U8Ib1Qej8Qo/s640/Blog%2BImages%2B%252833%2529.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Lamarr Wilson shares his take on this week's top trending toys</td></tr></tbody></table>For AdWords advertisers running Shopping campaigns, Awesome Stuff Week provides a new opportunity to showcase products alongside contextually relevant creator content. <a href="http://adwords.blogspot.com/2015/11/drive-sales-and-app-downloads-with.html" >Show your products</a> on these videos by making sure your Shopping campaigns are opted into <i>search partners </i>within your campaign settings.<br /><br />Lastly, discover the latest shoppable videos by subscribing to the <a href="http://youtube.com/awesomestuffweek" >Awesome Stuff Week YouTube channel</a> and tune in next week when creators reveal the best beauty tips, recipes and last minute holiday gifts, with Awesome Stuff Week Unwrapped.<br /><br /><i>Vikram Tank, Product Marketing Manager, Art Copy &amp; Code</i><br /><div><hr width="80%" /><sup><span style="font-size: xx-small;">1&nbsp;</span></sup><span style="font-size: x-small;">Google Data Oct 17-Nov 16 vs. Sept 17 - Oct 16, 2015. United States. Classification as a "product review," was based on public data such as headlines, tags, etc., and may not account for every such video available on YouTube.&nbsp;</span><br /><sup><span style="font-size: xx-small;">2&nbsp;</span></sup><span style="font-size: x-small;">Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015</span></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/avoid-post-turkey-crowds-and-shop-youtubes-awesome-stuff-week-gift-grab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>A Step Toward Protecting Fair Use on YouTube</title>
		<link>https://googledata.org/youtube/a-step-toward-protecting-fair-use-on-youtube/</link>
		<comments>https://googledata.org/youtube/a-step-toward-protecting-fair-use-on-youtube/#comments</comments>
		<pubDate>Thu, 19 Nov 2015 14:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Public Policy Blog]]></dc:creator>
				<category><![CDATA[Google Public Policy]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google policy]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2452098b31598f5f82d727d0fcbf36fe</guid>
		<description><![CDATA[<div dir="ltr"><span>Posted by Fred von Lohmann, Copyright Legal Director</span><br /><br />More than 400 hours of video are uploaded to YouTube every minute. Some of those uploads make use of existing content, like music or TV clips, in new and transformative ways that have social value beyond the original (such as a parody or critique). In the U.S. this activity is often protected by fair use, a crucial exception to copyright law which can help discussion and creativity across different mediums to continue flourishing.<br /><br />YouTube will now protect <a href="https://youtube.com/yt/copyright/fair-use.html#yt-copyright-protection">some of the best examples of fair use on YouTube</a> by agreeing to defend them in court if necessary.<br /><br />We are offering legal support to a handful of videos that we believe represent clear fair uses which have been subject to DMCA takedowns. With approval of the video creators, we&#8217;ll keep the videos live on YouTube in the U.S., feature them in the <a href="https://www.youtube.com/yt/copyright/">YouTube Copyright Center</a> as strong examples of fair use, and cover the cost of any copyright lawsuits brought against them.<br /><br />We&#8217;re doing this because we recognize that creators can be intimidated by the DMCA&#8217;s counter notification process, and the potential for litigation that comes with it (for more background on the DMCA and copyright law see check out this <a href="https://www.youtube.com/watch?v=Cp1Jn4Q0j6E">Copyright Basics</a> video). In addition to protecting the individual creator, this program could, over time, create a &#8220;demo reel&#8221; that will help the YouTube community and copyright owners alike better understand what fair use looks like online and develop best practices as a community.<br /><br />While we can&#8217;t offer legal protection to every video creator&#8212;or even every video that has a strong fair use defense&#8212;we&#8217;ll continue to resist legally unsupported DMCA takedowns as part of our normal processes. We believe even the small number of videos we are able to protect will make a positive impact on the entire YouTube ecosystem, ensuring YouTube remains a place where creativity and expression can be rewarded.  </div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><span class="byline-author">Posted by Fred von Lohmann, Copyright Legal Director</span><br /><br />More than 400 hours of video are uploaded to YouTube every minute. Some of those uploads make use of existing content, like music or TV clips, in new and transformative ways that have social value beyond the original (such as a parody or critique). In the U.S. this activity is often protected by fair use, a crucial exception to copyright law which can help discussion and creativity across different mediums to continue flourishing.<br /><br />YouTube will now protect <a href="https://youtube.com/yt/copyright/fair-use.html#yt-copyright-protection">some of the best examples of fair use on YouTube</a> by agreeing to defend them in court if necessary.<br /><br />We are offering legal support to a handful of videos that we believe represent clear fair uses which have been subject to DMCA takedowns. With approval of the video creators, we’ll keep the videos live on YouTube in the U.S., feature them in the <a href="https://www.youtube.com/yt/copyright/">YouTube Copyright Center</a> as strong examples of fair use, and cover the cost of any copyright lawsuits brought against them.<br /><br />We’re doing this because we recognize that creators can be intimidated by the DMCA’s counter notification process, and the potential for litigation that comes with it (for more background on the DMCA and copyright law see check out this <a href="https://www.youtube.com/watch?v=Cp1Jn4Q0j6E">Copyright Basics</a> video). In addition to protecting the individual creator, this program could, over time, create a “demo reel” that will help the YouTube community and copyright owners alike better understand what fair use looks like online and develop best practices as a community.<br /><br />While we can’t offer legal protection to every video creator—or even every video that has a strong fair use defense—we’ll continue to resist legally unsupported DMCA takedowns as part of our normal processes. We believe even the small number of videos we are able to protect will make a positive impact on the entire YouTube ecosystem, ensuring YouTube remains a place where creativity and expression can be rewarded.  </div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/a-step-toward-protecting-fair-use-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Drive sales and app downloads with video this holiday season</title>
		<link>https://googledata.org/google-adwords/drive-sales-and-app-downloads-with-video-this-holiday-season/</link>
		<comments>https://googledata.org/google-adwords/drive-sales-and-app-downloads-with-video-this-holiday-season/#comments</comments>
		<pubDate>Mon, 16 Nov 2015 17:02:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=d678330cb80496e9f8b098486b3f28a3</guid>
		<description><![CDATA[<div dir="ltr">The holiday shopping season is upon us once again, and advertisers are at the ready to make sure it&#8217;s their products that fly off the shelves. And this holiday, video will play a bigger role than ever in how those products fly off the shelves. Across a wide range of brands and categories, we&#8217;re seeing the power of TrueView video for driving consumer intent in addition to driving awareness. In a recent analysis of TrueView campaigns, 57% of campaigns saw lift in consideration and 24% saw a lift in favorability. Plus, 35% of campaigns saw a lift in purchase intent.<sup>1</sup><br /><br />Video can be an incredibly powerful tool in creating demand for your products. So over the past year, we&#8217;ve focused on creating tools on YouTube to help you connect the dots between inspiration and purchase. Today, we&#8217;re making these tools readily available to advertisers through AdWords. Here is a rundown of the features we&#8217;re launching.<br /><br /><b>New campaign set-up tailored to your marketing objectives</b><br />Setting up a video campaign should be as simple as telling us what action you want consumers to take &#8211; and today we&#8217;re announcing a way to do that right at the start of the campaign creation process. Whether your end goal is to drive sales, app downloads or to generally build your brand, you can now declare these goals right up front. Further, we&#8217;ll tailor the rest of your campaign set-up and optimization for your chosen marketing objective.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://3.bp.blogspot.com/-xiqGA2ci2vQ/VklcDv9jNQI/AAAAAAAACCc/e8vyzzKXRV0/s1600/Blog%2BImages%2B%252823%2529.png"><img border="0" height="251" src="http://3.bp.blogspot.com/-xiqGA2ci2vQ/VklcDv9jNQI/AAAAAAAACCc/e8vyzzKXRV0/s640/Blog%2BImages%2B%252823%2529.png" width="640"></a></td></tr><tr><td>Shopping campaign option</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://2.bp.blogspot.com/-e2wIkq35S3c/VklcbzdoTRI/AAAAAAAACCk/9pzZOe6bLDw/s1600/Blog%2BImages%2B%252825%2529.png"><img border="0" height="338" src="http://2.bp.blogspot.com/-e2wIkq35S3c/VklcbzdoTRI/AAAAAAAACCk/9pzZOe6bLDw/s640/Blog%2BImages%2B%252825%2529.png" width="640"></a></td></tr><tr><td>App promotion campaign option</td></tr></tbody></table><b>Drive app downloads at your set price with target cost-per-acquisition bidding</b><br />The holiday season is incredibly important for app promotion, as consumers outfit their new devices with apps. To start an app promotion campaign with video, select the new &#8220;app promotion&#8221; option to access settings specifically tailored for promoting apps. You can now use target cost-per-acquisition (CPA) bidding, which lets you define the amount you're willing to pay for a conversion, and then automatically sets your bids to give you as many conversions as possible at that price.<br /><br />Clients participating in our beta have seen great results, including Com2us, the maker of the game Summoners War, whose Marketing Manager Eric Cho had this to say:<br /><blockquote><i>&#8220;At Com2us, we use TrueView for app promotion to acquire new app customers at scale across Europe, the Americas and Southeast Asia. Our campaigns are exceeding expectations around volume while maintaining our ROI goals. Target CPA bidding has allowed us to achieve our goals on Android and we look forward to expanding in the future.&#8221;</i></blockquote><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://1.bp.blogspot.com/-p0mF4T36N-w/Vkn_MHhu80I/AAAAAAAACCw/hJDE2s5OuOc/s1600/Blog%2BImages%2B%252826%2529.png"><img border="0" height="302" src="http://1.bp.blogspot.com/-p0mF4T36N-w/Vkn_MHhu80I/AAAAAAAACCw/hJDE2s5OuOc/s640/Blog%2BImages%2B%252826%2529.png" width="640"></a></td></tr><tr><td>Target CPA bidding</td></tr></tbody></table><b>New shopping formats now available in AdWords</b><br />And today, two powerful performance-oriented formats are available to all advertisers &#8211; both <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" target="_blank">TrueView for Shopping</a> and <a href="http://adwords.blogspot.com/2015/09/today-at-iab-mixx-preview-of-new.html" target="_blank">Shopping ads on YouTube</a> are now available in AdWords.<br /><br />TrueView for Shopping campaigns create interactive video ads that highlight the value of your products and drive consideration. These TrueView video ads have actionable shopping cards embedded in them which provide an easy bridge to purchase for viewers. They are also a powerful audience solution, enabling you to remarket to viewers who may have visited your site or viewed your other videos.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://1.bp.blogspot.com/-XUxPs7LOfe4/Vkn_mmcpStI/AAAAAAAACC4/cqgs6jAtT9c/s1600/wayfair-online.jpg"><img border="0" height="354" src="http://1.bp.blogspot.com/-XUxPs7LOfe4/Vkn_mmcpStI/AAAAAAAACC4/cqgs6jAtT9c/s640/wayfair-online.jpg" width="640"></a></td></tr><tr><td>TrueView for shopping</td></tr></tbody></table>Shopping ads on YouTube work even lower in the funnel, by enabling shopping cards on creator videos that feature your products. This is a great way to capture demand when viewers are most interested in exploring and researching products. These also allow you to extend the reach of your Shopping campaigns beyond <a href="http://www.google.com/" target="_blank">www.google.com</a>.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://1.bp.blogspot.com/-PdIOP7c_SE8/VkoCCzcMzuI/AAAAAAAACDE/PIGUh0hbWzg/s1600/Brad%2BHall%2BGif%2Bv2.gif"><img border="0" height="480" src="http://1.bp.blogspot.com/-PdIOP7c_SE8/VkoCCzcMzuI/AAAAAAAACDE/PIGUh0hbWzg/s320/Brad%2BHall%2BGif%2Bv2.gif" width="640"></a></td></tr><tr><td>Shopping ads on YouTube</td></tr></tbody></table>To extend your Shopping ads to YouTube, make sure your Shopping campaigns in AdWords are opted into search partners.<br /><br />These new TrueView features are made possible thanks to our <a href="http://adwords.blogspot.com/2015/09/trueview-campaigns-now-in-adwords.html" target="_blank">recent migration of TrueView video ads into the core AdWords front end</a>, and represents only the first first step towards a simpler, goal-oriented video ad experience. Now get out there and drive some sales and app downloads with video!<br /><br /><i>Posted by Diya Jolly, Director, Video Ads Product Management</i><br /><div><hr width="80%"><sup><span>1&#160;</span></sup><span>TrueView Brand Lift Meta Analysis of US Q3 2015 campaigns</span><br /><span>Consideration n=708 studies</span><br /><span>Favorability n=118 studies</span><br /><span>Purchase intent n=211 studies</span></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">The holiday shopping season is upon us once again, and advertisers are at the ready to make sure it’s their products that fly off the shelves. And this holiday, video will play a bigger role than ever in how those products fly off the shelves. Across a wide range of brands and categories, we’re seeing the power of TrueView video for driving consumer intent in addition to driving awareness. In a recent analysis of TrueView campaigns, 57% of campaigns saw lift in consideration and 24% saw a lift in favorability. Plus, 35% of campaigns saw a lift in purchase intent.<sup>1</sup><br /><br />Video can be an incredibly powerful tool in creating demand for your products. So over the past year, we’ve focused on creating tools on YouTube to help you connect the dots between inspiration and purchase. Today, we’re making these tools readily available to advertisers through AdWords. Here is a rundown of the features we’re launching.<br /><br /><b>New campaign set-up tailored to your marketing objectives</b><br />Setting up a video campaign should be as simple as telling us what action you want consumers to take – and today we’re announcing a way to do that right at the start of the campaign creation process. Whether your end goal is to drive sales, app downloads or to generally build your brand, you can now declare these goals right up front. Further, we’ll tailor the rest of your campaign set-up and optimization for your chosen marketing objective.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-xiqGA2ci2vQ/VklcDv9jNQI/AAAAAAAACCc/e8vyzzKXRV0/s1600/Blog%2BImages%2B%252823%2529.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="251" src="http://3.bp.blogspot.com/-xiqGA2ci2vQ/VklcDv9jNQI/AAAAAAAACCc/e8vyzzKXRV0/s640/Blog%2BImages%2B%252823%2529.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Shopping campaign option</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-e2wIkq35S3c/VklcbzdoTRI/AAAAAAAACCk/9pzZOe6bLDw/s1600/Blog%2BImages%2B%252825%2529.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="338" src="http://2.bp.blogspot.com/-e2wIkq35S3c/VklcbzdoTRI/AAAAAAAACCk/9pzZOe6bLDw/s640/Blog%2BImages%2B%252825%2529.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">App promotion campaign option</td></tr></tbody></table><b>Drive app downloads at your set price with target cost-per-acquisition bidding</b><br />The holiday season is incredibly important for app promotion, as consumers outfit their new devices with apps. To start an app promotion campaign with video, select the new “app promotion” option to access settings specifically tailored for promoting apps. You can now use target cost-per-acquisition (CPA) bidding, which lets you define the amount you're willing to pay for a conversion, and then automatically sets your bids to give you as many conversions as possible at that price.<br /><br />Clients participating in our beta have seen great results, including Com2us, the maker of the game Summoners War, whose Marketing Manager Eric Cho had this to say:<br /><blockquote class="tr_bq"><i>“At Com2us, we use TrueView for app promotion to acquire new app customers at scale across Europe, the Americas and Southeast Asia. Our campaigns are exceeding expectations around volume while maintaining our ROI goals. Target CPA bidding has allowed us to achieve our goals on Android and we look forward to expanding in the future.”</i></blockquote><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-p0mF4T36N-w/Vkn_MHhu80I/AAAAAAAACCw/hJDE2s5OuOc/s1600/Blog%2BImages%2B%252826%2529.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="302" src="http://1.bp.blogspot.com/-p0mF4T36N-w/Vkn_MHhu80I/AAAAAAAACCw/hJDE2s5OuOc/s640/Blog%2BImages%2B%252826%2529.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Target CPA bidding</td></tr></tbody></table><b>New shopping formats now available in AdWords</b><br />And today, two powerful performance-oriented formats are available to all advertisers – both <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" >TrueView for Shopping</a> and <a href="http://adwords.blogspot.com/2015/09/today-at-iab-mixx-preview-of-new.html" >Shopping ads on YouTube</a> are now available in AdWords.<br /><br />TrueView for Shopping campaigns create interactive video ads that highlight the value of your products and drive consideration. These TrueView video ads have actionable shopping cards embedded in them which provide an easy bridge to purchase for viewers. They are also a powerful audience solution, enabling you to remarket to viewers who may have visited your site or viewed your other videos.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-XUxPs7LOfe4/Vkn_mmcpStI/AAAAAAAACC4/cqgs6jAtT9c/s1600/wayfair-online.jpg" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="354" src="http://1.bp.blogspot.com/-XUxPs7LOfe4/Vkn_mmcpStI/AAAAAAAACC4/cqgs6jAtT9c/s640/wayfair-online.jpg" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">TrueView for shopping</td></tr></tbody></table>Shopping ads on YouTube work even lower in the funnel, by enabling shopping cards on creator videos that feature your products. This is a great way to capture demand when viewers are most interested in exploring and researching products. These also allow you to extend the reach of your Shopping campaigns beyond <a href="http://www.google.com/" >www.google.com</a>.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-PdIOP7c_SE8/VkoCCzcMzuI/AAAAAAAACDE/PIGUh0hbWzg/s1600/Brad%2BHall%2BGif%2Bv2.gif" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="480" src="http://1.bp.blogspot.com/-PdIOP7c_SE8/VkoCCzcMzuI/AAAAAAAACDE/PIGUh0hbWzg/s320/Brad%2BHall%2BGif%2Bv2.gif" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Shopping ads on YouTube</td></tr></tbody></table>To extend your Shopping ads to YouTube, make sure your Shopping campaigns in AdWords are opted into search partners.<br /><br />These new TrueView features are made possible thanks to our <a href="http://adwords.blogspot.com/2015/09/trueview-campaigns-now-in-adwords.html" >recent migration of TrueView video ads into the core AdWords front end</a>, and represents only the first first step towards a simpler, goal-oriented video ad experience. Now get out there and drive some sales and app downloads with video!<br /><br /><i>Posted by Diya Jolly, Director, Video Ads Product Management</i><br /><div><hr width="80%" /><sup><span style="font-size: xx-small;">1&nbsp;</span></sup><span style="font-size: x-small;">TrueView Brand Lift Meta Analysis of US Q3 2015 campaigns</span><br /><span style="font-size: x-small;">Consideration n=708 studies</span><br /><span style="font-size: x-small;">Favorability n=118 studies</span><br /><span style="font-size: x-small;">Purchase intent n=211 studies</span></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/drive-sales-and-app-downloads-with-video-this-holiday-season/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>2015 Holiday Trends &#8211; Shopping Moments Are Replacing Shopping Marathons</title>
		<link>https://googledata.org/google-adwords/2015-holiday-trends-shopping-moments-are-replacing-shopping-marathons/</link>
		<comments>https://googledata.org/google-adwords/2015-holiday-trends-shopping-moments-are-replacing-shopping-marathons/#comments</comments>
		<pubDate>Tue, 20 Oct 2015 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=8914ac7a11ad0b8e6c5bb5a7c1405172</guid>
		<description><![CDATA[<div dir="ltr">If the idea of shopping on your phone while waiting for your morning coffee sounds familiar, you&#8217;re not alone. This holiday season, shopping <i>moments</i> will replace shopping <i>marathons</i>. Rather than rely on day-long mall marathons Black Friday weekend, shoppers are now turning to their mobile phones at hundreds of micro-moments throughout the day, all season long. In fact, more than half (54%) of holiday shoppers say that they plan to shop on their smartphones in spare moments throughout the day like walking or commuting.<sup>1</sup><br /><br />As we head into this year&#8217;s holiday shopping season, we looked at how the rise of these shopping moments will impact retail trends. After analyzing Google data and working with Ipsos MediaCT to survey consumers on their holiday shopping intentions, today we&#8217;re sharing our predictions for the digital trends impacting this year&#8217;s biggest shopping season.<br /><br /><b>Big shopping days are becoming smaller</b><br />It used to be that people would plan their shopping marathons for days like Black Friday or Cyber Monday. Now, shopping happens in the moments between everything else in our lives. Last year, for example, we saw steady consumer shopping interest in &#8220;gifts and presents&#8221; all season long.<sup>2</sup><br /><div></div><div></div><div></div><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://4.bp.blogspot.com/-R5B83JqbyrQ/ViXCmhH_M2I/AAAAAAAAB9Q/19hkAxqdv6M/s1600/Untitled%2Bpresentation.png"><img border="0" height="364" src="http://4.bp.blogspot.com/-R5B83JqbyrQ/ViXCmhH_M2I/AAAAAAAAB9Q/19hkAxqdv6M/s640/Untitled%2Bpresentation.png" width="640"></a></td></tr><tr><td>Source: Google Data, Q4 2014, US</td></tr></tbody></table>This type of shopping has led to shorter, more purposeful mobile shopping sessions. In fact, while shoppers now spend 7% less time in each mobile session, smartphones&#8217; share of online shopping purchases have gone up 64% over the last year, and 30% of all online shopping purchases now happen on mobile phones.<sup>3</sup><br /><br />The time to start reaching these holiday shoppers is now. We found that 61% of shoppers will have already started researching their purchases before Thanksgiving weekend, up 17% from last year.<sup>4</sup> While research starts early, the majority of purchasing will take place later into the holiday season.<sup>5</sup> Why? There is no longer a sense of urgency since everyday is a shopping day.<br /><br /><b>Mobile will influence more purchases than ever before</b><br />Consumers are using their smartphones in all parts of the shopping process - from inspiration to research to purchasing. In fact, shopping-related searches on mobile have grown more than 120% year over year and are fast approaching those on desktop.<sup>6</sup><br /><br />In addition to a rise in mobile commerce, we&#8217;re also seeing a rise in mobile&#8217;s influence on local commerce. People are increasingly using their phones to research and buy products in stores. More than half (52%) of shoppers plan to use a smartphone for holiday shopping this year before they visit a store, and a whopping 82% of smartphone users will consult their phone while in a store.<sup>7</sup> People are searching 37% more inside department stores than they were last year.<sup>8</sup><br /><br />And more people have the opportunity to tap and pay with their phones in stores this season, with new mobile payments platforms available. In fact, in a Google Consumer Survey we found that 40% of people say they are likely to use their smartphones to pay in stores this holiday season.<sup>9</sup><br /><br />While big sale days are becoming smaller, one day still stands out in shopping popularity for mobile. Sunday is consistently the most popular day for shopping on smartphones - on average, mobile shopping searches are 18% higher on Sundays than the rest of the week.<sup>10</sup><br /><div></div><div></div><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://3.bp.blogspot.com/-XxvcXBUTQr4/ViXDY9acl9I/AAAAAAAAB9c/PMjmc882YeQ/s1600/Untitled%2Bpresentation%2B%25282%2529.png"><img border="0" height="328" src="http://3.bp.blogspot.com/-XxvcXBUTQr4/ViXDY9acl9I/AAAAAAAAB9c/PMjmc882YeQ/s640/Untitled%2Bpresentation%2B%25282%2529.png" width="640"></a></td></tr><tr><td>Source: Google Data, Q3 2015, Global Shopping searches on mobile<br />as defined by clicks on Shopping Ads</td></tr></tbody></table><b>The YouTube Gift Guide</b><br />People are also increasingly turning to YouTube to help them shop, looking for advice, inspiration, or product reviews. One in four shoppers (26%) say online videos are their go-to source for gift ideas, and 32% of shoppers say they plan to use online video <i>more</i> this year for holiday purchases.<sup>11</sup> Additionally, people in the U.S. are spending <i>nearly twice as much time</i> watching fashion and apparel shopping videos this year over last.<sup>12</sup><br /><br /><a href="https://www.thinkwithgoogle.com/articles/youtube-insights-stats-data-trends-vol7.html" target="_blank">Unboxing videos</a> have become a growing phenomenon, as people turn to YouTube to inform their purchase decisions. In 2015 alone, people in the U.S. have watched 60M hours of unboxing videos on YouTube, totalling 1.1B views.<sup>13</sup> Our research shows YouTube has become an important part of the purchase process for consumer electronics - a surprising 64% of consumer electronics shoppers watch consumer electronics videos on YouTube one week before they purchase and 65% do so the week after they purchase.<sup>14</sup><br /><br />To help shoppers discover more of the latest and greatest products, we&#8217;ve partnered with popular YouTube creators to bring you <a href="http://youtube-global.blogspot.com/2015/10/introducing-awesome-stuff-week-product.html" target="_blank">Awesome Stuff Week</a>: a series of week-long celebrations highlighting <i>shoppable videos</i> on YouTube. Tune in on Monday to watch our next set of shoppable videos focusing on &#8220;gadgets.&#8221;<br /><div><a href="http://2.bp.blogspot.com/-KgGf69IVl4I/ViW3f8zqXkI/AAAAAAAAB88/ye3e3p4HUMQ/s1600/Awesome%2BStuff%2BWeek%2B-%2BH%2BBy%2BHudson%2B%25282%2529.gif"><img border="0" height="356" src="http://2.bp.blogspot.com/-KgGf69IVl4I/ViW3f8zqXkI/AAAAAAAAB88/ye3e3p4HUMQ/s640/Awesome%2BStuff%2BWeek%2B-%2BH%2BBy%2BHudson%2B%25282%2529.gif" width="640"></a></div>As shopping decisions are being made quicker and consumers&#8217; expectations are higher, marketers today need to think carefully about where customers are discovering, researching and ultimately purchasing their products. By understanding these patterns and by focusing on moments of intent - on both mobile and video - marketers will win customers this holiday season.<br /><br /><i>Posted by Matt Lawson, Director, Performance Ads Marketing</i><br /><div><hr width="80%"><sup><span>1&#160;</span></sup><span>Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015; Shoppers defined as people who intend to shop this holiday season with smartphones. n=778</span><br /><sup><span>2&#160;</span></sup><span>Google Data, October 2014&#8211;January 2015, United States.&#160;</span><br /><sup><span>3&#160;</span></sup><span>Google Analytics data, United States. Sept 2014 v. Sept 2015</span><br /><sup><span>4&#160;</span></sup><span>Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015 Base: Holiday shoppers n=2004</span><br /><sup><span>5&#160;</span></sup><span>Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015. Base: Holiday shoppers n=2004</span><br /><sup><span>6&#160;</span></sup><span>Google Global search data Nov 2014-Oct 2015, as defined by searches that trigger Shopping ads</span><br /><sup><span>7&#160;</span></sup><span>Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015</span><br /><sup><span>8&#160;</span></sup><span>Aggregated anonymized internal Google data from a sample of US users that have turned on Location History. Queries were considered as being "from" a location if they occurred within one hour of a user visit to the department store. September 2015 vs. September 2014.</span><br /><sup><span>9&#160;</span></sup><span>Google Consumer Survey, October 2015, n=500</span><br /><sup><span>10&#160;</span></sup><span>Google search data, Global, Q3 2015, mobile shopping searches as defined by clicks on Shopping ads</span><br /><sup><span>11&#160;</span></sup><span>Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015</span><br /><sup><span>12&#160;</span></sup><span>YouTube data, Sep 2014 vs. Sep 2015, United States. Classification as a shopping video was based on public data such as headlines, titles, tags, etc and may not represent all apparel shopping videos on YouTube.</span><br /><sup><span>13&#160;</span></sup><span>YouTube data, January&#8211;October 2015, U.S. Classification as a "haul" video was based on public data such as headlines, tags, etc., and may not account for every "haul&#8221; video available on YouTube.</span><br /><sup><span>14&#160;</span></sup><span>Google Millward Brown CE Study, YouTube video analytics, Dec. 2014</span></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">If the idea of shopping on your phone while waiting for your morning coffee sounds familiar, you’re not alone. This holiday season, shopping <i>moments</i> will replace shopping <i>marathons</i>. Rather than rely on day-long mall marathons Black Friday weekend, shoppers are now turning to their mobile phones at hundreds of micro-moments throughout the day, all season long. In fact, more than half (54%) of holiday shoppers say that they plan to shop on their smartphones in spare moments throughout the day like walking or commuting.<sup>1</sup><br /><br />As we head into this year’s holiday shopping season, we looked at how the rise of these shopping moments will impact retail trends. After analyzing Google data and working with Ipsos MediaCT to survey consumers on their holiday shopping intentions, today we’re sharing our predictions for the digital trends impacting this year’s biggest shopping season.<br /><br /><b>Big shopping days are becoming smaller</b><br />It used to be that people would plan their shopping marathons for days like Black Friday or Cyber Monday. Now, shopping happens in the moments between everything else in our lives. Last year, for example, we saw steady consumer shopping interest in “gifts and presents” all season long.<sup>2</sup><br /><div class="separator" style="clear: both; text-align: center;"></div><div class="separator" style="clear: both; text-align: center;"></div><div class="separator" style="clear: both; text-align: center;"></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-R5B83JqbyrQ/ViXCmhH_M2I/AAAAAAAAB9Q/19hkAxqdv6M/s1600/Untitled%2Bpresentation.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="364" src="http://4.bp.blogspot.com/-R5B83JqbyrQ/ViXCmhH_M2I/AAAAAAAAB9Q/19hkAxqdv6M/s640/Untitled%2Bpresentation.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Source: Google Data, Q4 2014, US</td></tr></tbody></table>This type of shopping has led to shorter, more purposeful mobile shopping sessions. In fact, while shoppers now spend 7% less time in each mobile session, smartphones’ share of online shopping purchases have gone up 64% over the last year, and 30% of all online shopping purchases now happen on mobile phones.<sup>3</sup><br /><br />The time to start reaching these holiday shoppers is now. We found that 61% of shoppers will have already started researching their purchases before Thanksgiving weekend, up 17% from last year.<sup>4</sup> While research starts early, the majority of purchasing will take place later into the holiday season.<sup>5</sup> Why? There is no longer a sense of urgency since everyday is a shopping day.<br /><br /><b>Mobile will influence more purchases than ever before</b><br />Consumers are using their smartphones in all parts of the shopping process - from inspiration to research to purchasing. In fact, shopping-related searches on mobile have grown more than 120% year over year and are fast approaching those on desktop.<sup>6</sup><br /><br />In addition to a rise in mobile commerce, we’re also seeing a rise in mobile’s influence on local commerce. People are increasingly using their phones to research and buy products in stores. More than half (52%) of shoppers plan to use a smartphone for holiday shopping this year before they visit a store, and a whopping 82% of smartphone users will consult their phone while in a store.<sup>7</sup> People are searching 37% more inside department stores than they were last year.<sup>8</sup><br /><br />And more people have the opportunity to tap and pay with their phones in stores this season, with new mobile payments platforms available. In fact, in a Google Consumer Survey we found that 40% of people say they are likely to use their smartphones to pay in stores this holiday season.<sup>9</sup><br /><br />While big sale days are becoming smaller, one day still stands out in shopping popularity for mobile. Sunday is consistently the most popular day for shopping on smartphones - on average, mobile shopping searches are 18% higher on Sundays than the rest of the week.<sup>10</sup><br /><div class="separator" style="clear: both; text-align: center;"></div><div class="separator" style="clear: both; text-align: center;"></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-XxvcXBUTQr4/ViXDY9acl9I/AAAAAAAAB9c/PMjmc882YeQ/s1600/Untitled%2Bpresentation%2B%25282%2529.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="328" src="http://3.bp.blogspot.com/-XxvcXBUTQr4/ViXDY9acl9I/AAAAAAAAB9c/PMjmc882YeQ/s640/Untitled%2Bpresentation%2B%25282%2529.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Source: Google Data, Q3 2015, Global Shopping searches on mobile<br />as defined by clicks on Shopping Ads</td></tr></tbody></table><b>The YouTube Gift Guide</b><br />People are also increasingly turning to YouTube to help them shop, looking for advice, inspiration, or product reviews. One in four shoppers (26%) say online videos are their go-to source for gift ideas, and 32% of shoppers say they plan to use online video <i>more</i> this year for holiday purchases.<sup>11</sup> Additionally, people in the U.S. are spending <i>nearly twice as much time</i> watching fashion and apparel shopping videos this year over last.<sup>12</sup><br /><br /><a href="https://www.thinkwithgoogle.com/articles/youtube-insights-stats-data-trends-vol7.html" >Unboxing videos</a> have become a growing phenomenon, as people turn to YouTube to inform their purchase decisions. In 2015 alone, people in the U.S. have watched 60M hours of unboxing videos on YouTube, totalling 1.1B views.<sup>13</sup> Our research shows YouTube has become an important part of the purchase process for consumer electronics - a surprising 64% of consumer electronics shoppers watch consumer electronics videos on YouTube one week before they purchase and 65% do so the week after they purchase.<sup>14</sup><br /><br />To help shoppers discover more of the latest and greatest products, we’ve partnered with popular YouTube creators to bring you <a href="http://youtube-global.blogspot.com/2015/10/introducing-awesome-stuff-week-product.html" >Awesome Stuff Week</a>: a series of week-long celebrations highlighting <i>shoppable videos</i> on YouTube. Tune in on Monday to watch our next set of shoppable videos focusing on “gadgets.”<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-KgGf69IVl4I/ViW3f8zqXkI/AAAAAAAAB88/ye3e3p4HUMQ/s1600/Awesome%2BStuff%2BWeek%2B-%2BH%2BBy%2BHudson%2B%25282%2529.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="356" src="http://2.bp.blogspot.com/-KgGf69IVl4I/ViW3f8zqXkI/AAAAAAAAB88/ye3e3p4HUMQ/s640/Awesome%2BStuff%2BWeek%2B-%2BH%2BBy%2BHudson%2B%25282%2529.gif" width="640" /></a></div>As shopping decisions are being made quicker and consumers’ expectations are higher, marketers today need to think carefully about where customers are discovering, researching and ultimately purchasing their products. By understanding these patterns and by focusing on moments of intent - on both mobile and video - marketers will win customers this holiday season.<br /><br /><i>Posted by Matt Lawson, Director, Performance Ads Marketing</i><br /><div><hr width="80%" /><sup><span style="font-size: xx-small;">1&nbsp;</span></sup><span style="font-size: x-small;">Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015; Shoppers defined as people who intend to shop this holiday season with smartphones. n=778</span><br /><sup><span style="font-size: xx-small;">2&nbsp;</span></sup><span style="font-size: x-small;">Google Data, October 2014–January 2015, United States.&nbsp;</span><br /><sup><span style="font-size: xx-small;">3&nbsp;</span></sup><span style="font-size: x-small;">Google Analytics data, United States. Sept 2014 v. Sept 2015</span><br /><sup><span style="font-size: xx-small;">4&nbsp;</span></sup><span style="font-size: x-small;">Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015 Base: Holiday shoppers n=2004</span><br /><sup><span style="font-size: xx-small;">5&nbsp;</span></sup><span style="font-size: x-small;">Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015. Base: Holiday shoppers n=2004</span><br /><sup><span style="font-size: xx-small;">6&nbsp;</span></sup><span style="font-size: x-small;">Google Global search data Nov 2014-Oct 2015, as defined by searches that trigger Shopping ads</span><br /><sup><span style="font-size: xx-small;">7&nbsp;</span></sup><span style="font-size: x-small;">Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015</span><br /><sup><span style="font-size: xx-small;">8&nbsp;</span></sup><span style="font-size: x-small;">Aggregated anonymized internal Google data from a sample of US users that have turned on Location History. Queries were considered as being "from" a location if they occurred within one hour of a user visit to the department store. September 2015 vs. September 2014.</span><br /><sup><span style="font-size: xx-small;">9&nbsp;</span></sup><span style="font-size: x-small;">Google Consumer Survey, October 2015, n=500</span><br /><sup><span style="font-size: xx-small;">10&nbsp;</span></sup><span style="font-size: x-small;">Google search data, Global, Q3 2015, mobile shopping searches as defined by clicks on Shopping ads</span><br /><sup><span style="font-size: xx-small;">11&nbsp;</span></sup><span style="font-size: x-small;">Google / Ipsos MediaCT, Consumer Holiday Intentions Study 2015</span><br /><sup><span style="font-size: xx-small;">12&nbsp;</span></sup><span style="font-size: x-small;">YouTube data, Sep 2014 vs. Sep 2015, United States. Classification as a shopping video was based on public data such as headlines, titles, tags, etc and may not represent all apparel shopping videos on YouTube.</span><br /><sup><span style="font-size: xx-small;">13&nbsp;</span></sup><span style="font-size: x-small;">YouTube data, January–October 2015, U.S. Classification as a "haul" video was based on public data such as headlines, tags, etc., and may not account for every "haul” video available on YouTube.</span><br /><sup><span style="font-size: xx-small;">14&nbsp;</span></sup><span style="font-size: x-small;">Google Millward Brown CE Study, YouTube video analytics, Dec. 2014</span></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/2015-holiday-trends-shopping-moments-are-replacing-shopping-marathons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Improving YouTube video thumbnails with deep neural nets</title>
		<link>https://googledata.org/youtube/improving-youtube-video-thumbnails-with-deep-neural-nets/</link>
		<comments>https://googledata.org/youtube/improving-youtube-video-thumbnails-with-deep-neural-nets/#comments</comments>
		<pubDate>Thu, 08 Oct 2015 16:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Research Blog]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=e52db196a690e34803d079cbe1b2eed1</guid>
		<description><![CDATA[<span>Posted by Weilong Yang and Min-hsuan Tsai, Video Content Analysis team and the YouTube Creator team</span><br /><br /><a href="https://support.google.com/youtube/answer/72431?hl=en">Video thumbnails</a> are often the first things viewers see when they look for something interesting to watch. A strong, vibrant, and relevant thumbnail draws attention, giving viewers a quick preview of the content of the video, and helps them to find content more easily. Better thumbnails lead to more clicks and views for video creators.<br /><br />Inspired by the recent remarkable advances of <a href="https://en.wikipedia.org/wiki/Deep_learning#Deep_neural_networks">deep neural networks</a> (DNNs) in computer vision, such as <a href="http://googleresearch.blogspot.com/2014/09/building-deeper-understanding-of-images.html">image</a> and <a href="http://googleresearch.blogspot.com/2015/04/beyond-short-snippets-deep-networks-for.html">video</a> classification, our team has recently launched an improved automatic YouTube "thumbnailer" in order to help creators showcase their video content. Here is how it works. <br /><br /><b>The Thumbnailer Pipeline</b><br /><br />While a video is being uploaded to YouTube, we first sample frames from the video at one frame per second. Each sampled frame is evaluated by a <i>quality model</i> and assigned a single <i>quality score</i>. The frames with the highest scores are selected, enhanced and rendered as thumbnails with different sizes and aspect ratios. Among all the components, the quality model is the most critical and turned out to be the most challenging to develop. In the latest version of the thumbnailer algorithm, we used a DNN for the quality model. So, what is the <i>quality model</i> measuring, and how is the score calculated?<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://4.bp.blogspot.com/-Q4ld3f5VShg/VhVGKDb3y9I/AAAAAAAAAvE/EwdS61_72c4/s1600/image02.png"><img border="0" height="236" src="http://4.bp.blogspot.com/-Q4ld3f5VShg/VhVGKDb3y9I/AAAAAAAAAvE/EwdS61_72c4/s640/image02.png" width="640"></a></td></tr><tr><td>The main processing pipeline of the thumbnailer.</td></tr></tbody></table><b>(Training) The Quality Model</b><br /><br />Unlike the task of identifying if a video contains your favorite animal, judging the visual quality of a video frame can be very subjective - people often have very different opinions and preferences when selecting frames as video thumbnails. One of the main challenges we faced was how to collect a large set of well-annotated training examples to feed into our neural network. Fortunately, on YouTube, in addition to having algorithmically generated thumbnails, many YouTube videos also come with carefully designed custom thumbnails uploaded by creators. Those thumbnails are typically well framed, in-focus, and center on a specific subject (e.g. the main character in the video).  We consider these custom thumbnails from popular videos as positive (high-quality) examples, and randomly selected video frames as negative (low-quality) examples. Some examples of the training images are shown below.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://4.bp.blogspot.com/-I9DYDBAcJyA/VhVGY3ZuFwI/AAAAAAAAAvM/pk3SlykWvRg/s1600/image00.png"><img border="0" height="210" src="http://4.bp.blogspot.com/-I9DYDBAcJyA/VhVGY3ZuFwI/AAAAAAAAAvM/pk3SlykWvRg/s640/image00.png" width="640"></a></td></tr><tr><td>Example training images.</td></tr></tbody></table>The visual quality model essentially solves a problem we call "binary classification": given a frame, is it of high quality or not? We trained a DNN on this set using a similar architecture to the Inception network in <a href="http://googleresearch.blogspot.com/2014/09/building-deeper-understanding-of-images.html">GoogLeNet</a> that achieved the top performance in the ImageNet 2014 competition.<br /><br /><b>Results</b><br /><br />Compared to the previous automatically generated thumbnails, the DNN-powered model is able to select frames with much better quality. In a human evaluation, the thumbnails produced by our new models are preferred to those from the previous thumbnailer in more than 65% of side-by-side ratings. Here are some examples of how the new quality model performs on YouTube videos:<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://3.bp.blogspot.com/-sMNtgX6u28o/VhVG3VriqoI/AAAAAAAAAvU/oyt22qJb3ns/s1600/image03.png"><img border="0" height="206" src="http://3.bp.blogspot.com/-sMNtgX6u28o/VhVG3VriqoI/AAAAAAAAAvU/oyt22qJb3ns/s640/image03.png" width="640"></a></td></tr><tr><td>Example frames with low and high quality score from the DNN quality model, from video &#8220;<a href="https://www.youtube.com/watch?v=Ev394hPypiU">Grand Canyon Rock Squirrel</a>&#8221;.</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://2.bp.blogspot.com/-Z8DNhiLueVI/VhVHDuRGGtI/AAAAAAAAAvc/JPpQkXiXKLo/s1600/image01.png"><img border="0" height="160" src="http://2.bp.blogspot.com/-Z8DNhiLueVI/VhVHDuRGGtI/AAAAAAAAAvc/JPpQkXiXKLo/s640/image01.png" width="640"></a></td></tr><tr><td>Thumbnails generated by old vs. new thumbnailer algorithm.</td></tr></tbody></table>We recently launched this new thumbnailer across YouTube, which means creators can start to choose from higher quality thumbnails generated by our new thumbnailer. Next time you see an awesome YouTube thumbnail, don&#8217;t hesitate to give it a <i>thumbs up</i>. ;)]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Weilong Yang and Min-hsuan Tsai, Video Content Analysis team and the YouTube Creator team</span><br /><br /><a href="https://support.google.com/youtube/answer/72431?hl=en">Video thumbnails</a> are often the first things viewers see when they look for something interesting to watch. A strong, vibrant, and relevant thumbnail draws attention, giving viewers a quick preview of the content of the video, and helps them to find content more easily. Better thumbnails lead to more clicks and views for video creators.<br /><br />Inspired by the recent remarkable advances of <a href="https://en.wikipedia.org/wiki/Deep_learning#Deep_neural_networks">deep neural networks</a> (DNNs) in computer vision, such as <a href="http://googleresearch.blogspot.com/2014/09/building-deeper-understanding-of-images.html">image</a> and <a href="http://googleresearch.blogspot.com/2015/04/beyond-short-snippets-deep-networks-for.html">video</a> classification, our team has recently launched an improved automatic YouTube "thumbnailer" in order to help creators showcase their video content. Here is how it works. <br /><br /><b>The Thumbnailer Pipeline</b><br /><br />While a video is being uploaded to YouTube, we first sample frames from the video at one frame per second. Each sampled frame is evaluated by a <i>quality model</i> and assigned a single <i>quality score</i>. The frames with the highest scores are selected, enhanced and rendered as thumbnails with different sizes and aspect ratios. Among all the components, the quality model is the most critical and turned out to be the most challenging to develop. In the latest version of the thumbnailer algorithm, we used a DNN for the quality model. So, what is the <i>quality model</i> measuring, and how is the score calculated?<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-Q4ld3f5VShg/VhVGKDb3y9I/AAAAAAAAAvE/EwdS61_72c4/s1600/image02.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="236" src="http://4.bp.blogspot.com/-Q4ld3f5VShg/VhVGKDb3y9I/AAAAAAAAAvE/EwdS61_72c4/s640/image02.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">The main processing pipeline of the thumbnailer.</td></tr></tbody></table><b>(Training) The Quality Model</b><br /><br />Unlike the task of identifying if a video contains your favorite animal, judging the visual quality of a video frame can be very subjective - people often have very different opinions and preferences when selecting frames as video thumbnails. One of the main challenges we faced was how to collect a large set of well-annotated training examples to feed into our neural network. Fortunately, on YouTube, in addition to having algorithmically generated thumbnails, many YouTube videos also come with carefully designed custom thumbnails uploaded by creators. Those thumbnails are typically well framed, in-focus, and center on a specific subject (e.g. the main character in the video).  We consider these custom thumbnails from popular videos as positive (high-quality) examples, and randomly selected video frames as negative (low-quality) examples. Some examples of the training images are shown below.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://4.bp.blogspot.com/-I9DYDBAcJyA/VhVGY3ZuFwI/AAAAAAAAAvM/pk3SlykWvRg/s1600/image00.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="210" src="http://4.bp.blogspot.com/-I9DYDBAcJyA/VhVGY3ZuFwI/AAAAAAAAAvM/pk3SlykWvRg/s640/image00.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Example training images.</td></tr></tbody></table>The visual quality model essentially solves a problem we call "binary classification": given a frame, is it of high quality or not? We trained a DNN on this set using a similar architecture to the Inception network in <a href="http://googleresearch.blogspot.com/2014/09/building-deeper-understanding-of-images.html">GoogLeNet</a> that achieved the top performance in the ImageNet 2014 competition.<br /><br /><b>Results</b><br /><br />Compared to the previous automatically generated thumbnails, the DNN-powered model is able to select frames with much better quality. In a human evaluation, the thumbnails produced by our new models are preferred to those from the previous thumbnailer in more than 65% of side-by-side ratings. Here are some examples of how the new quality model performs on YouTube videos:<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://3.bp.blogspot.com/-sMNtgX6u28o/VhVG3VriqoI/AAAAAAAAAvU/oyt22qJb3ns/s1600/image03.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="206" src="http://3.bp.blogspot.com/-sMNtgX6u28o/VhVG3VriqoI/AAAAAAAAAvU/oyt22qJb3ns/s640/image03.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Example frames with low and high quality score from the DNN quality model, from video “<a href="https://www.youtube.com/watch?v=Ev394hPypiU">Grand Canyon Rock Squirrel</a>”.</td></tr></tbody></table><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-Z8DNhiLueVI/VhVHDuRGGtI/AAAAAAAAAvc/JPpQkXiXKLo/s1600/image01.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="160" src="http://2.bp.blogspot.com/-Z8DNhiLueVI/VhVHDuRGGtI/AAAAAAAAAvc/JPpQkXiXKLo/s640/image01.png" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Thumbnails generated by old vs. new thumbnailer algorithm.</td></tr></tbody></table>We recently launched this new thumbnailer across YouTube, which means creators can start to choose from higher quality thumbnails generated by our new thumbnailer. Next time you see an awesome YouTube thumbnail, don’t hesitate to give it a <i>thumbs up</i>. ;)]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/improving-youtube-video-thumbnails-with-deep-neural-nets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Today at IAB Mixx: a preview of new capabilities coming to YouTube advertising</title>
		<link>https://googledata.org/google-adwords/today-at-iab-mixx-a-preview-of-new-capabilities-coming-to-youtube-advertising/</link>
		<comments>https://googledata.org/google-adwords/today-at-iab-mixx-a-preview-of-new-capabilities-coming-to-youtube-advertising/#comments</comments>
		<pubDate>Tue, 29 Sep 2015 19:14:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=ad1472fa36ff879b90ace51984ff8436</guid>
		<description><![CDATA[<div dir="ltr">Over the past 10 years of YouTube, video viewership has come a long way. In fact, according to new commissioned custom research conducted by Nielsen, the time 18-49 year olds spend on YouTube grew by 44 percent, while the time they spend watching traditional TV fell by nearly 10 percent over that same time period.<br /><br />YouTube has become the place the world comes to watch, share and engage with video. And we want to keep creating even better experiences for the viewers, advertisers and creators who turn to YouTube every day. So today at IAB Mixx, we announced new products that point toward the future of our video ad platform, specifically around interactivity, mobile, and measurement.<br /><br /><b>Turn YouTube into your virtual showroom</b><br />Over the course of the year, we&#8217;ve been working hard to make videos more interactive, shortening the distance between the time a viewer sees an ad and their actual purchase. First we launched <a href="http://adwords.blogspot.com/2015/04/a-new-vision-for-interactivity-with.html" target="_blank">Cards</a>, which let you share product information directly within your videos across all screens. We took this feature further with <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" target="_blank">TrueView for shopping</a>, which is a bit like &#8220;automatic&#8221; Cards &#8211; simply connect your Google Merchant Center feed to your TrueView campaign to dynamically insert product cards within your in-stream ads, based on the products that are most likely to lead to a conversion.<br /><br />To help advertisers reach all the other product-focused content on YouTube &#8211; from unboxings, hauls, product reviews and how-to videos &#8211; today we&#8217;re announcing Shopping ads for YouTube. These will let you show a click-to-buy ad within partner videos on YouTube, going beyond your own videos to transform any relevant video into your digital storefront. Similar to Shopping ads on Google, you only pay when a user clicks on your ad.<br /><br />We&#8217;ve kept the format similar to Cards and TrueView for shopping, so users can easily recognize and click on the &#8220;i&#8221; icon at the top right of a video to view the Shopping ads. Shopping ads on YouTube are built off of your existing product feed in Merchant Center. They will enter an auction similar to Shopping ads on Google search and are selected based on a variety of contextual signals.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://2.bp.blogspot.com/-PSgAUE7zsI0/VgmdDVcG8RI/AAAAAAAAB5M/LlQ2EiH_VnE/s1600/ShoppingAdDemo.gif"><img border="0" height="356" src="http://2.bp.blogspot.com/-PSgAUE7zsI0/VgmdDVcG8RI/AAAAAAAAB5M/LlQ2EiH_VnE/s640/ShoppingAdDemo.gif" width="640"></a></td></tr><tr><td>Shopping ads on YouTube</td></tr></tbody></table>Shopping ads on YouTube provide an entirely new revenue stream for creators, providing another way to monetize product-focused videos. They also provide a more interactive experience for viewers, letting them shop directly from videos. Stay tuned as we roll this new capability in the coming months.<br /><br /><b>Driving long term success for mobile apps with TrueView for app promotion</b><br />Mobile viewership on YouTube continues to grow. In fact, the average viewing session on mobile is now more than 40 minutes, up more than 50% year over year. We&#8217;re focused on creating ad formats that help you reach viewers across all screens, and today we&#8217;re making YouTube an even better place to promote your mobile apps.<br /><br />Building off the success advertisers are seeing with app promotion in in-stream ads on YouTube, we&#8217;re introducing TrueView for app promotion for our in-display format as well. This format reaches potential users when they&#8217;re exploring content on YouTube. Early results from brands promoting their apps with in-display point to strong performance both in cost per install and lifetime value.<br /><table align="center" cellpadding="0" cellspacing="0"><tbody><tr><td><a href="http://1.bp.blogspot.com/-HrugTqb34nA/VgmdFEabqaI/AAAAAAAAB5Q/3cREB7inh20/s1600/TrVindisplaymock.png"><img border="0" height="400" src="http://1.bp.blogspot.com/-HrugTqb34nA/VgmdFEabqaI/AAAAAAAAB5Q/3cREB7inh20/s400/TrVindisplaymock.png" width="223"></a></td></tr><tr><td>TrueView in-display for app promotion</td></tr></tbody></table>We&#8217;re also enabling app promotion ads in our dedicated Gaming app, because what better place to promote gaming apps than in YouTube gaming content? And in the coming months, we&#8217;ll bring the ability to bid by cost per install. You tell us what you want to pay for a download, and we&#8217;ll optimize for that price. In an early beta, Smule used target CPA bidding to increase installs by 85%.<br /><br /><b>Expanding Brand Interest to YouTube Search</b><br />We&#8217;re also focused on providing better measurement, helping you understand whether your investments are driving results. Our <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" target="_blank">Brand Lift</a> solution, for example, helps you <a href="https://www.youtube.com/watch?v=gYJQMRSbMlc" target="_blank">measure interest</a> by monitoring lift in organic keyword searches related to your brand on Google.com.<br /><br />Starting today, Brand Lift will look not only at searches on Google.com, but will take YouTube searches into account as well. With this update, you&#8217;ll be able to see if your ad is driving searches for organic video content related to your brand on YouTube. Measuring interest is an important part of determining impact, and is a unique benefit of advertising on Google and YouTube.<br /><br /><b>Reach the right audience on YouTube with Customer Match</b><br />Finally, I&#8217;d like to call out our new targeting product, called Customer Match. <a href="http://adwords.blogspot.com/2015/09/Google-brings-you-closer-to-your-customers.html" target="_blank">Announced yesterday</a>, Customer Match helps you reach your existing customer base with the right message across three of Google&#8217;s largest properties: Google Search, YouTube, and Gmail.<br /><br />Advertisers looking to grow their brand can also use Similar Audiences with Customer Match to reach prospective customers across YouTube and Gmail based on the interests and characteristics of their existing customer base. With Similar Audiences, you can leverage your customer email lists to discover new audiences that are most like the customers you already have. These new targeting features enable advertisers to connect with &#8211; or exclude &#8211; customers to drive the best results for their brand.<br /><br /><b>Here&#8217;s to the next 10 years</b><br />As we head into our second decade as the place the world comes to engage with video, I&#8217;m excited to see us continuing to move fast, to build new things and to help marketers build brands. We can&#8217;t wait to see what you&#8217;ll do with these new tools.<br /><br /><i>Posted by Diya Jolly, Director, Video Ads Product Management</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Over the past 10 years of YouTube, video viewership has come a long way. In fact, according to new commissioned custom research conducted by Nielsen, the time 18-49 year olds spend on YouTube grew by 44 percent, while the time they spend watching traditional TV fell by nearly 10 percent over that same time period.<br /><br />YouTube has become the place the world comes to watch, share and engage with video. And we want to keep creating even better experiences for the viewers, advertisers and creators who turn to YouTube every day. So today at IAB Mixx, we announced new products that point toward the future of our video ad platform, specifically around interactivity, mobile, and measurement.<br /><br /><b>Turn YouTube into your virtual showroom</b><br />Over the course of the year, we’ve been working hard to make videos more interactive, shortening the distance between the time a viewer sees an ad and their actual purchase. First we launched <a href="http://adwords.blogspot.com/2015/04/a-new-vision-for-interactivity-with.html" >Cards</a>, which let you share product information directly within your videos across all screens. We took this feature further with <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" >TrueView for shopping</a>, which is a bit like “automatic” Cards – simply connect your Google Merchant Center feed to your TrueView campaign to dynamically insert product cards within your in-stream ads, based on the products that are most likely to lead to a conversion.<br /><br />To help advertisers reach all the other product-focused content on YouTube – from unboxings, hauls, product reviews and how-to videos – today we’re announcing Shopping ads for YouTube. These will let you show a click-to-buy ad within partner videos on YouTube, going beyond your own videos to transform any relevant video into your digital storefront. Similar to Shopping ads on Google, you only pay when a user clicks on your ad.<br /><br />We’ve kept the format similar to Cards and TrueView for shopping, so users can easily recognize and click on the “i” icon at the top right of a video to view the Shopping ads. Shopping ads on YouTube are built off of your existing product feed in Merchant Center. They will enter an auction similar to Shopping ads on Google search and are selected based on a variety of contextual signals.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-PSgAUE7zsI0/VgmdDVcG8RI/AAAAAAAAB5M/LlQ2EiH_VnE/s1600/ShoppingAdDemo.gif" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="356" src="http://2.bp.blogspot.com/-PSgAUE7zsI0/VgmdDVcG8RI/AAAAAAAAB5M/LlQ2EiH_VnE/s640/ShoppingAdDemo.gif" width="640" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Shopping ads on YouTube</td></tr></tbody></table>Shopping ads on YouTube provide an entirely new revenue stream for creators, providing another way to monetize product-focused videos. They also provide a more interactive experience for viewers, letting them shop directly from videos. Stay tuned as we roll this new capability in the coming months.<br /><br /><b>Driving long term success for mobile apps with TrueView for app promotion</b><br />Mobile viewership on YouTube continues to grow. In fact, the average viewing session on mobile is now more than 40 minutes, up more than 50% year over year. We’re focused on creating ad formats that help you reach viewers across all screens, and today we’re making YouTube an even better place to promote your mobile apps.<br /><br />Building off the success advertisers are seeing with app promotion in in-stream ads on YouTube, we’re introducing TrueView for app promotion for our in-display format as well. This format reaches potential users when they’re exploring content on YouTube. Early results from brands promoting their apps with in-display point to strong performance both in cost per install and lifetime value.<br /><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-HrugTqb34nA/VgmdFEabqaI/AAAAAAAAB5Q/3cREB7inh20/s1600/TrVindisplaymock.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"><img border="0" height="400" src="http://1.bp.blogspot.com/-HrugTqb34nA/VgmdFEabqaI/AAAAAAAAB5Q/3cREB7inh20/s400/TrVindisplaymock.png" width="223" /></a></td></tr><tr><td class="tr-caption" style="text-align: center;">TrueView in-display for app promotion</td></tr></tbody></table>We’re also enabling app promotion ads in our dedicated Gaming app, because what better place to promote gaming apps than in YouTube gaming content? And in the coming months, we’ll bring the ability to bid by cost per install. You tell us what you want to pay for a download, and we’ll optimize for that price. In an early beta, Smule used target CPA bidding to increase installs by 85%.<br /><br /><b>Expanding Brand Interest to YouTube Search</b><br />We’re also focused on providing better measurement, helping you understand whether your investments are driving results. Our <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" >Brand Lift</a> solution, for example, helps you <a href="https://www.youtube.com/watch?v=gYJQMRSbMlc" >measure interest</a> by monitoring lift in organic keyword searches related to your brand on Google.com.<br /><br />Starting today, Brand Lift will look not only at searches on Google.com, but will take YouTube searches into account as well. With this update, you’ll be able to see if your ad is driving searches for organic video content related to your brand on YouTube. Measuring interest is an important part of determining impact, and is a unique benefit of advertising on Google and YouTube.<br /><br /><b>Reach the right audience on YouTube with Customer Match</b><br />Finally, I’d like to call out our new targeting product, called Customer Match. <a href="http://adwords.blogspot.com/2015/09/Google-brings-you-closer-to-your-customers.html" >Announced yesterday</a>, Customer Match helps you reach your existing customer base with the right message across three of Google’s largest properties: Google Search, YouTube, and Gmail.<br /><br />Advertisers looking to grow their brand can also use Similar Audiences with Customer Match to reach prospective customers across YouTube and Gmail based on the interests and characteristics of their existing customer base. With Similar Audiences, you can leverage your customer email lists to discover new audiences that are most like the customers you already have. These new targeting features enable advertisers to connect with – or exclude – customers to drive the best results for their brand.<br /><br /><b>Here’s to the next 10 years</b><br />As we head into our second decade as the place the world comes to engage with video, I’m excited to see us continuing to move fast, to build new things and to help marketers build brands. We can’t wait to see what you’ll do with these new tools.<br /><br /><i>Posted by Diya Jolly, Director, Video Ads Product Management</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/today-at-iab-mixx-a-preview-of-new-capabilities-coming-to-youtube-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>What makes us Human?</title>
		<link>https://googledata.org/google-blog/what-makes-us-human/</link>
		<comments>https://googledata.org/google-blog/what-makes-us-human/#comments</comments>
		<pubDate>Fri, 11 Sep 2015 22:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Blogs]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=52b9c686b76ced260ce4b28c76bfa25a</guid>
		<description><![CDATA[Over the past three years, filmmaker and artist Yann Arthus-Bertrand travelled to 60 countries, interviewing more than 2,000 people in dozens of languages, in an attempt to answer the question: What is it that makes us human?  The result is <a href="http://g.co/humanthemovie">HUMAN</a>, a documentary film that weaves together a rich collection of stories from freedom fighters in Ukraine, farmers in Mali, death row inmates in the United States, and more&#8212;on topics that unite us all: love, justice, family, and the future of our planet. <br /><br />Now we&#8217;re partnering with Arthus-Bertrand, the Goodplanet Foundation and Bettencourt Schueller Foundation, to bring HUMAN to you on Google Play, YouTube and the Google Cultural Institute so we can share this project with the widest audience throughout the world. <br /><br /><b>Watch an extended version of the film on YouTube and Google Play</b><br />We&#8217;re making HUMAN available on YouTube starting September 12, and later on Google Play. This &#8220;director&#8217;s cut&#8221;of three 90-minute films will be available in Arabic, English, French, Portuguese, Russian and Spanish. On YouTube, you can also watch extra footage including interviews with figures like United Nations Secretary General Ban-Ki Moon, animal rights activist Jane Goodall and actress Cameron Diaz, all of whom participated in the film. <br /><br /><b><br /></b> <b>Explore HUMAN with the Google Cultural Institute</b><br />Over at the <a href="https://www.google.com/culturalinstitute/collection/human-the-movie">Google Cultural Institute</a>, you can learn about the origin of the film and listen to anecdotes from the people who brought it to life. You can also meet the characters in and around the movie in their daily lives, with six exhibits of behind the scenes photos and videos that let you explore how HUMAN was made over three years. This includes a collection highlighting how the director shot the aerial views that are a signature of  Arthus-Bertrand&#8217;s filmmaking.<br /><div><a href="https://4.bp.blogspot.com/-Cp4Cy5EHbCQ/VfMm4aPKqXI/AAAAAAAARHI/h6cXhUsLtlQ/s1600/Screen%2BShot%2B2015-09-11%2Bat%2B19.39.01.png"><i><img border="0" height="143" src="https://4.bp.blogspot.com/-Cp4Cy5EHbCQ/VfMm4aPKqXI/AAAAAAAARHI/h6cXhUsLtlQ/s640/Screen%2BShot%2B2015-09-11%2Bat%2B19.39.01.png" width="640"></i></a></div><div><i>Exhibitions on Google the Cultural Institute platform</i></div><br />Learn more about this project at <a href="http://g.co/humanthemovie">g.co/humanthemovie</a> or on the <a href="https://play.google.com/store/apps/details?id=org.culturalspot.mobile.humanbehindthescene">HUMAN Behind The Scenes mobile app</a>, available on Google Play. With HUMAN, we want to help citizens around the world connect together. So we&#8217;d like to hear your answer to the question of what makes us human. Add your voice to the conversation with #WhatMakesUsHUMAN.<br /><br /><span>Posted by Raphael Goumain, Head of Consumer Marketing, France</span>]]></description>
				<content:encoded><![CDATA[Over the past three years, filmmaker and artist Yann Arthus-Bertrand travelled to 60 countries, interviewing more than 2,000 people in dozens of languages, in an attempt to answer the question: What is it that makes us human?  The result is <a href="http://g.co/humanthemovie">HUMAN</a>, a documentary film that weaves together a rich collection of stories from freedom fighters in Ukraine, farmers in Mali, death row inmates in the United States, and more—on topics that unite us all: love, justice, family, and the future of our planet. <br /><br />Now we’re partnering with Arthus-Bertrand, the Goodplanet Foundation and Bettencourt Schueller Foundation, to bring HUMAN to you on Google Play, YouTube and the Google Cultural Institute so we can share this project with the widest audience throughout the world. <br /><br /><b>Watch an extended version of the film on YouTube and Google Play</b><br />We’re making HUMAN available on YouTube starting September 12, and later on Google Play. This “director’s cut”of three 90-minute films will be available in Arabic, English, French, Portuguese, Russian and Spanish. On YouTube, you can also watch extra footage including interviews with figures like United Nations Secretary General Ban-Ki Moon, animal rights activist Jane Goodall and actress Cameron Diaz, all of whom participated in the film. <br /><iframe allowfullscreen="" frameborder="0" height="360" src="https://www.youtube.com/embed/0-Retnj3TsA" width="640"></iframe><br /><b><br /></b> <b>Explore HUMAN with the Google Cultural Institute</b><br />Over at the <a href="https://www.google.com/culturalinstitute/collection/human-the-movie">Google Cultural Institute</a>, you can learn about the origin of the film and listen to anecdotes from the people who brought it to life. You can also meet the characters in and around the movie in their daily lives, with six exhibits of behind the scenes photos and videos that let you explore how HUMAN was made over three years. This includes a collection highlighting how the director shot the aerial views that are a signature of  Arthus-Bertrand’s filmmaking.<br /><div class="separator" style="clear: both; text-align: center;"><a href="https://4.bp.blogspot.com/-Cp4Cy5EHbCQ/VfMm4aPKqXI/AAAAAAAARHI/h6cXhUsLtlQ/s1600/Screen%2BShot%2B2015-09-11%2Bat%2B19.39.01.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><i><img border="0" height="143" src="https://4.bp.blogspot.com/-Cp4Cy5EHbCQ/VfMm4aPKqXI/AAAAAAAARHI/h6cXhUsLtlQ/s640/Screen%2BShot%2B2015-09-11%2Bat%2B19.39.01.png" width="640" /></i></a></div><div style="text-align: center;"><i>Exhibitions on Google the Cultural Institute platform</i></div><br />Learn more about this project at <a href="http://g.co/humanthemovie">g.co/humanthemovie</a> or on the <a href="https://play.google.com/store/apps/details?id=org.culturalspot.mobile.humanbehindthescene">HUMAN Behind The Scenes mobile app</a>, available on Google Play. With HUMAN, we want to help citizens around the world connect together. So we’d like to hear your answer to the question of what makes us human. Add your voice to the conversation with #WhatMakesUsHUMAN.<br /><br /><span class="byline-author">Posted by Raphael Goumain, Head of Consumer Marketing, France</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/what-makes-us-human/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>See the future of video by looking behind you: Introducing 360 degree video ads</title>
		<link>https://googledata.org/google-adwords/see-the-future-of-video-by-looking-behind-you-introducing-360-degree-video-ads/</link>
		<comments>https://googledata.org/google-adwords/see-the-future-of-video-by-looking-behind-you-introducing-360-degree-video-ads/#comments</comments>
		<pubDate>Wed, 22 Jul 2015 13:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=3fc9a216f70077ea3d5bd249ca885aa0</guid>
		<description><![CDATA[<div dir="ltr">Video is already the most effective medium for connecting with consumers thanks to the power of sight, sound and motion. But what if there were a way to let people become even more immersed in your video ads? To help advertisers deliver richer experiences, we&#8217;re introducing 360 degree video ads on YouTube.<br /><br />360 degree video ads let you engage your audience in an entirely new way. Available today in Chrome and the YouTube app on Android and iOS, viewers can explore every angle of your videos by dragging their mouse or moving their phone to shift their POV 360 degrees &#8211; up, down, left or right. Thanks to the ability simply to move your phone to see different parts of the video, 360 video ads are a truly mobile-first video ad product.<br /><br />We&#8217;re thrilled that as soon as the ability to create 360 video became available to YouTube creators, brands immediately began experimenting with this new tool to deliver engrossing consumer experiences. Since then, we&#8217;ve seen stunning videos from <a href="https://www.youtube.com/watch?v=79uA-gHvw18" target="_blank">Coca-Cola</a>, <a href="https://www.youtube.com/watch?v=LVTAOZtbXHc" target="_blank">Stella Artois</a> and <a href="https://www.youtube.com/watch?v=bBZhuqPRx9c" target="_blank">Nike</a>, among others (check them out on <a href="https://www.google.com/get/cardboard/" target="_blank">Cardboard</a>!). And for those videos that were run as ads, campaign results have been impressive: for instance, Coca-Cola&#8217;s 360 video celebrating the 100th anniversary of their iconic bottle design outperformed standard in-stream video ad view-through rates by 36%.<br /><br />And today, Bud Light becomes the first advertiser in the US to launch 360 video running in TrueView ads. The series of ads feature three different events from Whatever, USA &#8211; Bud &#160;Light&#8217;s takeover of Catalina Island. The immersive ads drop you right in the middle of the action, including a performance by Diplo, <a href="https://www.youtube.com/watch?v=D-Wl9jAB45Q&#38;feature=youtu.be" target="_blank">the welcome parade</a>, and the &#8220;Turn of An Era&#8221; 1920&#8217;s themed party.<br /><br />As with the recent launches of <a href="http://adwords.blogspot.com/2015/04/a-new-vision-for-interactivity-with.html" target="_blank">cards in TrueView in-stream ads</a> and <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" target="_blank">TrueView for shopping</a>, 360 video ads offer you another way to deepen consumer engagement with your ads on YouTube. Compatible with <a href="https://support.google.com/displayspecs/answer/6011474" target="_blank">YouTube HTML5 Rich Media Mastheads</a> and now TrueView in-stream and in-display units, you can maximize the reach of your 360 degree video ads with the power and scale of YouTube&#8217;s most popular ad format.<br /><br />To create 360 degree video ads, you will need access to one of the following 360 degree cameras: <a href="https://theta360.com/en/" target="_blank">Ricoh Theta</a>, <a href="http://kodakpixpro.com/Americas/cameras/activeCam/sp360.php" target="_blank">Kodak SP360</a>, <a href="http://www.giroptic.com/" target="_blank">Giroptic 360cam</a>, or <a href="http://icrealtech.com/" target="_blank">IC Real Tech Allie</a>. All of these cameras are already available or coming soon. Once your video is ready, follow these <a href="https://support.google.com/youtube/answer/6178631" target="_blank">steps</a> to upload the video to desktop Chrome. Campaigns for 360 degree videos running as TrueView ads can be set up in AdWords and your Google sales representative can help you with YouTube Mastheads.<br /><br />Whether you&#8217;re skydiving or experiencing what it&#8217;s like to stand in the front row of a Wimbledon match, 360 degree video ads unlock new opportunities for your brands to engage with consumers on YouTube.<br /><br /><i>Posted by JR Futrell, Product Manager, YouTube Ads</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Video is already the most effective medium for connecting with consumers thanks to the power of sight, sound and motion. But what if there were a way to let people become even more immersed in your video ads? To help advertisers deliver richer experiences, we’re introducing 360 degree video ads on YouTube.<br /><br />360 degree video ads let you engage your audience in an entirely new way. Available today in Chrome and the YouTube app on Android and iOS, viewers can explore every angle of your videos by dragging their mouse or moving their phone to shift their POV 360 degrees – up, down, left or right. Thanks to the ability simply to move your phone to see different parts of the video, 360 video ads are a truly mobile-first video ad product.<br /><br />We’re thrilled that as soon as the ability to create 360 video became available to YouTube creators, brands immediately began experimenting with this new tool to deliver engrossing consumer experiences. Since then, we’ve seen stunning videos from <a href="https://www.youtube.com/watch?v=79uA-gHvw18" >Coca-Cola</a>, <a href="https://www.youtube.com/watch?v=LVTAOZtbXHc" >Stella Artois</a> and <a href="https://www.youtube.com/watch?v=bBZhuqPRx9c" >Nike</a>, among others (check them out on <a href="https://www.google.com/get/cardboard/" >Cardboard</a>!). And for those videos that were run as ads, campaign results have been impressive: for instance, Coca-Cola’s 360 video celebrating the 100th anniversary of their iconic bottle design outperformed standard in-stream video ad view-through rates by 36%.<br /><br />And today, Bud Light becomes the first advertiser in the US to launch 360 video running in TrueView ads. The series of ads feature three different events from Whatever, USA – Bud &nbsp;Light’s takeover of Catalina Island. The immersive ads drop you right in the middle of the action, including a performance by Diplo, <a href="https://www.youtube.com/watch?v=D-Wl9jAB45Q&amp;feature=youtu.be" >the welcome parade</a>, and the “Turn of An Era” 1920’s themed party.<br /><br />As with the recent launches of <a href="http://adwords.blogspot.com/2015/04/a-new-vision-for-interactivity-with.html" >cards in TrueView in-stream ads</a> and <a href="http://adwords.blogspot.com/2015/05/introducing-trueview-for-shopping-new.html" >TrueView for shopping</a>, 360 video ads offer you another way to deepen consumer engagement with your ads on YouTube. Compatible with <a href="https://support.google.com/displayspecs/answer/6011474" >YouTube HTML5 Rich Media Mastheads</a> and now TrueView in-stream and in-display units, you can maximize the reach of your 360 degree video ads with the power and scale of YouTube’s most popular ad format.<br /><br />To create 360 degree video ads, you will need access to one of the following 360 degree cameras: <a href="https://theta360.com/en/" >Ricoh Theta</a>, <a href="http://kodakpixpro.com/Americas/cameras/activeCam/sp360.php" >Kodak SP360</a>, <a href="http://www.giroptic.com/" >Giroptic 360cam</a>, or <a href="http://icrealtech.com/" >IC Real Tech Allie</a>. All of these cameras are already available or coming soon. Once your video is ready, follow these <a href="https://support.google.com/youtube/answer/6178631" >steps</a> to upload the video to desktop Chrome. Campaigns for 360 degree videos running as TrueView ads can be set up in AdWords and your Google sales representative can help you with YouTube Mastheads.<br /><br />Whether you’re skydiving or experiencing what it’s like to stand in the front row of a Wimbledon match, 360 degree video ads unlock new opportunities for your brands to engage with consumers on YouTube.<br /><br /><i>Posted by JR Futrell, Product Manager, YouTube Ads</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/see-the-future-of-video-by-looking-behind-you-introducing-360-degree-video-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube A to Z: #HappyBirthdayYouTube</title>
		<link>https://googledata.org/google-blog/youtube-a-to-z-happybirthdayyoutube/</link>
		<comments>https://googledata.org/google-blog/youtube-a-to-z-happybirthdayyoutube/#comments</comments>
		<pubDate>Fri, 29 May 2015 14:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Blogs]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=bb8f8d9a85c4b9e28e7d5d026a910e33</guid>
		<description><![CDATA[Every adventure starts somewhere, and YouTube&#8217;s began on Saturday, April 23, 2005, when "Me at the Zoo" became the first video uploaded to a new site no one had ever heard of. Captured at California's San Diego Zoo, the clip is a 19-second description of <a href="https://www.youtube.com/playlist?list=PLbpi6ZahtOH57RvwW6bbGFRr2qQ5kMcKP">what exactly makes elephants so cool</a>. Its brief runtime and casual setup suggest little of the online video craziness that would follow over the subsequent decade. <br /><br />But it turns out &#8220;Me at the Zoo&#8221; proved to be a simple distillation of the premise of the new platform, where anyone could just turn on a camera and broadcast themselves with ease.  Who could have predicted that, in that same environment, <a href="http://youtube-trends.blogspot.com/2015/05/b-is-for-beauty-10yearsofyoutube.html">new</a> <a href="http://youtube-trends.blogspot.com/2015/05/v-is-for-vloggers-10yearsofyoutube.html">genres</a>, new forms of <a href="http://youtube-trends.blogspot.com/2015/05/m-is-for-memes-10yearsofyoutube.html">expression</a>, and new paths to <a href="http://youtube-trends.blogspot.com/2015/05/s-is-for-singers-10yearsofyoutube.html">stardom</a> would evolve? That engaging and unique personalities borne of this place could be <a href="http://variety.com/2014/digital/news/survey-youtube-stars-more-popular-than-mainstream-celebs-among-u-s-teens-1201275245/">more influential</a> than Hollywood's biggest names? Or that <b>more than a billion people</b> from all corners of the globe would come together in that space to experience what the world creates, broadcasts, and shares?<br /><br />Yeah. We were <a href="https://www.youtube.com/watch?v=0Bmhjf0rKe8">surprised</a>, too. <br /><br />For our 10th birthday this month, we've gone <a href="http://youtube-trends.blogspot.com/search/label/%2310YearsofYouTube">from A to Z</a> celebrating the <a href="http://youtube-trends.blogspot.com/2015/05/k-is-for-kidding-around-10yearsofyoutube.html">adorable</a>, <a href="http://youtube-trends.blogspot.com/2015/05/u-is-for-uplifting-10yearsofyoutube.html">empowering</a>, <a href="http://youtube-trends.blogspot.com/2015/05/e-is-for-epic-10yearsofyoutube.html">awesome</a>, <a href="http://youtube-trends.blogspot.com/2015/05/w-is-for-weird-and-wonderful.html">weird and wonderful</a>&#160;moments that represent the many sides of YouTube. But, of course, if we're really going to capture 10 years of YouTube, we're going to need to do it in &#8230; a video:<br /><br />Thanks for a wild and inspiring 10 years. Now, you've got <a href="http://www.tubefilter.com/2014/12/01/youtube-300-hours-video-per-minute/">300 <i>hours</i> of video to capture and share in the next minute</a>. So get back to it!<br /><br /><i>**Bonus Points: How well do you know YouTube, A to Z? Play the YouTube trivia game to find out at <a href="http://youtube.com/10">YouTube.com/10</a>.</i><br /><br /><span>Posted by the YouTube Team</span>]]></description>
				<content:encoded><![CDATA[Every adventure starts somewhere, and YouTube’s began on Saturday, April 23, 2005, when "Me at the Zoo" became the first video uploaded to a new site no one had ever heard of. Captured at California's San Diego Zoo, the clip is a 19-second description of <a href="https://www.youtube.com/playlist?list=PLbpi6ZahtOH57RvwW6bbGFRr2qQ5kMcKP">what exactly makes elephants so cool</a>. Its brief runtime and casual setup suggest little of the online video craziness that would follow over the subsequent decade. <br /><br />But it turns out “Me at the Zoo” proved to be a simple distillation of the premise of the new platform, where anyone could just turn on a camera and broadcast themselves with ease.  Who could have predicted that, in that same environment, <a href="http://youtube-trends.blogspot.com/2015/05/b-is-for-beauty-10yearsofyoutube.html">new</a> <a href="http://youtube-trends.blogspot.com/2015/05/v-is-for-vloggers-10yearsofyoutube.html">genres</a>, new forms of <a href="http://youtube-trends.blogspot.com/2015/05/m-is-for-memes-10yearsofyoutube.html">expression</a>, and new paths to <a href="http://youtube-trends.blogspot.com/2015/05/s-is-for-singers-10yearsofyoutube.html">stardom</a> would evolve? That engaging and unique personalities borne of this place could be <a href="http://variety.com/2014/digital/news/survey-youtube-stars-more-popular-than-mainstream-celebs-among-u-s-teens-1201275245/">more influential</a> than Hollywood's biggest names? Or that <b>more than a billion people</b> from all corners of the globe would come together in that space to experience what the world creates, broadcasts, and shares?<br /><br />Yeah. We were <a href="https://www.youtube.com/watch?v=0Bmhjf0rKe8">surprised</a>, too. <br /><br />For our 10th birthday this month, we've gone <a href="http://youtube-trends.blogspot.com/search/label/%2310YearsofYouTube">from A to Z</a> celebrating the <a href="http://youtube-trends.blogspot.com/2015/05/k-is-for-kidding-around-10yearsofyoutube.html">adorable</a>, <a href="http://youtube-trends.blogspot.com/2015/05/u-is-for-uplifting-10yearsofyoutube.html">empowering</a>, <a href="http://youtube-trends.blogspot.com/2015/05/e-is-for-epic-10yearsofyoutube.html">awesome</a>, <a href="http://youtube-trends.blogspot.com/2015/05/w-is-for-weird-and-wonderful.html">weird and wonderful</a>&nbsp;moments that represent the many sides of YouTube. But, of course, if we're really going to capture 10 years of YouTube, we're going to need to do it in … a video:<br /><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/WwoKkq685Hk" width="560"></iframe><br />Thanks for a wild and inspiring 10 years. Now, you've got <a href="http://www.tubefilter.com/2014/12/01/youtube-300-hours-video-per-minute/">300 <i>hours</i> of video to capture and share in the next minute</a>. So get back to it!<br /><br /><i>**Bonus Points: How well do you know YouTube, A to Z? Play the YouTube trivia game to find out at <a href="http://youtube.com/10">YouTube.com/10</a>.</i><br /><br /><span class="byline-author">Posted by the YouTube Team</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/youtube-a-to-z-happybirthdayyoutube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Introducing TrueView for shopping – a new way to promote your products with video</title>
		<link>https://googledata.org/google-adwords/introducing-trueview-for-shopping-a-new-way-to-promote-your-products-with-video/</link>
		<comments>https://googledata.org/google-adwords/introducing-trueview-for-shopping-a-new-way-to-promote-your-products-with-video/#comments</comments>
		<pubDate>Thu, 21 May 2015 16:01:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=fcf5498395727eb2cd514932e85a3d36</guid>
		<description><![CDATA[<div dir="ltr">Whether it&#8217;s watching a product review or learning how to bake a souffl&#233;, we look to video in countless moments throughout to the day to help us get things done. We call these micro-moments &#8211; when we reflexively turn to our devices to learn more, make a decision, or purchase a product. To connect the dots between the moment a person watches a video and the moment they decide to make a purchase, today we&#8217;re introducing a new feature called TrueView for shopping that makes it easy for viewers to get more information on your products and click to buy.<br /><br />TrueView for shopping allows you to showcase product details and images &#8211; along with the ability to click to purchase from a brand or retail site &#8211; all within your video ad. It&#8217;s available for TrueView in-stream video ads on YouTube. And since we know that 50% of views on YouTube come from mobile devices, we&#8217;ve made sure that it works seamlessly across mobile phones, desktops, and tablets.<br /><div><a href="http://4.bp.blogspot.com/-UkmmWN7DMV4/VV3uQbAjVkI/AAAAAAAABjE/1TvsPcLdasQ/s1600/Blog%2BImages%2B%252815%2529.png"><img border="0" height="400" src="http://4.bp.blogspot.com/-UkmmWN7DMV4/VV3uQbAjVkI/AAAAAAAABjE/1TvsPcLdasQ/s400/Blog%2BImages%2B%252815%2529.png" width="208"></a></div>Built on the <a href="http://adwords.blogspot.com/2015/04/a-new-vision-for-interactivity-with.html" target="_blank">cards platform we announced last month</a>, TrueView for shopping enables advertisers to scale the manual process of connecting individual products with individual videos. Thanks to the first-ever integration of the Google Merchant Center into video ads, advertisers need only connect their campaign with a Merchant Center feed to dynamically add products to their in-stream videos, customized for each user through contextual and audience signals like geography and demographic info.<br /><br />Brands that have participated in our early tests of TrueView for shopping have seen strong results for driving interest and sales. Online home goods retailer Wayfair, for instance, saw a 3X revenue increase per impression served when compared to previous campaigns. And beauty retailer Sephora took advantage of this new ad format to drive +80% lift in consideration and +54% lift in ad recall, and an average view time of nearly two minutes.<br /><div><a href="http://4.bp.blogspot.com/-iYoZc0KtMIA/VV3uvckZqDI/AAAAAAAABjM/rrvFf1l_rMI/s1600/Blog%2BImages%2B%252816%2529.png"><img border="0" height="361" src="http://4.bp.blogspot.com/-iYoZc0KtMIA/VV3uvckZqDI/AAAAAAAABjM/rrvFf1l_rMI/s640/Blog%2BImages%2B%252816%2529.png" width="640"></a></div>We&#8217;re excited to bring TrueView for shopping into our buying front end in the coming months. If you&#8217;d like to get started with TrueView for shopping today, please contact your Google account manager.<br /><br /><i>Posted by</i><br /><i>Avi Fein, Product Manager, YouTube Ads</i><br /><i>Pete Lidwell, Product Manager, YouTube Ads</i><br /><i>Jean-Yves Delort, Technical Lead, YouTube Ads</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Whether it’s watching a product review or learning how to bake a soufflé, we look to video in countless moments throughout to the day to help us get things done. We call these micro-moments – when we reflexively turn to our devices to learn more, make a decision, or purchase a product. To connect the dots between the moment a person watches a video and the moment they decide to make a purchase, today we’re introducing a new feature called TrueView for shopping that makes it easy for viewers to get more information on your products and click to buy.<br /><br />TrueView for shopping allows you to showcase product details and images – along with the ability to click to purchase from a brand or retail site – all within your video ad. It’s available for TrueView in-stream video ads on YouTube. And since we know that 50% of views on YouTube come from mobile devices, we’ve made sure that it works seamlessly across mobile phones, desktops, and tablets.<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-UkmmWN7DMV4/VV3uQbAjVkI/AAAAAAAABjE/1TvsPcLdasQ/s1600/Blog%2BImages%2B%252815%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="http://4.bp.blogspot.com/-UkmmWN7DMV4/VV3uQbAjVkI/AAAAAAAABjE/1TvsPcLdasQ/s400/Blog%2BImages%2B%252815%2529.png" width="208" /></a></div>Built on the <a href="http://adwords.blogspot.com/2015/04/a-new-vision-for-interactivity-with.html" >cards platform we announced last month</a>, TrueView for shopping enables advertisers to scale the manual process of connecting individual products with individual videos. Thanks to the first-ever integration of the Google Merchant Center into video ads, advertisers need only connect their campaign with a Merchant Center feed to dynamically add products to their in-stream videos, customized for each user through contextual and audience signals like geography and demographic info.<br /><br />Brands that have participated in our early tests of TrueView for shopping have seen strong results for driving interest and sales. Online home goods retailer Wayfair, for instance, saw a 3X revenue increase per impression served when compared to previous campaigns. And beauty retailer Sephora took advantage of this new ad format to drive +80% lift in consideration and +54% lift in ad recall, and an average view time of nearly two minutes.<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-iYoZc0KtMIA/VV3uvckZqDI/AAAAAAAABjM/rrvFf1l_rMI/s1600/Blog%2BImages%2B%252816%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="361" src="http://4.bp.blogspot.com/-iYoZc0KtMIA/VV3uvckZqDI/AAAAAAAABjM/rrvFf1l_rMI/s640/Blog%2BImages%2B%252816%2529.png" width="640" /></a></div>We’re excited to bring TrueView for shopping into our buying front end in the coming months. If you’d like to get started with TrueView for shopping today, please contact your Google account manager.<br /><br /><i>Posted by</i><br /><i>Avi Fein, Product Manager, YouTube Ads</i><br /><i>Pete Lidwell, Product Manager, YouTube Ads</i><br /><i>Jean-Yves Delort, Technical Lead, YouTube Ads</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/introducing-trueview-for-shopping-a-new-way-to-promote-your-products-with-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>A new vision for interactivity with TrueView in-stream</title>
		<link>https://googledata.org/google-adwords/a-new-vision-for-interactivity-with-trueview-in-stream/</link>
		<comments>https://googledata.org/google-adwords/a-new-vision-for-interactivity-with-trueview-in-stream/#comments</comments>
		<pubDate>Wed, 08 Apr 2015 01:47:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=452a4a51cde38dbcb46e2b7b7b1b498d</guid>
		<description><![CDATA[<div dir="ltr">In today's constantly connected world, there are billions of moments throughout the day when people are looking for answers, discovering new things, making a decision or looking for entertainment. In these moments, consumers' expectations are very high &#8211; they want things right, and right away. Successful brands are those that deliver a great experience at the exact moment a consumer is looking for it.<br /><br />It was with this belief in the importance of intent and relevance that 5 years ago we launched TrueView ads, which gave users the choice to watch or skip ads. It was a leap of faith based on the belief that viewers would choose to watch ads on YouTube if these ads were interesting, relevant, and engaging. Since then TrueView has <a href="http://adwordsagency.blogspot.com/2015/04/5-years-of-trueview-how-user-choice-is.html" target="_blank">come a long way</a>, expanding to mobile, becoming more measurable with Brand Lift, and enabling more interactivity with features like app downloads seamlessly within your ad.<br /><br />Today, we&#8217;re making TrueView an even better creative canvas for brands with greater interactivity and more accurate accounting of audience engagement.<br /><br /><b>Greater interactivity through cards</b><br />One of the top requests from brands has been to make videos more interactive, particularly on mobile. So we&#8217;re introducing cards for TrueView in-stream ads, a new feature which will make video ads a more engaging, interactive experience for viewers across all screens.<br /><br />An evolution of our annotations feature, cards launched to videos on YouTube <a href="http://youtubecreator.blogspot.com/2015/03/make-your-videos-even-more-interactive.html" target="_blank">last month</a> providing a more beautiful and seamless way to inform viewers about other videos, playlists, and more. Now with cards coming to TrueView in-stream ads, you can share more information about your brand, related videos and playlists, and soon link to your website directly from your TrueView video ad. For information about how to enable cards in your campaigns, visit our <a href="https://support.google.com/youtube/answer/6140493?hl=en&#38;ref_topic=6140492&#38;rd=1" target="_blank">Help Center</a>.<br /><br /><div><b>Cards panel on mobile in portrait</b></div><div><a href="http://3.bp.blogspot.com/-bR1l5YLE9Z8/VSSHEoiOAYI/AAAAAAAABcw/jWc3bhLP1Kg/s1600/Untitled%2Bdrawing%2B(4).png"><img border="0" src="http://3.bp.blogspot.com/-bR1l5YLE9Z8/VSSHEoiOAYI/AAAAAAAABcw/jWc3bhLP1Kg/s1600/Untitled%2Bdrawing%2B(4).png" height="320" width="187"></a></div><br /><div><b>Expanded card panel on desktop</b></div><div><a href="http://4.bp.blogspot.com/-dmYF71djBhI/VSSIFNAc66I/AAAAAAAABc4/lHV1Taa5Rio/s1600/Untitled%2Bdrawing%2B(5).png"><img border="0" src="http://4.bp.blogspot.com/-dmYF71djBhI/VSSIFNAc66I/AAAAAAAABc4/lHV1Taa5Rio/s1600/Untitled%2Bdrawing%2B(5).png" height="243" width="400"></a></div><div><br /></div>Unlike free-form annotations on ads, cards work on mobile and will come to connected TVs, so you can create one ad and run it across all screens. This means viewers will always know how to get more info about video ads, regardless of how they&#8217;re watching YouTube.<br /><br />Cards also provide a platform to bring you additional features that make TrueView a more actionable format. Throughout this year, we&#8217;ll roll out specialized cards that cater to specific use cases, a process we started with TrueView for app promotion last year.<br /><br /><b>Optimizing for viewer actions</b><br />TrueView is built on the notion that when someone chooses to watch your video, they have stronger intent and interest for your brand. For that reason, we only count a view when someone shows an intent to watch. Now, with greater interactivity signals, we can go a step further and enable you to to optimize for viewer actions. In addition to counting a view when someone watches an ad, we will also count a view when viewers click on a card or other elements of your in-stream creative, as we believe this is a strong indication that they are interested and engaged. We&#8217;ll bill for these click interactions, similar to what we currently do for TrueView for app promotion campaigns. As always, we&#8217;ll only charge when a view is counted and will bill for either the full view or click (but not both). This change will roll out to all TrueView in-stream ads in May.<br /><br /><b>New click behavior for in-stream</b><br />To ensure you only pay for deliberate clicks on your video ads, we&#8217;re also changing where you can click on in-stream ads. Formerly clicking anywhere on the player would register a click; now only clicks to cards or CTAs, the video header, companion banner or a link at the bottom of the player will count as a click. <br /><div><a href="http://3.bp.blogspot.com/-tK1vQog0w6k/VSSIWpWeUkI/AAAAAAAABdA/khayPMCLBmY/s1600/Untitled%2Bdrawing%2B(6).png"><img border="0" src="http://3.bp.blogspot.com/-tK1vQog0w6k/VSSIWpWeUkI/AAAAAAAABdA/khayPMCLBmY/s1600/Untitled%2Bdrawing%2B(6).png" height="386" width="640"></a></div>Phew! That was a lot of info. TrueView has always been focused on user choice &#8211; and we believe these new features will make video ads even more engaging. We&#8217;re excited to continue to evolve our TrueView platform in 2015 and beyond.<br /><br />To take a stroll down memory lane for TrueView&#8217;s fifth anniversary, check out our Agency blog post.<br /><br /><i>Posted by</i><br /><i>Avi Fein, Product Manager, AdWords for video</i><br /><i>JR Futrell, Product Manager, YouTube Ads</i><br /><i>Jim Habig, Product Marketing Manager, YouTube Ads</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">In today's constantly connected world, there are billions of moments throughout the day when people are looking for answers, discovering new things, making a decision or looking for entertainment. In these moments, consumers' expectations are very high – they want things right, and right away. Successful brands are those that deliver a great experience at the exact moment a consumer is looking for it.<br /><br />It was with this belief in the importance of intent and relevance that 5 years ago we launched TrueView ads, which gave users the choice to watch or skip ads. It was a leap of faith based on the belief that viewers would choose to watch ads on YouTube if these ads were interesting, relevant, and engaging. Since then TrueView has <a href="http://adwordsagency.blogspot.com/2015/04/5-years-of-trueview-how-user-choice-is.html" >come a long way</a>, expanding to mobile, becoming more measurable with Brand Lift, and enabling more interactivity with features like app downloads seamlessly within your ad.<br /><br />Today, we’re making TrueView an even better creative canvas for brands with greater interactivity and more accurate accounting of audience engagement.<br /><br /><b>Greater interactivity through cards</b><br />One of the top requests from brands has been to make videos more interactive, particularly on mobile. So we’re introducing cards for TrueView in-stream ads, a new feature which will make video ads a more engaging, interactive experience for viewers across all screens.<br /><br />An evolution of our annotations feature, cards launched to videos on YouTube <a href="http://youtubecreator.blogspot.com/2015/03/make-your-videos-even-more-interactive.html" >last month</a> providing a more beautiful and seamless way to inform viewers about other videos, playlists, and more. Now with cards coming to TrueView in-stream ads, you can share more information about your brand, related videos and playlists, and soon link to your website directly from your TrueView video ad. For information about how to enable cards in your campaigns, visit our <a href="https://support.google.com/youtube/answer/6140493?hl=en&amp;ref_topic=6140492&amp;rd=1" >Help Center</a>.<br /><br /><div style="text-align: center;"><b>Cards panel on mobile in portrait</b></div><div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-bR1l5YLE9Z8/VSSHEoiOAYI/AAAAAAAABcw/jWc3bhLP1Kg/s1600/Untitled%2Bdrawing%2B(4).png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-bR1l5YLE9Z8/VSSHEoiOAYI/AAAAAAAABcw/jWc3bhLP1Kg/s1600/Untitled%2Bdrawing%2B(4).png" height="320" width="187" /></a></div><br /><div style="text-align: center;"><b>Expanded card panel on desktop</b></div><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-dmYF71djBhI/VSSIFNAc66I/AAAAAAAABc4/lHV1Taa5Rio/s1600/Untitled%2Bdrawing%2B(5).png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/-dmYF71djBhI/VSSIFNAc66I/AAAAAAAABc4/lHV1Taa5Rio/s1600/Untitled%2Bdrawing%2B(5).png" height="243" width="400" /></a></div><div style="text-align: center;"><br /></div>Unlike free-form annotations on ads, cards work on mobile and will come to connected TVs, so you can create one ad and run it across all screens. This means viewers will always know how to get more info about video ads, regardless of how they’re watching YouTube.<br /><br />Cards also provide a platform to bring you additional features that make TrueView a more actionable format. Throughout this year, we’ll roll out specialized cards that cater to specific use cases, a process we started with TrueView for app promotion last year.<br /><br /><b>Optimizing for viewer actions</b><br />TrueView is built on the notion that when someone chooses to watch your video, they have stronger intent and interest for your brand. For that reason, we only count a view when someone shows an intent to watch. Now, with greater interactivity signals, we can go a step further and enable you to to optimize for viewer actions. In addition to counting a view when someone watches an ad, we will also count a view when viewers click on a card or other elements of your in-stream creative, as we believe this is a strong indication that they are interested and engaged. We’ll bill for these click interactions, similar to what we currently do for TrueView for app promotion campaigns. As always, we’ll only charge when a view is counted and will bill for either the full view or click (but not both). This change will roll out to all TrueView in-stream ads in May.<br /><br /><b>New click behavior for in-stream</b><br />To ensure you only pay for deliberate clicks on your video ads, we’re also changing where you can click on in-stream ads. Formerly clicking anywhere on the player would register a click; now only clicks to cards or CTAs, the video header, companion banner or a link at the bottom of the player will count as a click. <br /><div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-tK1vQog0w6k/VSSIWpWeUkI/AAAAAAAABdA/khayPMCLBmY/s1600/Untitled%2Bdrawing%2B(6).png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-tK1vQog0w6k/VSSIWpWeUkI/AAAAAAAABdA/khayPMCLBmY/s1600/Untitled%2Bdrawing%2B(6).png" height="386" width="640" /></a></div>Phew! That was a lot of info. TrueView has always been focused on user choice – and we believe these new features will make video ads even more engaging. We’re excited to continue to evolve our TrueView platform in 2015 and beyond.<br /><br />To take a stroll down memory lane for TrueView’s fifth anniversary, check out our Agency blog post.<br /><br /><i>Posted by</i><br /><i>Avi Fein, Product Manager, AdWords for video</i><br /><i>JR Futrell, Product Manager, YouTube Ads</i><br /><i>Jim Habig, Product Marketing Manager, YouTube Ads</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/a-new-vision-for-interactivity-with-trueview-in-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Android Developer Story: Outfit7 — Building an entertainment company with Google</title>
		<link>https://googledata.org/google-android/android-developer-story-outfit7-building-an-entertainment-company-with-google/</link>
		<comments>https://googledata.org/google-android/android-developer-story-outfit7-building-an-entertainment-company-with-google/#comments</comments>
		<pubDate>Wed, 18 Mar 2015 19:13:00 +0000</pubDate>
		<dc:creator><![CDATA[Android Developers]]></dc:creator>
				<category><![CDATA[Google Android]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Google Mobile]]></category>
		<category><![CDATA[google os]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=4e58693d1c0bd733e314b27f901c7b8b</guid>
		<description><![CDATA[<p><i>Posted by Leticia Lago, Google Play team</i></p>

<p><a href="http://outfit7.com/">Outfit7</a>, creators of <a href="https://play.google.com/store/apps/details?id=com.outfit7.mytalkingtomfree">My Talking Tom</a> and <a href="https://play.google.com/store/apps/details?id=com.outfit7.mytalkingangelafree">My Talking Angela</a>, recently announced they&#8217;ve achieved 2.5 billion app downloads across their portfolio. The company now offers a complete entertainment experience to users spanning mobile apps, user generated and original YouTube content, and a range of toys, clothing, and accessories. They even have a silver screen project underway. </p>

<p>We caught up with Iza Login, Rok Zorko and Marko &#352;tamcar - some of the co-founders-  in Ljubljana, Slovenia, to learn best practices that helped them in reaching this milestone.</p> 

<!--[Interactive video]  -->
  
<p>To learn about some of the Google and Google Play features used by Outfit7 to create their successful business, check out these resources:</p>

<ul><li><a href="http://developer.android.com/distribute/monetize/index.html?utm_campaign=Outfit7-313&#38;utm_source=dac&#38;utm_medium=blog">Monetization</a> &#8212; explore the options available for generating revenue from your apps and games.</li>
<li><a href="https://www.google.com/admob/monetize.html">Monetization with AdMob</a> &#8212; learn how you can maximize your ad revenue. </li>
<li><a href="https://www.youtube.com/yt/dev/">YouTube for Developers</a> &#8212; Whether you&#8217;re building a business on YouTube or want to enhance your app with video, a rich set of YouTube APIs can bring your products to life.</li></ul><div><div><a href="https://plus.google.com/+AndroidDevelopers/posts/AqFGYx249gg"><span>Join the discussion on</span></a><br /><br /><a href="https://plus.google.com/+AndroidDevelopers/posts/AqFGYx249gg"><span>+Android Developers</span></a></div><div><a href="https://plus.google.com/+AndroidDevelopers/posts/AqFGYx249gg"><img height="32" src="https://ssl.gstatic.com/images/icons/gplus-32.png" width="32"></a></div></div>]]></description>
				<content:encoded><![CDATA[<p><i>Posted by Leticia Lago, Google Play team</i></p>

<p><a href="http://outfit7.com/">Outfit7</a>, creators of <a href="https://play.google.com/store/apps/details?id=com.outfit7.mytalkingtomfree">My Talking Tom</a> and <a href="https://play.google.com/store/apps/details?id=com.outfit7.mytalkingangelafree">My Talking Angela</a>, recently announced they’ve achieved 2.5 billion app downloads across their portfolio. The company now offers a complete entertainment experience to users spanning mobile apps, user generated and original YouTube content, and a range of toys, clothing, and accessories. They even have a silver screen project underway. </p>

<p>We caught up with Iza Login, Rok Zorko and Marko Štamcar - some of the co-founders-  in Ljubljana, Slovenia, to learn best practices that helped them in reaching this milestone.</p> 

<!--[Interactive video]  --><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/ekxABqJeRBc?list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c" style="box-shadow: 3px 10px 18px 1px #999; display: block; margin-bottom:1em; margin-left: 70px;" width="560"></iframe>
  
<p>To learn about some of the Google and Google Play features used by Outfit7 to create their successful business, check out these resources:</p>

<ul><li><a href="http://developer.android.com/distribute/monetize/index.html?utm_campaign=Outfit7-313&utm_source=dac&utm_medium=blog">Monetization</a> — explore the options available for generating revenue from your apps and games.</li>
<li><a href="https://www.google.com/admob/monetize.html">Monetization with AdMob</a> — learn how you can maximize your ad revenue. </li>
<li><a href="https://www.youtube.com/yt/dev/">YouTube for Developers</a> — Whether you’re building a business on YouTube or want to enhance your app with video, a rich set of YouTube APIs can bring your products to life.</li></ul>

<div style="display: inline-block; float: right; line-height: 0;clear:both;"><div style="float: left;"><a href="https://plus.google.com/+AndroidDevelopers/posts/AqFGYx249gg" style="color: #333333; text-decoration: none;"><span style="font: 13px/16px arial,sans-serif; margin-right: 4px; margin-top: 0px;">Join the discussion on</span></a><br />
<br />
<a href="https://plus.google.com/+AndroidDevelopers/posts/AqFGYx249gg" style="color: #333333; text-decoration: none;"><span style="font: bold 13px/16px arial,sans-serif; margin-right: 4px; margin-top: 7px;">+Android Developers</span></a></div><div style="float: right;"><a href="https://plus.google.com/+AndroidDevelopers/posts/AqFGYx249gg" style="color: #333333; text-decoration: none;"><img height="32" src="https://ssl.gstatic.com/images/icons/gplus-32.png" style="border: 0;" width="32" /></a></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-android/android-developer-story-outfit7-building-an-entertainment-company-with-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Our first building block in tech for tykes: YouTube Kids</title>
		<link>https://googledata.org/google-blog/our-first-building-block-in-tech-for-tykes-youtube-kids/</link>
		<comments>https://googledata.org/google-blog/our-first-building-block-in-tech-for-tykes-youtube-kids/#comments</comments>
		<pubDate>Mon, 23 Feb 2015 14:33:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Blogs]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=57b3414c71efc5b31b9abc87fd130cfd</guid>
		<description><![CDATA[When we were kids, if we wanted to learn more about gorillas or how to make friendship bracelets, our parents pointed us to an encyclopedia, or took us to the library. When we wanted to watch cartoons, we eagerly awaited Saturday morning. Today&#8217;s kids have it even better&#8212;they have all of these options, plus a world of knowledge and information at their fingertips via the Internet. That opens up wonderful opportunities, but also can cause some worry for those of us who are parents.<br /><br />So <a href="http://www.usatoday.com/story/tech/2014/12/03/google-products-revamped-for-under-13-crowd/19803447/">over the past year</a>, teams across Google&#8212;including many passionate parents&#8212;have been looking at how families are using our products, and how we can make it easier for children and parents to explore and play together. We decided to start with YouTube. <br /><br />For years, families have come to YouTube, watching countless hours of videos on a variety of topics. And today, we&#8217;re launching YouTube Kids, a new family-friendly app that makes it easy for kids to explore a vast selection of videos on any topic. <br /><br />In the new YouTube Kids app, available on Android and iOS in the U.S., videos are narrowed to focus on content that is appropriate for the whole family. You might explore DIY arts and crafts, learn how to find the circumference of a circle, or watch favorites from Mother Goose Club to Minecraft, as well as new series from National Geographic Kids and Reading Rainbow. And there are more train videos than even you can count. <br /><br />We&#8217;ve designed the app to be easier for kids to use, with a brighter and bigger interface that&#8217;s perfect for small thumbs and pudgy fingers. For parents, we&#8217;ve built in options that let you decide how your family uses the app, including the ability to set viewing limits with a timer.<br /><div><br /></div>Head over to <a href="http://youtube-global.blogspot.com/2015/02/youtube-kids.html">YouTube&#8217;s blog</a> to learn more. This is just our first step&#8212;we&#8217;ll keep tinkering and hope to have more great products for your family soon. <br /><br /><span>Posted by Pavni Diwanji, VP of Engineering, and Shimrit Ben-Yair, Product Manager, both moms of two</span>]]></description>
				<content:encoded><![CDATA[When we were kids, if we wanted to learn more about gorillas or how to make friendship bracelets, our parents pointed us to an encyclopedia, or took us to the library. When we wanted to watch cartoons, we eagerly awaited Saturday morning. Today’s kids have it even better—they have all of these options, plus a world of knowledge and information at their fingertips via the Internet. That opens up wonderful opportunities, but also can cause some worry for those of us who are parents.<br /><br />So <a href="http://www.usatoday.com/story/tech/2014/12/03/google-products-revamped-for-under-13-crowd/19803447/">over the past year</a>, teams across Google—including many passionate parents—have been looking at how families are using our products, and how we can make it easier for children and parents to explore and play together. We decided to start with YouTube. <br /><br />For years, families have come to YouTube, watching countless hours of videos on a variety of topics. And today, we’re launching YouTube Kids, a new family-friendly app that makes it easy for kids to explore a vast selection of videos on any topic. <br /><br />In the new YouTube Kids app, available on Android and iOS in the U.S., videos are narrowed to focus on content that is appropriate for the whole family. You might explore DIY arts and crafts, learn how to find the circumference of a circle, or watch favorites from Mother Goose Club to Minecraft, as well as new series from National Geographic Kids and Reading Rainbow. And there are more train videos than even you can count. <br /><br />We’ve designed the app to be easier for kids to use, with a brighter and bigger interface that’s perfect for small thumbs and pudgy fingers. For parents, we’ve built in options that let you decide how your family uses the app, including the ability to set viewing limits with a timer.<br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/OUmMAAPX6E8?feature=inp-bl-ytk" width="560"></iframe><br /></div>Head over to <a href="http://youtube-global.blogspot.com/2015/02/youtube-kids.html">YouTube’s blog</a> to learn more. This is just our first step—we’ll keep tinkering and hope to have more great products for your family soon. <br /><br /><span class="byline-author">Posted by Pavni Diwanji, VP of Engineering, and Shimrit Ben-Yair, Product Manager, both moms of two</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/our-first-building-block-in-tech-for-tykes-youtube-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Shooting stars and puppy ads: How the world watched the big game</title>
		<link>https://googledata.org/google-blog/shooting-stars-and-puppy-ads-how-the-world-watched-the-big-game/</link>
		<comments>https://googledata.org/google-blog/shooting-stars-and-puppy-ads-how-the-world-watched-the-big-game/#comments</comments>
		<pubDate>Mon, 02 Feb 2015 16:02:00 +0000</pubDate>
		<dc:creator><![CDATA[Emily Wood]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=052dc2247039fb5830da34a41bad4597</guid>
		<description><![CDATA[From a &#8220;<a href="http://www.foxsports.com/nfl/story/super-bowl-seattle-seahawks-new-england-patriots-final-moments-020115">super brawl</a>&#8221; to a giant lion, yesterday&#8217;s big game was filled with many notable moments. That&#8217;s true on YouTube and Google too&#8212;people watched more game-day ads and teaser videos on YouTube than ever before, YouTube hosted its first-ever halftime show, and a throwback PSA became a top trending search term. Here&#8217;s a look at the top trending searches, videos and more across Google and YouTube:<br /><br /><b>Battle of the brands </b><br />As the battle for football supremacy was taking place on the field, a very different one was raging across the country: Which ad would reign supreme? Whether via smartphone, tablet or laptop, people spent nearly 4 million hours watching game-day ads and teaser videos on YouTube&#8212;up from 2.2 million hours from this time last year. <br /><div><a href="http://2.bp.blogspot.com/-2mvysnqT1NE/VM-ejbb0GcI/AAAAAAAAPug/9FuvRjmCkxQ/s1600/TopAdsQuestions_OGBPost.jpg"><img border="0" src="http://2.bp.blogspot.com/-2mvysnqT1NE/VM-ejbb0GcI/AAAAAAAAPug/9FuvRjmCkxQ/s1600/TopAdsQuestions_OGBPost.jpg" width="500"></a></div>This year&#8217;s most popular ads came from a wide range of advertisers&#8212;newcomers and veterans alike. But one thing&#8217;s for certain&#8212;<a href="https://www.youtube.com/watch?v=xAsjRRMMg_Q">puppies</a>, <a href="https://www.youtube.com/watch?v=g9A1NowrnGI">pranks</a>, and <a href="https://www.youtube.com/watch?v=ZTwzsV3I3OQ">Kim Kardashian</a> continue to &#8220;break the Internet.&#8221; Here are some of the ads that scored big on YouTube so far:<br /><div><a href="http://3.bp.blogspot.com/-Dp18fBIaiNM/VM_JuJdoYmI/AAAAAAAAPvQ/2KjBKdV1yUo/s1600/YouTube-Superbowl-2-r1.jpg"><img border="0" src="http://3.bp.blogspot.com/-Dp18fBIaiNM/VM_JuJdoYmI/AAAAAAAAPvQ/2KjBKdV1yUo/s1600/YouTube-Superbowl-2-r1.jpg" height="640" width="585"></a></div><b>Tom Brady and Missy Elliott dominate on search</b><br />While people turned to YouTube to watch the ads, people turned to Google to search for everything from &#8220;how old is Tom Brady&#8221; to &#8220;buffalo chicken dip recipes&#8221; to &#8220;Katy Perry Halftime performance.&#8221; Before kickoff, people asked Google &#8220;Why did John Travolta call Idina &#8216;Adele'?&#8221;&#8212;a throwback to John Travolta&#8217;s infamous mispronunciation of National Anthem performer Idina Menzel's name at the 2014 Oscars. Searchers were also interested in Menzel&#8217;s performance, asking &#8220;How long will it take Idina to sing the National Anthem?&#8221;<br /><br />Tom Brady, Marshawn Lynch and Russell Wilson were the top three searched players before, during and after the game. Thanks to some standout in-game performances, by the end they were sharing the spotlight with Rob Gronkowski and Chris Matthews (replacing Richard Sherman and Kam Chancellor). And MVP Tom Brady wasn&#8217;t just a winner on the field&#8212;he captured the title of &#8220;Most Searched Quarterback&#8221; in every state except for the Seahawks&#8217; home Washington.<br /><div><a href="http://3.bp.blogspot.com/-rAQOTbSQP9U/VM-ejQ786CI/AAAAAAAAPuc/hbfm0rl4uj4/s1600/QBMap_OGBPost.jpg"><img border="0" src="http://3.bp.blogspot.com/-rAQOTbSQP9U/VM-ejQ786CI/AAAAAAAAPuc/hbfm0rl4uj4/s1600/QBMap_OGBPost.jpg" width="500"></a></div>Of course, for many people the halftime show is the highlight of the night, and Katy Perry&#8217;s performance delivered. She came in on a lion, danced with sharks and went out on a star&#8212;one that was, for some, reminiscent of NBC&#8217;s old &#8220;The More You Know&#8221; PSAs. The phrase "the more you know" spiked 190x in search for the 10 minutes after Katy&#8217;s starry flight. And although Missy Elliott was a late addition to the halftime lineup, she was a popular topic in search. Top questions related to Missy Elliott included &#8220;When was Missy Elliott popular?&#8221; and &#8220;How does Katy Perry know Missy Elliott?&#8221;<br /><br /><b>A very YouTube halftime show </b><br />For the first time ever, this year YouTube hosted a halftime show produced by Collective Digital Studio, with the help of more than 25 YouTube creators including <a href="https://www.youtube.com/user/EpicMealTime">Epic Meal Time</a>'s Harley Morenstein as host, <a href="https://www.youtube.com/user/RhettandLink">Rhett &#38; Link</a>, <a href="https://www.youtube.com/user/TobyTurner">Toby Turner</a>, <a href="https://www.youtube.com/user/freddiew">Freddie Wong</a> and <a href="https://www.youtube.com/user/TylerWardMusic">Tyler Ward</a>. From <a href="https://www.youtube.com/user/KurtHugoSchneider">Kurt Hugo Schneider</a>&#8217;s "Epic Patty Cake Song" to the &#8220;Elephant&#8217;s Toothpaste&#8221; science experiment with <a href="https://www.youtube.com/user/ScienceBob">Science Bob</a>, the show delivered a one-of-a-kind experience for YouTube fans. <br /><br />With the last touchdown scored, we&#8217;re taking votes for your favorite ad, so visit our <a href="http://youtube.com/adblitz">AdBlitz channel</a> to cast your ballot before voting ends on February 9 at 11:59pm ET. <br /><br />Whether you&#8217;re a loyal 12th man or a Boston fan for life, chances are you turned to YouTube and Google to watch your favorite ads, answer your questions or witness a new generation of halftime entertainment. We&#8217;re happy we could be a part of your game. <br /><br /><span>Posted by Riki Nakasuji, Sports &#38; Gaming Sponsorships Manager, YouTube</span>]]></description>
				<content:encoded><![CDATA[From a “<a href="http://www.foxsports.com/nfl/story/super-bowl-seattle-seahawks-new-england-patriots-final-moments-020115">super brawl</a>” to a giant lion, yesterday’s big game was filled with many notable moments. That’s true on YouTube and Google too—people watched more game-day ads and teaser videos on YouTube than ever before, YouTube hosted its first-ever halftime show, and a throwback PSA became a top trending search term. Here’s a look at the top trending searches, videos and more across Google and YouTube:<br /><br /><b>Battle of the brands </b><br />As the battle for football supremacy was taking place on the field, a very different one was raging across the country: Which ad would reign supreme? Whether via smartphone, tablet or laptop, people spent nearly 4 million hours watching game-day ads and teaser videos on YouTube—up from 2.2 million hours from this time last year. <br /><div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-2mvysnqT1NE/VM-ejbb0GcI/AAAAAAAAPug/9FuvRjmCkxQ/s1600/TopAdsQuestions_OGBPost.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-2mvysnqT1NE/VM-ejbb0GcI/AAAAAAAAPug/9FuvRjmCkxQ/s1600/TopAdsQuestions_OGBPost.jpg" width="500" /></a></div>This year’s most popular ads came from a wide range of advertisers—newcomers and veterans alike. But one thing’s for certain—<a href="https://www.youtube.com/watch?v=xAsjRRMMg_Q">puppies</a>, <a href="https://www.youtube.com/watch?v=g9A1NowrnGI">pranks</a>, and <a href="https://www.youtube.com/watch?v=ZTwzsV3I3OQ">Kim Kardashian</a> continue to “break the Internet.” Here are some of the ads that scored big on YouTube so far:<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-Dp18fBIaiNM/VM_JuJdoYmI/AAAAAAAAPvQ/2KjBKdV1yUo/s1600/YouTube-Superbowl-2-r1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-Dp18fBIaiNM/VM_JuJdoYmI/AAAAAAAAPvQ/2KjBKdV1yUo/s1600/YouTube-Superbowl-2-r1.jpg" height="640" width="585" /></a></div><b>Tom Brady and Missy Elliott dominate on search</b><br />While people turned to YouTube to watch the ads, people turned to Google to search for everything from “how old is Tom Brady” to “buffalo chicken dip recipes” to “Katy Perry Halftime performance.” Before kickoff, people asked Google “Why did John Travolta call Idina ‘Adele'?”—a throwback to John Travolta’s infamous mispronunciation of National Anthem performer Idina Menzel's name at the 2014 Oscars. Searchers were also interested in Menzel’s performance, asking “How long will it take Idina to sing the National Anthem?”<br /><br />Tom Brady, Marshawn Lynch and Russell Wilson were the top three searched players before, during and after the game. Thanks to some standout in-game performances, by the end they were sharing the spotlight with Rob Gronkowski and Chris Matthews (replacing Richard Sherman and Kam Chancellor). And MVP Tom Brady wasn’t just a winner on the field—he captured the title of “Most Searched Quarterback” in every state except for the Seahawks’ home Washington.<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-rAQOTbSQP9U/VM-ejQ786CI/AAAAAAAAPuc/hbfm0rl4uj4/s1600/QBMap_OGBPost.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-rAQOTbSQP9U/VM-ejQ786CI/AAAAAAAAPuc/hbfm0rl4uj4/s1600/QBMap_OGBPost.jpg" width="500" /></a></div>Of course, for many people the halftime show is the highlight of the night, and Katy Perry’s performance delivered. She came in on a lion, danced with sharks and went out on a star—one that was, for some, reminiscent of NBC’s old “The More You Know” PSAs. The phrase "the more you know" spiked 190x in search for the 10 minutes after Katy’s starry flight. And although Missy Elliott was a late addition to the halftime lineup, she was a popular topic in search. Top questions related to Missy Elliott included “When was Missy Elliott popular?” and “How does Katy Perry know Missy Elliott?”<br /><br /><b>A very YouTube halftime show </b><br />For the first time ever, this year YouTube hosted a halftime show produced by Collective Digital Studio, with the help of more than 25 YouTube creators including <a href="https://www.youtube.com/user/EpicMealTime">Epic Meal Time</a>'s Harley Morenstein as host, <a href="https://www.youtube.com/user/RhettandLink">Rhett &amp; Link</a>, <a href="https://www.youtube.com/user/TobyTurner">Toby Turner</a>, <a href="https://www.youtube.com/user/freddiew">Freddie Wong</a> and <a href="https://www.youtube.com/user/TylerWardMusic">Tyler Ward</a>. From <a href="https://www.youtube.com/user/KurtHugoSchneider">Kurt Hugo Schneider</a>’s "Epic Patty Cake Song" to the “Elephant’s Toothpaste” science experiment with <a href="https://www.youtube.com/user/ScienceBob">Science Bob</a>, the show delivered a one-of-a-kind experience for YouTube fans. <br /><iframe allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/N0Z4Ilpsv_o" width="560"></iframe><br />With the last touchdown scored, we’re taking votes for your favorite ad, so visit our <a href="http://youtube.com/adblitz">AdBlitz channel</a> to cast your ballot before voting ends on February 9 at 11:59pm ET. <br /><br />Whether you’re a loyal 12th man or a Boston fan for life, chances are you turned to YouTube and Google to watch your favorite ads, answer your questions or witness a new generation of halftime entertainment. We’re happy we could be a part of your game. <br /><br /><span class="byline-author">Posted by Riki Nakasuji, Sports &amp; Gaming Sponsorships Manager, YouTube</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/shooting-stars-and-puppy-ads-how-the-world-watched-the-big-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube Creators interview President Obama following the State of the Union</title>
		<link>https://googledata.org/google-blog/youtube-creators-interview-president-obama-following-the-state-of-the-union/</link>
		<comments>https://googledata.org/google-blog/youtube-creators-interview-president-obama-following-the-state-of-the-union/#comments</comments>
		<pubDate>Thu, 15 Jan 2015 17:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Emily Wood]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=77be354965a291bf913457428b1dcca4</guid>
		<description><![CDATA[<a href="https://www.youtube.com/playlist?list=PLbpi6ZahtOH7GUje1XcidZbOPaOS7x9Ep">Every year since 2010</a>, President Obama has turned to YouTube and Google after his State of the Union speech to answer questions that are top of mind for the American people. Asked through YouTube video submissions or live via Google+ Hangouts, these questions always bring an interesting perspective to the issues the president addresses in his speech. This year we&#8217;re doing something we&#8217;ve never done before: bringing a handful of YouTube creators directly to the White House to talk with the president in person in a live broadcast on Thursday, January 22.<br /><br />YouTube creators <a href="http://youtube.com/BethanyMota">Bethany Mota</a>, <a href="http://www.youtube.com/user/glozell1">GloZell Green</a> and <a href="http://youtube.com/vlogbrothers">Hank Green</a> will interview President Obama about the top concerns facing them and their audiences. Over the next few days, the creators will ask you to share the questions you have for the president, some of which may be asked during the interview. In years past, people across the United States have used this interview to ask important questions about jobs, immigration and even <a href="https://www.youtube.com/watch?v=kp_zigxMS-Y&#38;#t=45m25s">Valentine&#8217;s Day</a>. Use #YouTubeAsksObama on social media to suggest issues that are important to you or any questions that are on your mind.<br /><div><br /></div>Finally, don&#8217;t forget to tune in on January 20 at 9 p.m. EST to watch the <a href="http://www.youtube.com/whitehouse">State of the Union address</a>, as well as the <a href="https://www.youtube.com/user/JohnBoehner">Republican response</a>, live on YouTube.<br /><br /><span>Posted by Steve Grove, Director, News Lab</span>]]></description>
				<content:encoded><![CDATA[<a href="https://www.youtube.com/playlist?list=PLbpi6ZahtOH7GUje1XcidZbOPaOS7x9Ep">Every year since 2010</a>, President Obama has turned to YouTube and Google after his State of the Union speech to answer questions that are top of mind for the American people. Asked through YouTube video submissions or live via Google+ Hangouts, these questions always bring an interesting perspective to the issues the president addresses in his speech. This year we’re doing something we’ve never done before: bringing a handful of YouTube creators directly to the White House to talk with the president in person in a live broadcast on Thursday, January 22.<br /><br />YouTube creators <a href="http://youtube.com/BethanyMota">Bethany Mota</a>, <a href="http://www.youtube.com/user/glozell1">GloZell Green</a> and <a href="http://youtube.com/vlogbrothers">Hank Green</a> will interview President Obama about the top concerns facing them and their audiences. Over the next few days, the creators will ask you to share the questions you have for the president, some of which may be asked during the interview. In years past, people across the United States have used this interview to ask important questions about jobs, immigration and even <a href="https://www.youtube.com/watch?v=kp_zigxMS-Y&amp;#t=45m25s">Valentine’s Day</a>. Use #YouTubeAsksObama on social media to suggest issues that are important to you or any questions that are on your mind.<br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/awU8M3qVgZQ" width="560"></iframe><br /></div>Finally, don’t forget to tune in on January 20 at 9 p.m. EST to watch the <a href="http://www.youtube.com/whitehouse">State of the Union address</a>, as well as the <a href="https://www.youtube.com/user/JohnBoehner">Republican response</a>, live on YouTube.<br /><br /><span class="byline-author">Posted by Steve Grove, Director, News Lab</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/youtube-creators-interview-president-obama-following-the-state-of-the-union/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>“The Interview” now available on Google Play and YouTube Movies</title>
		<link>https://googledata.org/google-blog/the-interview-now-available-on-google-play-and-youtube-movies/</link>
		<comments>https://googledata.org/google-blog/the-interview-now-available-on-google-play-and-youtube-movies/#comments</comments>
		<pubDate>Wed, 24 Dec 2014 17:10:00 +0000</pubDate>
		<dc:creator><![CDATA[Emily Wood]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=52b74d6bf3a053a3aaa7f2ad08327ec3</guid>
		<description><![CDATA[Last Wednesday Sony began contacting a number of companies, including Google, to ask if we&#8217;d be able to make their movie, "The Interview,"&#160;available online. We'd had a similar thought and were eager to help&#8212;though given everything that&#8217;s happened, the security implications were very much at the front of our minds.  <br /><br />Of course it was tempting to hope that something else would happen to ensure this movie saw the light of day. But after discussing all the issues, Sony and Google agreed that we could not sit on the sidelines and allow a handful of people to determine the limits of free speech in another country (however silly the content might be).  <br /><br />So starting at 10 a.m. PST in the U.S., you can rent or buy "The Interview" on <a href="http://play.google.com/">Google Play</a> and <a href="http://youtube.com/movies">YouTube Movies</a>. It will also be available to <a href="http://blogs.microsoft.com/blog/2014/12/24/the-interview-now-available-on-xbox-video/">Xbox Video customers</a> and via www.seetheinterview.com.<br /><br /><i><b>Update</b> 3:44p.m. PST</i>: "The Interview" is now also available in Canada.<br /><br /><span>Posted by David Drummond, SVP Corporate Development and Chief Legal Officer</span>]]></description>
				<content:encoded><![CDATA[Last Wednesday Sony began contacting a number of companies, including Google, to ask if we’d be able to make their movie, "The Interview,"&nbsp;available online. We'd had a similar thought and were eager to help—though given everything that’s happened, the security implications were very much at the front of our minds.  <br /><br />Of course it was tempting to hope that something else would happen to ensure this movie saw the light of day. But after discussing all the issues, Sony and Google agreed that we could not sit on the sidelines and allow a handful of people to determine the limits of free speech in another country (however silly the content might be).  <br /><br />So starting at 10 a.m. PST in the U.S., you can rent or buy "The Interview" on <a href="http://play.google.com/">Google Play</a> and <a href="http://youtube.com/movies">YouTube Movies</a>. It will also be available to <a href="http://blogs.microsoft.com/blog/2014/12/24/the-interview-now-available-on-xbox-video/">Xbox Video customers</a> and via www.seetheinterview.com.<br /><br /><i><b>Update</b> 3:44p.m. PST</i>: "The Interview" is now also available in Canada.<br /><br /><span class="byline-author">Posted by David Drummond, SVP Corporate Development and Chief Legal Officer</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/the-interview-now-available-on-google-play-and-youtube-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Video Analytics Page in AdWords for Video launches today, helping marketers make ads people choose to watch</title>
		<link>https://googledata.org/google-adwords/video-analytics-page-in-adwords-for-video-launches-today-helping-marketers-make-ads-people-choose-to-watch/</link>
		<comments>https://googledata.org/google-adwords/video-analytics-page-in-adwords-for-video-launches-today-helping-marketers-make-ads-people-choose-to-watch/#comments</comments>
		<pubDate>Thu, 11 Dec 2014 20:08:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=0e61accebeba297f7c73512f588c397f</guid>
		<description><![CDATA[<div dir="ltr">In AdWords for video, you add targeting and budgets to YouTube videos to make video ad campaigns. Until now, advertisers looking for info on how their videos performed outside of when they appeared as ads would need to jump over to YouTube Analytics for that data. Today we&#8217;re excited to announce a revamp of <b>Videos reporting</b> to offer more YouTube Analytics-style performance metrics right in AWV, bringing a greater focus on video creative to campaign management and optimization.<br /><div><a href="http://1.bp.blogspot.com/-Jdv0GE2iUJc/VIno729MiOI/AAAAAAAABOU/F68H4ofR7pc/s1600/yta.png"><img border="0" src="http://1.bp.blogspot.com/-Jdv0GE2iUJc/VIno729MiOI/AAAAAAAABOU/F68H4ofR7pc/s1600/yta.png"></a></div>As you can see in the above chart, the new Video Analytics page prominently features a <b>visualization of your video&#8217;s views</b>, split by paid and non-paid to give a holistic sense of how your video is doing. The page also brings the powerful <b>audience retention graph</b> to AWV (formerly only available in YouTube Analytics) &#8211; with this you can fine-tune your creative by visualizing when audience interest waxes and wanes. For example, are you seeing a steep viewer drop-off at a certain point? This alerts you to an opportunity to re-cut your video to hold their interest longer.<br /><div><a href="http://4.bp.blogspot.com/-9f0w3rRanaE/VInpdVLfV1I/AAAAAAAABOc/QEp4vDwMVv4/s1600/ytb.png"><img border="0" src="http://4.bp.blogspot.com/-9f0w3rRanaE/VInpdVLfV1I/AAAAAAAABOc/QEp4vDwMVv4/s1600/ytb.png" height="315" width="400"></a></div>This new reporting page also offers a panel that provides a sense of a video&#8217;s contribution to overall account performance, letting you see which videos are over or underperforming across all your campaigns, and more fully depicts how your video creative is helping to build your audience on YouTube.<br /><br />For more information please check out the Help Center article <a href="https://support.google.com/adwords/answer/6086441" target="_blank">here</a>. We hope this new feature provides more context for your video ad creative, and helps you make ads people choose to watch.<br /><br /><i>Posted by Avi Fein, Product Manager, AdWords for video</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">In AdWords for video, you add targeting and budgets to YouTube videos to make video ad campaigns. Until now, advertisers looking for info on how their videos performed outside of when they appeared as ads would need to jump over to YouTube Analytics for that data. Today we’re excited to announce a revamp of <b>Videos reporting</b> to offer more YouTube Analytics-style performance metrics right in AWV, bringing a greater focus on video creative to campaign management and optimization.<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-Jdv0GE2iUJc/VIno729MiOI/AAAAAAAABOU/F68H4ofR7pc/s1600/yta.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-Jdv0GE2iUJc/VIno729MiOI/AAAAAAAABOU/F68H4ofR7pc/s1600/yta.png" /></a></div>As you can see in the above chart, the new Video Analytics page prominently features a <b>visualization of your video’s views</b>, split by paid and non-paid to give a holistic sense of how your video is doing. The page also brings the powerful <b>audience retention graph</b> to AWV (formerly only available in YouTube Analytics) – with this you can fine-tune your creative by visualizing when audience interest waxes and wanes. For example, are you seeing a steep viewer drop-off at a certain point? This alerts you to an opportunity to re-cut your video to hold their interest longer.<br /><div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-9f0w3rRanaE/VInpdVLfV1I/AAAAAAAABOc/QEp4vDwMVv4/s1600/ytb.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://4.bp.blogspot.com/-9f0w3rRanaE/VInpdVLfV1I/AAAAAAAABOc/QEp4vDwMVv4/s1600/ytb.png" height="315" width="400" /></a></div>This new reporting page also offers a panel that provides a sense of a video’s contribution to overall account performance, letting you see which videos are over or underperforming across all your campaigns, and more fully depicts how your video creative is helping to build your audience on YouTube.<br /><br />For more information please check out the Help Center article <a href="https://support.google.com/adwords/answer/6086441" >here</a>. We hope this new feature provides more context for your video ad creative, and helps you make ads people choose to watch.<br /><br /><i>Posted by Avi Fein, Product Manager, AdWords for video</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/video-analytics-page-in-adwords-for-video-launches-today-helping-marketers-make-ads-people-choose-to-watch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>#YouTubeRewind 2014: Celebrating what you created, watched and shared</title>
		<link>https://googledata.org/google-blog/youtuberewind-2014-celebrating-what-you-created-watched-and-shared/</link>
		<comments>https://googledata.org/google-blog/youtuberewind-2014-celebrating-what-you-created-watched-and-shared/#comments</comments>
		<pubDate>Tue, 09 Dec 2014 18:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Emily Wood]]></dc:creator>
				<category><![CDATA[Google Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google culture]]></category>
		<category><![CDATA[google insights]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[google products]]></category>
		<category><![CDATA[google updates]]></category>
		<category><![CDATA[official google blog]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=e18847018891b4dc1d9fc44ff8d7b897</guid>
		<description><![CDATA[2014 was chock full of YouTube moments that vaulted into pop culture. We got pranked by a <a href="https://www.youtube.com/watch?v=YoB8t0B4jx4">spider dog</a> in Poland, learned what it&#8217;s like to walk the street for <a href="https://www.youtube.com/watch?v=b1XGPvbWn0A">10 hours as a woman</a> in NYC, and watched total strangers share a <a href="https://www.youtube.com/watch?v=IpbDHxCV29A">first kiss</a>. We <a href="https://www.youtube.com/watch?v=0MW9Nrg_kZU">laughed</a>, we <a href="https://www.youtube.com/watch?v=uQB7QRyF4p4">cried</a>, and yes, we sang along to &#8220;<a href="https://www.youtube.com/watch?v=L0MK7qz13bU">Let It Go</a>&#8221; roughly a bajillion times. <br /><br />In celebration of the people, memes and moments that made up an epic year, more than 100 YouTube creators gathered together for <a href="http://www.youtube.com/attribution_link?m=inp-bl-rew-rx0&#38;u=%2Fwatch%3Fv%3DzKx2B8WCQuw%26feature%3Dinp-bl-rew-rx0">our annual Rewind video</a>: a giant, global mashup looking back at the best of 2014 on YouTube. With creators from Japan, Germany, Israel, Mexico, France and beyond, it&#8217;s the biggest and most international Rewind video yet.<br /><div><br /></div>And here are the top trending videos for 2014, based on views, shares, comments, likes and more. This year, the list represents the amazing variety of creativity brought to YouTube each day, which can include social commentaries, pranks, advertisements, and thrilling moments from traditional media and big names on YouTube. Collectively these 10 videos have hundreds of millions of views from creators, with more than 21 million cumulative subscribers.<br /><br />1. <a href="https://www.youtube.com/watch?v=YoB8t0B4jx4">Mutant Giant Spider Dog (SA Wardega)</a> by <a href="https://www.youtube.com/channel/UCdZwMpK-iWqCos46xPscDeg">SA Wardega</a><br />2. <a href="https://www.youtube.com/watch?v=3XviR7esUvo">Nike Football: Winner Stays. ft. Ronaldo, Neymar Jr., Rooney, Ibrahimovi&#263;, Iniesta &#38; more</a> by <a href="https://www.youtube.com/user/NikeFootball">Nike Football</a><br />3. <a href="https://www.youtube.com/watch?v=IpbDHxCV29A">FIRST KISS</a> by <a href="https://www.youtube.com/channel/UCBkHxU4e4bT_q5UxhYfsGjQ">Tatia PIlieva</a><br />4. <a href="https://www.youtube.com/watch?v=TpaQYSd75Ak">The Voice IT &#124; Serie 2 &#124; Blind 2 &#124; Suor Cristina Scuccia - #TEAMJ-AX</a> by <a href="https://www.youtube.com/channel/UCD4MMwZBLay5d_ZoqNaxoww">TheVoiceOf Italy</a><br />5. <a href="https://www.youtube.com/watch?v=znK652H6yQM">iPhone 6 Plus Bend Test</a> by <a href="https://www.youtube.com/channel/UCsTcErHg8oDvUnTzoqsYeNw">Unbox Therapy</a><br />6. <a href="https://www.youtube.com/watch?v=g3Rf5qDuq7M">Bars &#38; Melody - Simon Cowell's Golden Buzzer act &#124; Britain's Got Talent 2014</a> by <a href="https://www.youtube.com/channel/UCUtZaxDF3hD5VK4xRYFBePQ">Britain's Got Talent</a><br />7. <a href="https://www.youtube.com/watch?v=uQB7QRyF4p4">Budweiser Super Bowl XLVIII Commercial -- "Puppy Love"</a> by <a href="https://www.youtube.com/channel/UCPCk_8dtVyR1lLHMBEILW4g">Budweiser</a><br />8. <a href="https://www.youtube.com/watch?v=PUKMUZ4tlJg">Devil Baby Attack</a> by <a href="https://www.youtube.com/channel/UCqCly8XKCuTR4r5IZMybDfg">DevilsDueNYC</a><br />9. <a href="https://www.youtube.com/watch?v=0MW9Nrg_kZU">Goku vs Superman. Epic Rap Battles of History Season 3.</a> by <a href="https://www.youtube.com/channel/UCMu5gPmKp5av0QCAajKTMhw">ERB</a><br />10. <a href="https://www.youtube.com/watch?v=b1XGPvbWn0A">10 Hours of Walking in NYC as a Woman</a> by <a href="https://www.youtube.com/channel/UCKJcGMO_UiqUQl8s7J9l7zw">Street HarassmentVideo</a><br /><br />When it comes to music, it was a year of powerful female artists, as you can see from our list of top music videos: Women artists took eight of the top 10 spots (Shakira took two!). 2014's top 10 music videos were collectively played billions of times from channels with 55+ million subscribers.<br /><br />1. <a href="https://www.youtube.com/watch?v=0KSOMA3QBU0">Katy Perry - Dark Horse (Official) ft. Juicy J</a><br />2. <a href="https://www.youtube.com/watch?v=NUsoVlDFqZg">Enrique Iglesias - Bailando (Espa&#241;ol) ft. Descemer Bueno, Gente De Zona </a><br />3. <a href="http://www.youtube.com/watch?v=o3mP3mJDL2k">Shakira - Can't Remember to Forget You ft. Rihanna</a><br />4. <a href="http://www.youtube.com/watch?v=7-7knsP2n5w">Shakira - La La La (Brazil 2014) ft. Carlinhos Brown</a><br />5. <a href="http://www.youtube.com/watch?v=hiP14ED28CA">Jason Derulo - "Wiggle" feat. Snoop Dogg (Official HD Music Video)</a><br />6. <a href="http://www.youtube.com/watch?v=O-zpOMYRi0w">Iggy Azalea - Fancy (Explicit) ft. Charli XCX</a><br />7. <a href="http://www.youtube.com/watch?v=2vjPBrBU-TM">Sia - Chandelier (Official Video)</a><br />8. <a href="http://www.youtube.com/watch?v=nfWlot6h_JM">Taylor Swift - Shake It Off</a><br />9. <a href="http://www.youtube.com/watch?v=7PCkvCPvDXk">Meghan Trainor - All About That Bass</a><br />10. <a href="http://www.youtube.com/watch?v=LDZX4ooRsWs">Nicki Minaj - Anaconda</a><br /><i>...and check out even more <a href="https://www.youtube.com/playlist?list=PLSTz8jpJdr5qrbVEburBasItcSBO43xPv">top music videos</a>.</i><br /><br />Check out our <a href="http://www.youtube.com/attribution_link?m=inp-bl-rew-rx0&#38;u=%2Fuser%2Ftheyearinreview%3Ffeature%3Dinp-bl-rew-rx0">YouTube Rewind channel</a> for more top videos of the year from around the world, and our YouTube Brand channel to see a mashup of the top branded videos of the year and a list of the top ads on YouTube for the year. You can also visit google.com/2014 next week for Google's annual look at the people, places and events that captured the world's attention.<br /><br /><span>Posted by Kevin Allocca, Head of Culture &#38; Trends</span>]]></description>
				<content:encoded><![CDATA[2014 was chock full of YouTube moments that vaulted into pop culture. We got pranked by a <a href="https://www.youtube.com/watch?v=YoB8t0B4jx4">spider dog</a> in Poland, learned what it’s like to walk the street for <a href="https://www.youtube.com/watch?v=b1XGPvbWn0A">10 hours as a woman</a> in NYC, and watched total strangers share a <a href="https://www.youtube.com/watch?v=IpbDHxCV29A">first kiss</a>. We <a href="https://www.youtube.com/watch?v=0MW9Nrg_kZU">laughed</a>, we <a href="https://www.youtube.com/watch?v=uQB7QRyF4p4">cried</a>, and yes, we sang along to “<a href="https://www.youtube.com/watch?v=L0MK7qz13bU">Let It Go</a>” roughly a bajillion times. <br /><br />In celebration of the people, memes and moments that made up an epic year, more than 100 YouTube creators gathered together for <a href="http://www.youtube.com/attribution_link?m=inp-bl-rew-rx0&amp;u=%2Fwatch%3Fv%3DzKx2B8WCQuw%26feature%3Dinp-bl-rew-rx0">our annual Rewind video</a>: a giant, global mashup looking back at the best of 2014 on YouTube. With creators from Japan, Germany, Israel, Mexico, France and beyond, it’s the biggest and most international Rewind video yet.<br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="360" src="http://www.youtube.com/embed/zKx2B8WCQuw?rel=0" width="480"></iframe><br /></div>And here are the top trending videos for 2014, based on views, shares, comments, likes and more. This year, the list represents the amazing variety of creativity brought to YouTube each day, which can include social commentaries, pranks, advertisements, and thrilling moments from traditional media and big names on YouTube. Collectively these 10 videos have hundreds of millions of views from creators, with more than 21 million cumulative subscribers.<br /><br />1. <a href="https://www.youtube.com/watch?v=YoB8t0B4jx4">Mutant Giant Spider Dog (SA Wardega)</a> by <a href="https://www.youtube.com/channel/UCdZwMpK-iWqCos46xPscDeg">SA Wardega</a><br />2. <a href="https://www.youtube.com/watch?v=3XviR7esUvo">Nike Football: Winner Stays. ft. Ronaldo, Neymar Jr., Rooney, Ibrahimović, Iniesta &amp; more</a> by <a href="https://www.youtube.com/user/NikeFootball">Nike Football</a><br />3. <a href="https://www.youtube.com/watch?v=IpbDHxCV29A">FIRST KISS</a> by <a href="https://www.youtube.com/channel/UCBkHxU4e4bT_q5UxhYfsGjQ">Tatia PIlieva</a><br />4. <a href="https://www.youtube.com/watch?v=TpaQYSd75Ak">The Voice IT | Serie 2 | Blind 2 | Suor Cristina Scuccia - #TEAMJ-AX</a> by <a href="https://www.youtube.com/channel/UCD4MMwZBLay5d_ZoqNaxoww">TheVoiceOf Italy</a><br />5. <a href="https://www.youtube.com/watch?v=znK652H6yQM">iPhone 6 Plus Bend Test</a> by <a href="https://www.youtube.com/channel/UCsTcErHg8oDvUnTzoqsYeNw">Unbox Therapy</a><br />6. <a href="https://www.youtube.com/watch?v=g3Rf5qDuq7M">Bars &amp; Melody - Simon Cowell's Golden Buzzer act | Britain's Got Talent 2014</a> by <a href="https://www.youtube.com/channel/UCUtZaxDF3hD5VK4xRYFBePQ">Britain's Got Talent</a><br />7. <a href="https://www.youtube.com/watch?v=uQB7QRyF4p4">Budweiser Super Bowl XLVIII Commercial -- "Puppy Love"</a> by <a href="https://www.youtube.com/channel/UCPCk_8dtVyR1lLHMBEILW4g">Budweiser</a><br />8. <a href="https://www.youtube.com/watch?v=PUKMUZ4tlJg">Devil Baby Attack</a> by <a href="https://www.youtube.com/channel/UCqCly8XKCuTR4r5IZMybDfg">DevilsDueNYC</a><br />9. <a href="https://www.youtube.com/watch?v=0MW9Nrg_kZU">Goku vs Superman. Epic Rap Battles of History Season 3.</a> by <a href="https://www.youtube.com/channel/UCMu5gPmKp5av0QCAajKTMhw">ERB</a><br />10. <a href="https://www.youtube.com/watch?v=b1XGPvbWn0A">10 Hours of Walking in NYC as a Woman</a> by <a href="https://www.youtube.com/channel/UCKJcGMO_UiqUQl8s7J9l7zw">Street HarassmentVideo</a><br /><br />When it comes to music, it was a year of powerful female artists, as you can see from our list of top music videos: Women artists took eight of the top 10 spots (Shakira took two!). 2014's top 10 music videos were collectively played billions of times from channels with 55+ million subscribers.<br /><br />1. <a href="https://www.youtube.com/watch?v=0KSOMA3QBU0">Katy Perry - Dark Horse (Official) ft. Juicy J</a><br />2. <a href="https://www.youtube.com/watch?v=NUsoVlDFqZg">Enrique Iglesias - Bailando (Español) ft. Descemer Bueno, Gente De Zona </a><br />3. <a href="http://www.youtube.com/watch?v=o3mP3mJDL2k">Shakira - Can't Remember to Forget You ft. Rihanna</a><br />4. <a href="http://www.youtube.com/watch?v=7-7knsP2n5w">Shakira - La La La (Brazil 2014) ft. Carlinhos Brown</a><br />5. <a href="http://www.youtube.com/watch?v=hiP14ED28CA">Jason Derulo - "Wiggle" feat. Snoop Dogg (Official HD Music Video)</a><br />6. <a href="http://www.youtube.com/watch?v=O-zpOMYRi0w">Iggy Azalea - Fancy (Explicit) ft. Charli XCX</a><br />7. <a href="http://www.youtube.com/watch?v=2vjPBrBU-TM">Sia - Chandelier (Official Video)</a><br />8. <a href="http://www.youtube.com/watch?v=nfWlot6h_JM">Taylor Swift - Shake It Off</a><br />9. <a href="http://www.youtube.com/watch?v=7PCkvCPvDXk">Meghan Trainor - All About That Bass</a><br />10. <a href="http://www.youtube.com/watch?v=LDZX4ooRsWs">Nicki Minaj - Anaconda</a><br /><i>...and check out even more <a href="https://www.youtube.com/playlist?list=PLSTz8jpJdr5qrbVEburBasItcSBO43xPv">top music videos</a>.</i><br /><br />Check out our <a href="http://www.youtube.com/attribution_link?m=inp-bl-rew-rx0&amp;u=%2Fuser%2Ftheyearinreview%3Ffeature%3Dinp-bl-rew-rx0">YouTube Rewind channel</a> for more top videos of the year from around the world, and our YouTube Brand channel to see a mashup of the top branded videos of the year and a list of the top ads on YouTube for the year. You can also visit google.com/2014 next week for Google's annual look at the people, places and events that captured the world's attention.<br /><br /><span class="byline-author">Posted by Kevin Allocca, Head of Culture &amp; Trends</span>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-blog/youtuberewind-2014-celebrating-what-you-created-watched-and-shared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Launching YouTube for Government</title>
		<link>https://googledata.org/youtube/launching-youtube-for-government/</link>
		<comments>https://googledata.org/youtube/launching-youtube-for-government/#comments</comments>
		<pubDate>Thu, 02 Oct 2014 14:06:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Public Policy Blog]]></dc:creator>
				<category><![CDATA[Google Public Policy]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google policy]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=98a70654d97a508f3e018004aa52fd13</guid>
		<description><![CDATA[<div dir="ltr"><span><i><span>Cross-posted from the <a href="https://googlepolitics.blogspot.com/b/post-preview?token=0PLi0kgBAAA.Ma9S7S_wmmlkzy_XrZcbig.LPs5cLoVt-K-9VVrEoMkwA&#38;postId=8106479408597665278&#38;type=POST#!/2014/10/launching-youtube-for-government.html">Google Politics &#38; Elections Blog </a></span></i></span></div><div dir="ltr"><span><i><span><br /></span></i></span></div><div dir="ltr"><span><span>Posted by Brandon Feldman, YouTube News &#38; Politics</span></span></div><b><span><br /></span></b><br /><div dir="ltr"><span><span>From live streams of the </span><a href="https://www.youtube.com/watch?v=arhBRouSmWs"><span>State of the Union</span></a><span> and </span><a href="http://www.youtube.com/watch?v=6PqwQktSEFQ"><span>legislative hearings</span></a><span>, to </span><a href="https://www.youtube.com/watch?v=58ivO5ioq3M&#38;"><span>explainer videos</span></a><span> on important issues and </span><a href="http://www.youtube.com/watch?v=q-DtmzmFbro"><span>Hangouts</span></a><span> with constituents, YouTube has become an important platform where citizens engage with their governments and elected officials.</span></span></div><b><span><br /></span></b><br /><div dir="ltr"><span><span>In order to help government officials get a better idea of what YouTube can do, we are launching <a href="http://youtube.com/government101">youtube.com/government101</a>, a one-stop shop where government officials can learn how to get the most out of YouTube as a communication tool.</span></span></div><b><span><br /></span></b><br /><div><b><span><a href="http://youtube.com/government101"><img height="404px;" src="https://lh3.googleusercontent.com/JZzuMcShDNxbnNb4MP88Wz7sUX3Tk_FXZfHwFTwGLabeJMpCGT-Wo0ll5V6nHSpzZf0NisyTcuwlFQKrmW0u25YV_hqOTJb_3gK4n3hYViUFY_uKeB6ZAdmZNXbFKXlnuA" width="346px;"></a></span></b></div><b><span><br /></span></b><div dir="ltr"><span><span>The site offers a broad range of YouTube advice, from the basics of creating a channel to in-depth guidance on features like live streaming, annotations, playlists and more. We&#8217;ve also featured case studies from government offices around the world that are using YouTube in innovative ways. </span></span></div><span><br /></span><br /><div dir="ltr"><span><span>If you're a government official, whether you are looking for an answer to a quick question or need a full training on YouTube best practices, we hope this resource will help you engage in a rich dialogue with your constituents and increase transparency within your community. </span></span></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="line-height: 1.15; white-space: pre-wrap;"><i><span style="font-family: Arial, Helvetica, sans-serif;">Cross-posted from the <a href="https://googlepolitics.blogspot.com/b/post-preview?token=0PLi0kgBAAA.Ma9S7S_wmmlkzy_XrZcbig.LPs5cLoVt-K-9VVrEoMkwA&amp;postId=8106479408597665278&amp;type=POST#!/2014/10/launching-youtube-for-government.html">Google Politics &amp; Elections Blog </a></span></i></span></div><div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="line-height: 1.15; white-space: pre-wrap;"><i><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span></i></span></div><div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="line-height: 1.15; white-space: pre-wrap;"><span style="font-family: Arial, Helvetica, sans-serif;">Posted by Brandon Feldman, YouTube News &amp; Politics</span></span></div><b id="docs-internal-guid-908dbe8d-d12c-f4d1-6349-c4d35834a1ac" style="font-weight: normal;"><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span></b><br /><div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="font-family: Arial, Helvetica, sans-serif;"><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">From live streams of the </span><a href="https://www.youtube.com/watch?v=arhBRouSmWs" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">State of the Union</span></a><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> and </span><a href="http://www.youtube.com/watch?v=6PqwQktSEFQ" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">legislative hearings</span></a><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;">, to </span><a href="https://www.youtube.com/watch?v=58ivO5ioq3M&amp;" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">explainer videos</span></a><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> on important issues and </span><a href="http://www.youtube.com/watch?v=q-DtmzmFbro" style="text-decoration: none;"><span style="background-color: transparent; color: #1155cc; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;">Hangouts</span></a><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> with constituents, YouTube has become an important platform where citizens engage with their governments and elected officials.</span></span></div><b style="font-weight: normal;"><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span></b><br /><div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: Arial, Helvetica, sans-serif;">In order to help government officials get a better idea of what YouTube can do, we are launching <a href="http://youtube.com/government101">youtube.com/government101</a>, a one-stop shop where government officials can learn how to get the most out of YouTube as a communication tool.</span></span></div><b style="font-weight: normal;"><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span></b><br /><div style="text-align: center;"><b style="font-weight: normal;"><span style="font-family: Arial, Helvetica, sans-serif;"><a href="http://youtube.com/government101"><img height="404px;" src="https://lh3.googleusercontent.com/JZzuMcShDNxbnNb4MP88Wz7sUX3Tk_FXZfHwFTwGLabeJMpCGT-Wo0ll5V6nHSpzZf0NisyTcuwlFQKrmW0u25YV_hqOTJb_3gK4n3hYViUFY_uKeB6ZAdmZNXbFKXlnuA" style="-webkit-transform: rotate(0rad); border: none;" width="346px;" /></a></span></b></div><b style="font-weight: normal;"><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span></b><div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: Arial, Helvetica, sans-serif;">The site offers a broad range of YouTube advice, from the basics of creating a channel to in-depth guidance on features like live streaming, annotations, playlists and more. We’ve also featured case studies from government offices around the world that are using YouTube in innovative ways. </span></span></div><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span><br /><div dir="ltr" style="line-height: 1.15; margin-bottom: 0pt; margin-top: 0pt;"><span style="background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"><span style="font-family: Arial, Helvetica, sans-serif;">If you're a government official, whether you are looking for an answer to a quick question or need a full training on YouTube best practices, we hope this resource will help you engage in a rich dialogue with your constituents and increase transparency within your community. </span></span></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/launching-youtube-for-government/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Using Google Search and YouTube to Promote Your App</title>
		<link>https://googledata.org/google-adwords/using-google-search-and-youtube-to-promote-your-app/</link>
		<comments>https://googledata.org/google-adwords/using-google-search-and-youtube-to-promote-your-app/#comments</comments>
		<pubDate>Wed, 20 Aug 2014 15:58:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=ae4306990bef37aa4c3e3a1ab50f7726</guid>
		<description><![CDATA[<div dir="ltr"><div dir="ltr">Earlier this year, we <a href="http://adwords.blogspot.com/2014/04/sharing-latest-adwords-innovations.html">announced</a> our next generation of app promotion ads across Google Search, the Google Display Network and YouTube. The features on the <a href="http://adwords.blogspot.com/2014/06/drive-more-app-installs-and-engagement.html">Display Network</a> launched in June as part of Google I/O. Today, I&#8217;m excited to announce the global availability of the search ads and YouTube offerings.<br /><div><br /></div><div><b>Google Search for App Install and Re-Engagement</b></div><div>There are over 100 billion searches per month on Google.com. People search here for places to visit, movies to watch or music to listen to. Sometimes this content lives on a website, sometimes it&#8217;s in an app. Now with just 3 easy steps, you can get your app into an ad by using a new, simplified campaign set-up flow that promotes your app on Google.com. Search ads created with this new flow are only shown to people who don&#8217;t already have your app -- so every click is from a potential new user, saving you time and money.&#160;</div><div><br /></div><div>Retale, an app for finding great deals in your city, is already seeing strong performance. Christoph Hoyer, Retale&#8217;s head of mobile marketing shared that &#8220;<i>The results have exceeded our expectations, Google search ads provide high-volume quality traffic for Retale&#8217;s app with a cost per install around $2.</i>&#8221;</div><div><br /></div><div>Click <a href="https://adwords.google.com/cm/CampaignMgmt#n.CAMPAIGNSETTINGS_SEARCH-ONLY_MOBILE-APP-INSTALL">here</a> to get started.<br /><br /></div><div><a href="http://3.bp.blogspot.com/-1lCrB0GjReA/U_OQR35eMqI/AAAAAAAAA-M/YxsCQga30_4/s1600/Untitled%2Bdrawing%2B(53).png"><img border="0" src="http://3.bp.blogspot.com/-1lCrB0GjReA/U_OQR35eMqI/AAAAAAAAA-M/YxsCQga30_4/s1600/Untitled%2Bdrawing%2B(53).png"></a></div><div><blockquote>How do you select the best keywords so your ad shows to consumers most likely to download your app? Use the keyword suggestion tool for app ads on search. This tool suggests keywords to include in your campaign based on top queries used for finding your app on Google Play and Google Search. FarFaria, a leading children&#8217;s e-book app, expanded their Google search ads keyword lists by using this tool and was able to unlock 30% more app downloads while maintaining a click through rate of 3% and a cost per install that was 50% below other mobile networks.&#160;</blockquote></div><div><br />Once you have a large base of users who&#8217;ve installed your app, how do you keep them engaged? Since 80% of downloaded apps are downloaded and used only once,<sup>1</sup> it&#8217;s more important than ever to help users remember your app when searching for relevant content that you can provide. Starting today, you can <a href="https://support.google.com/adwords/answer/6046233#search">deep link</a> users directly from Google Search into specific pages of apps they&#8217;ve already installed by signing up for the beta <a href="https://support.google.com/adwords/contact/io_beta_sign">here</a>. Customers like LINE, Zoopla and Booking.com are already testing deep-linking with their apps. Here&#8217;s how it works: let&#8217;s say someone has the Booking.com app installed on their phone and searches for &#8220;San Francisco Hotels&#8221; on Google.com; now they can go directly to the specific page in the Booking.com app that shows listings for hotels in San Francisco.</div><div><div></div><div><a href="http://1.bp.blogspot.com/-9f8bwzT9hOo/U_THfpLuE4I/AAAAAAAAA-0/cfa1lEoRUw4/s1600/Untitled%2Bdrawing%2B(58).png"><img border="0" src="http://1.bp.blogspot.com/-9f8bwzT9hOo/U_THfpLuE4I/AAAAAAAAA-0/cfa1lEoRUw4/s1600/Untitled%2Bdrawing%2B(58).png"></a></div><b>YouTube for App Promotion</b></div><div>The power of sight, sound and motion makes YouTube users more than 2X more likely to download apps.<sup>2</sup> Starting today, you can showcase your app when people are watching their favorite videos using a new enhancement to TrueView ads. &#160;With TrueView, advertisers can reach potential customers based on their interests, previously-watched videos and demographics. Deepak Gupta, chief revenue officer at MachineZone, a leading mobile game developer, noted that by "<i>Using YouTube we didn't just find more customers, we found more of the &#8216;right&#8217; customers. We know video platforms in general deliver valuable users, but we found that users who download our app from YouTube are 15% more valuable than those from any other video platform</i>."</div><div><br /></div><div>Start promoting your app on YouTube by simply linking your app&#8217;s ID to your TrueView campaigns. <a href="https://support.google.com/adwords/answer/6032059#youtube">Learn more</a></div><div><br /></div><div><b>Better Measurement = Better Campaigns</b></div><div>To attract the right customers and keep them engaged, it's important to have robust insights into how people interact with your app and tools to fine-tune your bids for app ads. Check out these 3 new search ads offerings that help you do just that:</div><div><ul><li><b>Measure app download conversions</b>: App installs show up as conversions automatically in AdWords without any additional setup, for Android apps on Google Play. &#160;<a href="https://support.google.com/adwords/answer/6032059#set">Learn more</a></li><li><b>Integrate your analytics data</b>: If you&#8217;re using third party tracking systems, import information about your apps, directly into AdWords. <a href="https://support.google.com/adwords/answer/2549053#3p">Learn more</a></li><li><b>Automate your bids</b>: Use Target CPA when creating your app campaign to automatically find the optimal bid for your ad each time its eligible for an auction, without waiting for conversion history to accumulate. This lets you immediately maximize the total number of installs at your target CPA. &#160;<a href="https://support.google.com/adwords/answer/2549053#conversion">Learn more</a></li></ul></div><div>Over the coming weeks we&#8217;ll dive into these new features with tips and best practices on the Inside AdWords blog and on our <a href="https://plus.google.com/+GoogleAds">Google+ page</a>. We also invite you to <a href="http://goo.gl/j7kyG8">register</a> for our &#8220;Promoting Your App on Search&#8221; Google Hangout On Air on 9/18.&#160;</div><div><br /></div><div><i>Posted by Jerry Dischler, VP of Product Management, AdWords</i></div><hr width="80%"><sup>1</sup>Source: <a href="http://www.digitaltrends.com/mobile/16-percent-of-mobile-userstry-out-a-buggy-app-more-than-twice/#!EvdoI">Digital Trends</a>, 2013<br /><div><sup>2</sup>Source: YouTube Global Audience Study, IPSOS 2013&#160;</div></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><div dir="ltr" style="text-align: left;" trbidi="on">Earlier this year, we <a href="http://adwords.blogspot.com/2014/04/sharing-latest-adwords-innovations.html">announced</a> our next generation of app promotion ads across Google Search, the Google Display Network and YouTube. The features on the <a href="http://adwords.blogspot.com/2014/06/drive-more-app-installs-and-engagement.html">Display Network</a> launched in June as part of Google I/O. Today, I’m excited to announce the global availability of the search ads and YouTube offerings.<br /><div><br /></div><div><b>Google Search for App Install and Re-Engagement</b></div><div>There are over 100 billion searches per month on Google.com. People search here for places to visit, movies to watch or music to listen to. Sometimes this content lives on a website, sometimes it’s in an app. Now with just 3 easy steps, you can get your app into an ad by using a new, simplified campaign set-up flow that promotes your app on Google.com. Search ads created with this new flow are only shown to people who don’t already have your app -- so every click is from a potential new user, saving you time and money.&nbsp;</div><div><br /></div><div>Retale, an app for finding great deals in your city, is already seeing strong performance. Christoph Hoyer, Retale’s head of mobile marketing shared that “<i>The results have exceeded our expectations, Google search ads provide high-volume quality traffic for Retale’s app with a cost per install around $2.</i>”</div><div><br /></div><div>Click <a href="https://adwords.google.com/cm/CampaignMgmt#n.CAMPAIGNSETTINGS_SEARCH-ONLY_MOBILE-APP-INSTALL">here</a> to get started.<br /><br /></div><div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-1lCrB0GjReA/U_OQR35eMqI/AAAAAAAAA-M/YxsCQga30_4/s1600/Untitled%2Bdrawing%2B(53).png" imageanchor="1" style="clear: left; float: left; margin-bottom: 0em; margin-right: 0em;"><img border="0" src="http://3.bp.blogspot.com/-1lCrB0GjReA/U_OQR35eMqI/AAAAAAAAA-M/YxsCQga30_4/s1600/Untitled%2Bdrawing%2B(53).png" /></a></div><div><blockquote class="tr_bq">How do you select the best keywords so your ad shows to consumers most likely to download your app? Use the keyword suggestion tool for app ads on search. This tool suggests keywords to include in your campaign based on top queries used for finding your app on Google Play and Google Search. FarFaria, a leading children’s e-book app, expanded their Google search ads keyword lists by using this tool and was able to unlock 30% more app downloads while maintaining a click through rate of 3% and a cost per install that was 50% below other mobile networks.&nbsp;</blockquote></div><div><br />Once you have a large base of users who’ve installed your app, how do you keep them engaged? Since 80% of downloaded apps are downloaded and used only once,<sup>1</sup> it’s more important than ever to help users remember your app when searching for relevant content that you can provide. Starting today, you can <a href="https://support.google.com/adwords/answer/6046233#search">deep link</a> users directly from Google Search into specific pages of apps they’ve already installed by signing up for the beta <a href="https://support.google.com/adwords/contact/io_beta_sign">here</a>. Customers like LINE, Zoopla and Booking.com are already testing deep-linking with their apps. Here’s how it works: let’s say someone has the Booking.com app installed on their phone and searches for “San Francisco Hotels” on Google.com; now they can go directly to the specific page in the Booking.com app that shows listings for hotels in San Francisco.</div><div><div class="separator" style="clear: both; text-align: center;"></div><div class="separator" style="clear: both; text-align: center;"><a href="http://1.bp.blogspot.com/-9f8bwzT9hOo/U_THfpLuE4I/AAAAAAAAA-0/cfa1lEoRUw4/s1600/Untitled%2Bdrawing%2B(58).png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://1.bp.blogspot.com/-9f8bwzT9hOo/U_THfpLuE4I/AAAAAAAAA-0/cfa1lEoRUw4/s1600/Untitled%2Bdrawing%2B(58).png" /></a></div><b>YouTube for App Promotion</b></div><div>The power of sight, sound and motion makes YouTube users more than 2X more likely to download apps.<sup>2</sup> Starting today, you can showcase your app when people are watching their favorite videos using a new enhancement to TrueView ads. &nbsp;With TrueView, advertisers can reach potential customers based on their interests, previously-watched videos and demographics. Deepak Gupta, chief revenue officer at MachineZone, a leading mobile game developer, noted that by "<i>Using YouTube we didn't just find more customers, we found more of the ‘right’ customers. We know video platforms in general deliver valuable users, but we found that users who download our app from YouTube are 15% more valuable than those from any other video platform</i>."</div><div><br /></div><div>Start promoting your app on YouTube by simply linking your app’s ID to your TrueView campaigns. <a href="https://support.google.com/adwords/answer/6032059#youtube">Learn more</a></div><div><br /></div><div><b>Better Measurement = Better Campaigns</b></div><div>To attract the right customers and keep them engaged, it's important to have robust insights into how people interact with your app and tools to fine-tune your bids for app ads. Check out these 3 new search ads offerings that help you do just that:</div><div><ul style="text-align: left;"><li><b>Measure app download conversions</b>: App installs show up as conversions automatically in AdWords without any additional setup, for Android apps on Google Play. &nbsp;<a href="https://support.google.com/adwords/answer/6032059#set">Learn more</a></li><li><b>Integrate your analytics data</b>: If you’re using third party tracking systems, import information about your apps, directly into AdWords. <a href="https://support.google.com/adwords/answer/2549053#3p">Learn more</a></li><li><b>Automate your bids</b>: Use Target CPA when creating your app campaign to automatically find the optimal bid for your ad each time its eligible for an auction, without waiting for conversion history to accumulate. This lets you immediately maximize the total number of installs at your target CPA. &nbsp;<a href="https://support.google.com/adwords/answer/2549053#conversion">Learn more</a></li></ul></div><div>Over the coming weeks we’ll dive into these new features with tips and best practices on the Inside AdWords blog and on our <a href="https://plus.google.com/+GoogleAds">Google+ page</a>. We also invite you to <a href="http://goo.gl/j7kyG8">register</a> for our “Promoting Your App on Search” Google Hangout On Air on 9/18.&nbsp;</div><div><br /></div><div><i>Posted by Jerry Dischler, VP of Product Management, AdWords</i></div><hr width="80%" /><sup>1</sup>Source: <a href="http://www.digitaltrends.com/mobile/16-percent-of-mobile-userstry-out-a-buggy-app-more-than-twice/#!EvdoI">Digital Trends</a>, 2013<br /><div><sup>2</sup>Source: YouTube Global Audience Study, IPSOS 2013&nbsp;</div></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/using-google-search-and-youtube-to-promote-your-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Unlocking the Brand Opportunity</title>
		<link>https://googledata.org/youtube/unlocking-the-brand-opportunity/</link>
		<comments>https://googledata.org/youtube/unlocking-the-brand-opportunity/#comments</comments>
		<pubDate>Wed, 04 Jun 2014 16:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Anish Kattukaran]]></dc:creator>
				<category><![CDATA[Google DoubleClick]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[doubleclick]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=9b48f03ca36498e56a1d3bd58a763bd0</guid>
		<description><![CDATA[<div>Video is how brands <a href="http://www.thinkwithgoogle.com/ads-leaderboards/youtube-leaderboard-apr-14.html"><span>tell stories</span></a>, how they surprise us, make us laugh or make us cry. No other medium brings together sight, sound and motion, and now with digital, interaction. As I&#8217;ve said <a href="http://adwords.blogspot.com/2013/03/the-brand-revolution-is-underway.html"><span>for</span></a> <a href="http://doubleclickadvertisers.blogspot.com/2014/02/investing-in-better-measurement-for.html"><span>a</span></a> <a href="http://adwords.blogspot.com/2014/05/breaking-down-1-barrier-to-brand.html"><span>while</span></a>, our goal is to make digital work for brands. To do that, we have to make online video work for brands and their publisher partners, a topic I&#8217;ll be addressing this morning at our annual DoubleClick customer event.&#160;</div><div><br /></div> <br /><div><b><br /></b><b>Introducing Google Partner Select, A Programmatic Premium Video Marketplace</b></div><div><br /></div><div>Publishers are investing like never before in compelling, high quality video experiences. Brand marketers are eager to buy against this content -- in fact eMarketer projects video ad spending to grow from $4 billion last year to nearly $6 billion in 2014. One big hurdle to growth remains, though: much of this content is hard to access.&#160;</div><div><br /></div><div>Our brands and agencies want to buy this premium content programmatically, but have difficulty finding the high quality inventory they want. Our publisher partners also want to take advantage of the ease and efficiency of programmatic to connect with top brands, but with transparency and control over how that happens. In order to grow the marketplace for everyone, we need to invest in the systems that will make it easier for brands and premium publishers to transact at scale.&#160;</div><div><br /></div><div>As a step towards that goal, today we are introducing Google Partner Select, bringing together the best of brand with the best of programmatic. This new premium programmatic marketplace will connect a select set of publishers investing in top-quality video with the brands that want to buy against it.&#160;</div><div><br /></div><div>What we&#8217;re most pleased about is the reaction to Partner Select that we&#8217;re getting from clients:</div><div><br /></div><div>&#8220;As a longtime Google partner, we are excited about what this marketplace has to offer. Video is the fuel for effective brand marketing and having more top quality video content available programmatically is going to open up all sorts of new possibilities for brand clients,&#8221; said Josh Jacobs, Global CEO, Accuen &#38; President, Platforms and Partnerships, Omnicom Media Group. &#8220;That&#8217;s what Google is looking to accomplish with this marketplace and we look forward to working with them as it evolves.&#8221;</div><div><br /></div><div>&#8220;Video has become central to our strategy, and being able to sell premium video programmatically to top brand partners is a requirement in this dynamic marketplace,&#8221; said J.R. McCabe SVP, Video, Time Inc. &#8220;We are looking forward to working with Google to enable this technology and to develop this premium marketplace.&#8221;<i>&#160;</i></div><div><br /></div><div>Partner Select helping marketers and publishers also requires having the right buying technologies in place. Along with Google Partner Select, we&#8217;re introducing a way for marketers and publishers to execute direct, reservation-based sales through the DoubleClick platform. This new option is meant to help streamline what today can be a cumbersome process, involving days of back-and-forth negotiations, dozens of phone calls and sometimes, yes, a fax machine. We hope brands and publishers will be able to spend less time on logistics and more time building partnerships and winning creative and content.</div><div><br /></div><div>I&#8217;m inspired every day by the rich experiences that brands and publishers are creating. Together with our partners, we can make digital a medium where brands, agencies and publishers can flourish.&#160;</div><div><br /></div><div>To hear more of our thoughts on this, join us for our livestream <a href="http://goo.gl/OlWKB2"><span>here</span></a>.&#160;</div><div><br /></div><div>-- Posted by, Neal Mohan, Vice President of Display and Video Advertising Products, Google</div>]]></description>
				<content:encoded><![CDATA[<div class="p1">Video is how brands <a href="http://www.thinkwithgoogle.com/ads-leaderboards/youtube-leaderboard-apr-14.html"><span class="s1">tell stories</span></a>, how they surprise us, make us laugh or make us cry. No other medium brings together sight, sound and motion, and now with digital, interaction. As I’ve said <a href="http://adwords.blogspot.com/2013/03/the-brand-revolution-is-underway.html"><span class="s1">for</span></a> <a href="http://doubleclickadvertisers.blogspot.com/2014/02/investing-in-better-measurement-for.html"><span class="s1">a</span></a> <a href="http://adwords.blogspot.com/2014/05/breaking-down-1-barrier-to-brand.html"><span class="s1">while</span></a>, our goal is to make digital work for brands. To do that, we have to make online video work for brands and their publisher partners, a topic I’ll be addressing this morning at our annual DoubleClick customer event.&nbsp;</div><div class="p3"><br /></div><iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/oZXZB3iwo3Y" width="560"></iframe> <br /><div class="p1"><b><br /></b><b>Introducing Google Partner Select, A Programmatic Premium Video Marketplace</b></div><div class="p2"><br /></div><div class="p1">Publishers are investing like never before in compelling, high quality video experiences. Brand marketers are eager to buy against this content -- in fact eMarketer projects video ad spending to grow from $4 billion last year to nearly $6 billion in 2014. One big hurdle to growth remains, though: much of this content is hard to access.&nbsp;</div><div class="p2"><br /></div><div class="p1">Our brands and agencies want to buy this premium content programmatically, but have difficulty finding the high quality inventory they want. Our publisher partners also want to take advantage of the ease and efficiency of programmatic to connect with top brands, but with transparency and control over how that happens. In order to grow the marketplace for everyone, we need to invest in the systems that will make it easier for brands and premium publishers to transact at scale.&nbsp;</div><div class="p2"><br /></div><div class="p1">As a step towards that goal, today we are introducing Google Partner Select, bringing together the best of brand with the best of programmatic. This new premium programmatic marketplace will connect a select set of publishers investing in top-quality video with the brands that want to buy against it.&nbsp;</div><div class="p2"><br /></div><div class="p1">What we’re most pleased about is the reaction to Partner Select that we’re getting from clients:</div><div class="p2"><br /></div><div class="p1">“As a longtime Google partner, we are excited about what this marketplace has to offer. Video is the fuel for effective brand marketing and having more top quality video content available programmatically is going to open up all sorts of new possibilities for brand clients,” said Josh Jacobs, Global CEO, Accuen &amp; President, Platforms and Partnerships, Omnicom Media Group. “That’s what Google is looking to accomplish with this marketplace and we look forward to working with them as it evolves.”</div><div class="p2"><br /></div><div class="p1">“Video has become central to our strategy, and being able to sell premium video programmatically to top brand partners is a requirement in this dynamic marketplace,” said J.R. McCabe SVP, Video, Time Inc. “We are looking forward to working with Google to enable this technology and to develop this premium marketplace.”<i>&nbsp;</i></div><div class="p2"><br /></div><div class="p1">Partner Select helping marketers and publishers also requires having the right buying technologies in place. Along with Google Partner Select, we’re introducing a way for marketers and publishers to execute direct, reservation-based sales through the DoubleClick platform. This new option is meant to help streamline what today can be a cumbersome process, involving days of back-and-forth negotiations, dozens of phone calls and sometimes, yes, a fax machine. We hope brands and publishers will be able to spend less time on logistics and more time building partnerships and winning creative and content.</div><div class="p2"><br /></div><div class="p1">I’m inspired every day by the rich experiences that brands and publishers are creating. Together with our partners, we can make digital a medium where brands, agencies and publishers can flourish.&nbsp;</div><div class="p2"><br /></div><div class="p1">To hear more of our thoughts on this, join us for our livestream <a href="http://goo.gl/OlWKB2"><span class="s1">here</span></a>.&nbsp;</div><div class="p2"><br /></div><div class="p1">-- Posted by, Neal Mohan, Vice President of Display and Video Advertising Products, Google</div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/unlocking-the-brand-opportunity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Unlocking the Brand Opportunity</title>
		<link>https://googledata.org/youtube/unlocking-the-brand-opportunity-2/</link>
		<comments>https://googledata.org/youtube/unlocking-the-brand-opportunity-2/#comments</comments>
		<pubDate>Wed, 04 Jun 2014 16:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Anish Kattukaran]]></dc:creator>
				<category><![CDATA[Google DoubleClick]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[doubleclick]]></category>
		<category><![CDATA[publishers]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=6c1677a28804a0657e83b7b568bb5928</guid>
		<description><![CDATA[<div>Video is how brands <a href="http://www.thinkwithgoogle.com/ads-leaderboards/youtube-leaderboard-apr-14.html"><span>tell stories</span></a>, how they surprise us, make us laugh or make us cry. No other medium brings together sight, sound and motion, and now with digital, interaction. As I&#8217;ve said <a href="http://adwords.blogspot.com/2013/03/the-brand-revolution-is-underway.html"><span>for</span></a> <a href="http://doubleclickadvertisers.blogspot.com/2014/02/investing-in-better-measurement-for.html"><span>a</span></a> <a href="http://adwords.blogspot.com/2014/05/breaking-down-1-barrier-to-brand.html"><span>while</span></a>, our goal is to make digital work for brands. To do that, we have to make online video work for brands and their publisher partners, a topic I&#8217;ll be addressing this morning at our annual DoubleClick customer event.&#160;</div><div><br /></div> <br /><div><b><br /></b><b>Introducing Google Partner Select, A Programmatic Premium Video Marketplace</b></div><div><br /></div><div>Publishers are investing like never before in compelling, high quality video experiences. Brand marketers are eager to buy against this content -- in fact eMarketer projects video ad spending to grow from $4 billion last year to nearly $6 billion in 2014. One big hurdle to growth remains, though: much of this content is hard to access.&#160;</div><div><br /></div><div>Our brands and agencies want to buy this premium content programmatically, but have difficulty finding the high quality inventory they want. Our publisher partners also want to take advantage of the ease and efficiency of programmatic to connect with top brands, but with transparency and control over how that happens. In order to grow the marketplace for everyone, we need to invest in the systems that will make it easier for brands and premium publishers to transact at scale.&#160;</div><div><br /></div><div>As a step towards that goal, today we are introducing Google Partner Select, bringing together the best of brand with the best of programmatic. This new premium programmatic marketplace will connect a select set of publishers investing in top-quality video with the brands that want to buy against it.&#160;</div><div><br /></div><div>What we&#8217;re most pleased about is the reaction to Partner Select that we&#8217;re getting from clients:</div><div><br /></div><div>&#8220;As a longtime Google partner, we are excited about what this marketplace has to offer. Video is the fuel for effective brand marketing and having more top quality video content available programmatically is going to open up all sorts of new possibilities for brand clients,&#8221; said Josh Jacobs, Global CEO, Accuen &#38; President, Platforms and Partnerships, Omnicom Media Group. &#8220;That&#8217;s what Google is looking to accomplish with this marketplace and we look forward to working with them as it evolves.&#8221;</div><div><br /></div><div>&#8220;Video has become central to our strategy, and being able to sell premium video programmatically to top brand partners is a requirement in this dynamic marketplace,&#8221; said J.R. McCabe SVP, Video, Time Inc. &#8220;We are looking forward to working with Google to enable this technology and to develop this premium marketplace.&#8221;<i>&#160;</i></div><div><br /></div><div>Partner Select helping marketers and publishers also requires having the right buying technologies in place. Along with Google Partners Select, we&#8217;re introducing a way for marketers and publishers to execute direct, reservation-based sales through the DoubleClick platform. This new option is meant to help streamline what today can be a cumbersome process, involving days of back-and-forth negotiations, dozens of phone calls and sometimes, yes, a fax machine. We hope brands and publishers will be able to spend less time on logistics and more time building partnerships and winning creative and content.</div><div><br /></div><div>I&#8217;m inspired every day by the rich experiences that brands and publishers are creating. Together with our partners, we can make digital a medium where brands, agencies and publishers can flourish.&#160;</div><div><br /></div><div>To hear more of our thoughts on this, join us for our livestream <a href="http://goo.gl/OlWKB2"><span>here</span></a>.&#160;</div><div><br /></div><div>-- Posted by, Neal Mohan, Vice President of Display and Video Advertising Products, Google</div>]]></description>
				<content:encoded><![CDATA[<div class="p1">Video is how brands <a href="http://www.thinkwithgoogle.com/ads-leaderboards/youtube-leaderboard-apr-14.html"><span class="s1">tell stories</span></a>, how they surprise us, make us laugh or make us cry. No other medium brings together sight, sound and motion, and now with digital, interaction. As I’ve said <a href="http://adwords.blogspot.com/2013/03/the-brand-revolution-is-underway.html"><span class="s1">for</span></a> <a href="http://doubleclickadvertisers.blogspot.com/2014/02/investing-in-better-measurement-for.html"><span class="s1">a</span></a> <a href="http://adwords.blogspot.com/2014/05/breaking-down-1-barrier-to-brand.html"><span class="s1">while</span></a>, our goal is to make digital work for brands. To do that, we have to make online video work for brands and their publisher partners, a topic I’ll be addressing this morning at our annual DoubleClick customer event.&nbsp;</div><div class="p3"><br /></div><iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/oZXZB3iwo3Y" width="560"></iframe> <br /><div class="p1"><b><br /></b><b>Introducing Google Partner Select, A Programmatic Premium Video Marketplace</b></div><div class="p2"><br /></div><div class="p1">Publishers are investing like never before in compelling, high quality video experiences. Brand marketers are eager to buy against this content -- in fact eMarketer projects video ad spending to grow from $4 billion last year to nearly $6 billion in 2014. One big hurdle to growth remains, though: much of this content is hard to access.&nbsp;</div><div class="p2"><br /></div><div class="p1">Our brands and agencies want to buy this premium content programmatically, but have difficulty finding the high quality inventory they want. Our publisher partners also want to take advantage of the ease and efficiency of programmatic to connect with top brands, but with transparency and control over how that happens. In order to grow the marketplace for everyone, we need to invest in the systems that will make it easier for brands and premium publishers to transact at scale.&nbsp;</div><div class="p2"><br /></div><div class="p1">As a step towards that goal, today we are introducing Google Partner Select, bringing together the best of brand with the best of programmatic. This new premium programmatic marketplace will connect a select set of publishers investing in top-quality video with the brands that want to buy against it.&nbsp;</div><div class="p2"><br /></div><div class="p1">What we’re most pleased about is the reaction to Partner Select that we’re getting from clients:</div><div class="p2"><br /></div><div class="p1">“As a longtime Google partner, we are excited about what this marketplace has to offer. Video is the fuel for effective brand marketing and having more top quality video content available programmatically is going to open up all sorts of new possibilities for brand clients,” said Josh Jacobs, Global CEO, Accuen &amp; President, Platforms and Partnerships, Omnicom Media Group. “That’s what Google is looking to accomplish with this marketplace and we look forward to working with them as it evolves.”</div><div class="p2"><br /></div><div class="p1">“Video has become central to our strategy, and being able to sell premium video programmatically to top brand partners is a requirement in this dynamic marketplace,” said J.R. McCabe SVP, Video, Time Inc. “We are looking forward to working with Google to enable this technology and to develop this premium marketplace.”<i>&nbsp;</i></div><div class="p2"><br /></div><div class="p1">Partner Select helping marketers and publishers also requires having the right buying technologies in place. Along with Google Partners Select, we’re introducing a way for marketers and publishers to execute direct, reservation-based sales through the DoubleClick platform. This new option is meant to help streamline what today can be a cumbersome process, involving days of back-and-forth negotiations, dozens of phone calls and sometimes, yes, a fax machine. We hope brands and publishers will be able to spend less time on logistics and more time building partnerships and winning creative and content.</div><div class="p2"><br /></div><div class="p1">I’m inspired every day by the rich experiences that brands and publishers are creating. Together with our partners, we can make digital a medium where brands, agencies and publishers can flourish.&nbsp;</div><div class="p2"><br /></div><div class="p1">To hear more of our thoughts on this, join us for our livestream <a href="http://goo.gl/OlWKB2"><span class="s1">here</span></a>.&nbsp;</div><div class="p2"><br /></div><div class="p1">-- Posted by, Neal Mohan, Vice President of Display and Video Advertising Products, Google</div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/unlocking-the-brand-opportunity-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Improving Call-to-Action overlays and video reporting in AdWords for video</title>
		<link>https://googledata.org/google-adwords/improving-call-to-action-overlays-and-video-reporting-in-adwords-for-video/</link>
		<comments>https://googledata.org/google-adwords/improving-call-to-action-overlays-and-video-reporting-in-adwords-for-video/#comments</comments>
		<pubDate>Thu, 22 May 2014 23:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2aa088a68e4a299a1ab3a029fad7f941</guid>
		<description><![CDATA[<div dir="ltr">Starting May 14, Call-to-Action overlays on promoted YouTube videos will have a new look and feel across both desktop and mobile. The two lines of accompanying text will be gone leaving a single line call-to-action, giving more real estate to video content. We&#8217;ll make this change automatically so you won&#8217;t need to make any changes to existing CTAs.<br /><br />Here&#8217;s the expanded CTA for desktop and mobile: <br /><div><a href="http://3.bp.blogspot.com/-bVQB_9aUKHE/U34huEh2S8I/AAAAAAAAA3w/8430P2i3eWo/s1600/Untitled+drawing+%252828%2529.png"><img border="0" src="http://3.bp.blogspot.com/-bVQB_9aUKHE/U34huEh2S8I/AAAAAAAAA3w/8430P2i3eWo/s1600/Untitled+drawing+%252828%2529.png" height="33" width="200"></a></div>And here is the collapsed CTA for desktop and mobile: <br /><div><a href="http://3.bp.blogspot.com/-GoHTA72dt6s/U34iW4i9LtI/AAAAAAAAA4E/jNexEtlqOVY/s1600/Untitled+drawing+%252830%2529.png"><img border="0" src="http://3.bp.blogspot.com/-GoHTA72dt6s/U34iW4i9LtI/AAAAAAAAA4E/jNexEtlqOVY/s1600/Untitled+drawing+%252830%2529.png"></a></div>In addition to this visual makeover, CTA clicks will now be included within the &#8220;Clicks&#8221; and &#8220;CTR&#8221; reporting metrics in AdWords for video, enabling you to better quantify the total impact of this video interactivity feature.<br /><br />We are also rolling out new reporting improvements in AdWords for video that many advertisers, large and small told us would be helpful, namely:<br /><ul><li>Improved Column Sets: We&#8217;re adding View Rate by default for all sets and are grouping sets of metrics by insight topic (like Views, Audience, Branding or Conversions). This lets you see a snapshot of your campaign based on key objectives, as well as evaluate your overall campaign performance based on View Rate before diving deeper into individual targeting groups.</li><li>Added Conversion Segmentations: You can now segment by conversion name and category, showing how your video campaigns are driving key conversion types.</li><li>All metrics now visible in the Videos tab: now you can more easily optimize across your videos by seeing the entire set of metrics available in other tabs.</li></ul>Head over to <a href="http://adwords.google.com/video">AdWords for video</a> to take advantage of these new features today.<br /><br /><i>Posted by Avi Fein, Product Manager, YouTube</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Starting May 14, Call-to-Action overlays on promoted YouTube videos will have a new look and feel across both desktop and mobile. The two lines of accompanying text will be gone leaving a single line call-to-action, giving more real estate to video content. We’ll make this change automatically so you won’t need to make any changes to existing CTAs.<br /><br />Here’s the expanded CTA for desktop and mobile: <br /><div class="separator" style="clear: both; text-align: left;"><a href="http://3.bp.blogspot.com/-bVQB_9aUKHE/U34huEh2S8I/AAAAAAAAA3w/8430P2i3eWo/s1600/Untitled+drawing+%252828%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-bVQB_9aUKHE/U34huEh2S8I/AAAAAAAAA3w/8430P2i3eWo/s1600/Untitled+drawing+%252828%2529.png" height="33" width="200" /></a></div>And here is the collapsed CTA for desktop and mobile: <br /><div class="separator" style="clear: both; text-align: left;"><a href="http://3.bp.blogspot.com/-GoHTA72dt6s/U34iW4i9LtI/AAAAAAAAA4E/jNexEtlqOVY/s1600/Untitled+drawing+%252830%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://3.bp.blogspot.com/-GoHTA72dt6s/U34iW4i9LtI/AAAAAAAAA4E/jNexEtlqOVY/s1600/Untitled+drawing+%252830%2529.png" /></a></div>In addition to this visual makeover, CTA clicks will now be included within the “Clicks” and “CTR” reporting metrics in AdWords for video, enabling you to better quantify the total impact of this video interactivity feature.<br /><br />We are also rolling out new reporting improvements in AdWords for video that many advertisers, large and small told us would be helpful, namely:<br /><ul style="text-align: left;"><li>Improved Column Sets: We’re adding View Rate by default for all sets and are grouping sets of metrics by insight topic (like Views, Audience, Branding or Conversions). This lets you see a snapshot of your campaign based on key objectives, as well as evaluate your overall campaign performance based on View Rate before diving deeper into individual targeting groups.</li><li>Added Conversion Segmentations: You can now segment by conversion name and category, showing how your video campaigns are driving key conversion types.</li><li>All metrics now visible in the Videos tab: now you can more easily optimize across your videos by seeing the entire set of metrics available in other tabs.</li></ul>Head over to <a href="http://adwords.google.com/video">AdWords for video</a> to take advantage of these new features today.<br /><br /><i>Posted by Avi Fein, Product Manager, YouTube</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/improving-call-to-action-overlays-and-video-reporting-in-adwords-for-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Introducing a simpler, more capable TrueView in AdWords for video</title>
		<link>https://googledata.org/google-adwords/introducing-a-simpler-more-capable-trueview-in-adwords-for-video/</link>
		<comments>https://googledata.org/google-adwords/introducing-a-simpler-more-capable-trueview-in-adwords-for-video/#comments</comments>
		<pubDate>Tue, 11 Mar 2014 16:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=b73e8503496f2ae7e41b482e9e154743</guid>
		<description><![CDATA[<div dir="ltr">Since its debut in 2010, the TrueView format has enabled advertisers to break free of time constraints, grow view count with opted-in views and only pay when people choose to watch their video ads. Thanks to these benefits, TrueView advertising connects users with relevant ads, and empowers creators to monetize their content. In our ongoing quest to help advertisers unlock the power of online video, today we&#8217;re announcing a forthcoming improvement to make TrueView both simpler and more capable.<br /><br />On April 15, we will go from three TrueView formats to two: TrueView in-stream and TrueView in-display. This will effectively combine the in-search and in-display formats into one format called TrueView in-display.<br /><br />In addition to simplifying campaign creation and management, this change offers the following: <br /><ul><li><b>Organizes TrueView around how a user interacts with the ad</b> (either by viewing as a pre-roll video or clicking on a thumbnail) rather than where the ad appears.</li><li><b>Tell us where you want your ads to appear at the campaign level</b> &#8211; YouTube videos, YouTube search and the Google Display Network &#8211; and all ads within that campaign will run on your selected networks.</li><li><b>Deliver more relevant ads on the YouTube search page</b>. Just as you can use in-stream ads to reach different demographics or audiences, now you can tailor in-display ads running on YouTube search pages to these same parameters, in addition to keywords.</li></ul><b><br /></b><b>What do you need to do?</b><br />Starting April 15, all new video campaigns will use new campaign settings and simplified ad formats. At the same time, you'll have access to an upgrade center where you can upgrade any or all of your existing campaigns to the new functionality. Starting May 15, all campaigns will be automatically upgraded.<br /><br />We believe this change will make TrueView an even more effective tool to help you build your brand with videos. For further reading, please visit our <a href="https://support.google.com/adwords/answer/3481092">Help Center article</a>.<br /><br /><i>Posted by Ryo Akasaka, Product Manager, AdWords for Video</i></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">Since its debut in 2010, the TrueView format has enabled advertisers to break free of time constraints, grow view count with opted-in views and only pay when people choose to watch their video ads. Thanks to these benefits, TrueView advertising connects users with relevant ads, and empowers creators to monetize their content. In our ongoing quest to help advertisers unlock the power of online video, today we’re announcing a forthcoming improvement to make TrueView both simpler and more capable.<br /><br />On April 15, we will go from three TrueView formats to two: TrueView in-stream and TrueView in-display. This will effectively combine the in-search and in-display formats into one format called TrueView in-display.<br /><br />In addition to simplifying campaign creation and management, this change offers the following: <br /><ul style="text-align: left;"><li><b>Organizes TrueView around how a user interacts with the ad</b> (either by viewing as a pre-roll video or clicking on a thumbnail) rather than where the ad appears.</li><li><b>Tell us where you want your ads to appear at the campaign level</b> – YouTube videos, YouTube search and the Google Display Network – and all ads within that campaign will run on your selected networks.</li><li><b>Deliver more relevant ads on the YouTube search page</b>. Just as you can use in-stream ads to reach different demographics or audiences, now you can tailor in-display ads running on YouTube search pages to these same parameters, in addition to keywords.</li></ul><b><br /></b><b>What do you need to do?</b><br />Starting April 15, all new video campaigns will use new campaign settings and simplified ad formats. At the same time, you'll have access to an upgrade center where you can upgrade any or all of your existing campaigns to the new functionality. Starting May 15, all campaigns will be automatically upgraded.<br /><br />We believe this change will make TrueView an even more effective tool to help you build your brand with videos. For further reading, please visit our <a href="https://support.google.com/adwords/answer/3481092">Help Center article</a>.<br /><br /><i>Posted by Ryo Akasaka, Product Manager, AdWords for Video</i></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/introducing-a-simpler-more-capable-trueview-in-adwords-for-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Understanding Impact with Earned Actions in AdWords for video</title>
		<link>https://googledata.org/google-adwords/understanding-impact-with-earned-actions-in-adwords-for-video/</link>
		<comments>https://googledata.org/google-adwords/understanding-impact-with-earned-actions-in-adwords-for-video/#comments</comments>
		<pubDate>Fri, 06 Dec 2013 17:04:00 +0000</pubDate>
		<dc:creator><![CDATA[Rob Newton]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=4db8ac80cda23231b3f8f6ff468cad00</guid>
		<description><![CDATA[<div dir="ltr">For many video advertisers, the benefit of TrueView only begins with the first view. Just as an <a href="https://www.youtube.com/playlist?list=PL86F4D497FD3CACCE" target="_blank">Honest Trailers link</a> pinged to a friend can lead to several other video views, we see this viewership pattern with paid ad views as well &#8211; the initial view can catalyze a long chain of engagement with a brand.<br /><br />Since these earned views are a major benefit of advertising on YouTube and the Google Display Network, we&#8217;re bringing new capabilities to AdWords for video to help you better measure viewer actions following your video ads. Formerly known as Follow-on Actions, these new reporting columns will show your Earned views, Earned view rate, Earned subscribers, Earned playlist additions, Earned likes and Earned shares, with additional columns rolling out over the next few weeks. So if you're an advertiser, you can see how many people stayed on your channel to watch more videos, subscribed to your channel, added your video to a playlist, or shared your video with a friend after watching a TrueView ad.<br /><br />From looking at the last six months, we&#8217;ve seen over 6,000 campaigns generate at least one earned view as a result of every two paid views. And we know the YouTube audience isn&#8217;t shy about sharing brand content: 3 in 4 YouTube users agree &#8220;If there is a brand I love, I tend to tell everyone about it.&#8221; (Source: <a href="http://www.google.com/think/research-studies/youtube-insights-stats-data-trends-vol2.html" target="_blank">YouTube Insights Oct 2013</a>)<br /><br />Check out this video to see how Earned Action reporting helps you better understand the impact of your video advertising:<br /><div></div>We have also simplified the Account Linking flow to make it easier to join an AdWords for video account with a YouTube channel and see the effect of TrueView advertising on growing your audience, through Earned subscribers and Earned shares.<br /><br />So link your AdWords for video account with your YouTube channel, and take advantage of these new reporting columns today.<br /><br /><i>Posted by Luke Segars, Associate Product Manager, AdWords for video</i><br /><div><br /></div></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">For many video advertisers, the benefit of TrueView only begins with the first view. Just as an <a href="https://www.youtube.com/playlist?list=PL86F4D497FD3CACCE" >Honest Trailers link</a> pinged to a friend can lead to several other video views, we see this viewership pattern with paid ad views as well – the initial view can catalyze a long chain of engagement with a brand.<br /><br />Since these earned views are a major benefit of advertising on YouTube and the Google Display Network, we’re bringing new capabilities to AdWords for video to help you better measure viewer actions following your video ads. Formerly known as Follow-on Actions, these new reporting columns will show your Earned views, Earned view rate, Earned subscribers, Earned playlist additions, Earned likes and Earned shares, with additional columns rolling out over the next few weeks. So if you're an advertiser, you can see how many people stayed on your channel to watch more videos, subscribed to your channel, added your video to a playlist, or shared your video with a friend after watching a TrueView ad.<br /><br />From looking at the last six months, we’ve seen over 6,000 campaigns generate at least one earned view as a result of every two paid views. And we know the YouTube audience isn’t shy about sharing brand content: 3 in 4 YouTube users agree “If there is a brand I love, I tend to tell everyone about it.” (Source: <a href="http://www.google.com/think/research-studies/youtube-insights-stats-data-trends-vol2.html" >YouTube Insights Oct 2013</a>)<br /><br />Check out this video to see how Earned Action reporting helps you better understand the impact of your video advertising:<br /><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/DLUzJR35su0" width="560"></iframe></div>We have also simplified the Account Linking flow to make it easier to join an AdWords for video account with a YouTube channel and see the effect of TrueView advertising on growing your audience, through Earned subscribers and Earned shares.<br /><br />So link your AdWords for video account with your YouTube channel, and take advantage of these new reporting columns today.<br /><br /><i>Posted by Luke Segars, Associate Product Manager, AdWords for video</i><br /><div><br /></div></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/understanding-impact-with-earned-actions-in-adwords-for-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Released Data Set: Features Extracted From YouTube Videos for Multiview Learning</title>
		<link>https://googledata.org/youtube/released-data-set-features-extracted-from-youtube-videos-for-multiview-learning/</link>
		<comments>https://googledata.org/youtube/released-data-set-features-extracted-from-youtube-videos-for-multiview-learning/#comments</comments>
		<pubDate>Tue, 26 Nov 2013 17:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Research @ Google]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=8b3750301df55087de49db578f2a0a90</guid>
		<description><![CDATA[<span>Posted by Omid Madani, Senior Software Engineer</span><br /><span><br /></span><div><span>&#8220;If it looks like a duck, swims like a duck, and quacks like a duck, then it <i><u>probably</u></i> is a duck.&#8221;</span></div><div><span><a href="http://en.wikipedia.org/wiki/Duck_test">The &#8220;duck test&#8221;</a>.</span></div><br />Performance of machine learning algorithms, supervised or unsupervised, is often significantly enhanced when a variety of feature families, or <i>multiple views</i> of the data, are available.  For example, in the case of web pages, one feature family can be based on the words appearing on the page, and another can be based on the URLs and related connectivity properties. Similarly, videos contain both audio and visual signals where in turn each modality is analyzed in a variety of ways.  For instance, the visual stream can be analyzed based on the color and edge distribution, texture, motion, object types, and so on.  YouTube videos are also associated with textual information (title, tags, comments, etc.).    Each feature family complements others in providing predictive signals to accomplish a prediction or classification task, for example, in automatically classifying videos into subject areas such as sports, music, comedy, games, and so on.<br /><br />We have released a dataset of over 100k feature vectors extracted from public YouTube videos. These videos are labeled by one of 30 classes, each class corresponding to a video game (with some amount of class noise): each video shows a gameplay of a video game, for  teaching purposes for example.  Each instance (video) is described by three feature families (textual, visual, and auditory), and each family is broken into subfamilies yielding up to 13 feature types per instance. Neither video identities nor class identities are released.<br /><br />We hope that this dataset will be valuable for research on a variety of multiview related machine learning topics, including multiview clustering, co-training, active learning, classifier fusion and ensembles.<br /><br />The data and more information can be obtained from the <a href="http://archive.ics.uci.edu/ml/datasets/YouTube+Multiview+Video+Games+Dataset">UCI machine learning repository (multiview video dataset)</a>, or from <a href="https://code.google.com/p/multiview-video-features-data/">here</a>.]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Omid Madani, Senior Software Engineer</span><br /><span class="byline-author"><br /></span><div style="text-align: center;"><span style="font-size: large;">“If it looks like a duck, swims like a duck, and quacks like a duck, then it <i><u>probably</u></i> is a duck.”</span></div><div style="text-align: center;"><span style="font-size: large;"><a href="http://en.wikipedia.org/wiki/Duck_test">The “duck test”</a>.</span></div><br />Performance of machine learning algorithms, supervised or unsupervised, is often significantly enhanced when a variety of feature families, or <i>multiple views</i> of the data, are available.  For example, in the case of web pages, one feature family can be based on the words appearing on the page, and another can be based on the URLs and related connectivity properties. Similarly, videos contain both audio and visual signals where in turn each modality is analyzed in a variety of ways.  For instance, the visual stream can be analyzed based on the color and edge distribution, texture, motion, object types, and so on.  YouTube videos are also associated with textual information (title, tags, comments, etc.).    Each feature family complements others in providing predictive signals to accomplish a prediction or classification task, for example, in automatically classifying videos into subject areas such as sports, music, comedy, games, and so on.<br /><br />We have released a dataset of over 100k feature vectors extracted from public YouTube videos. These videos are labeled by one of 30 classes, each class corresponding to a video game (with some amount of class noise): each video shows a gameplay of a video game, for  teaching purposes for example.  Each instance (video) is described by three feature families (textual, visual, and auditory), and each family is broken into subfamilies yielding up to 13 feature types per instance. Neither video identities nor class identities are released.<br /><br />We hope that this dataset will be valuable for research on a variety of multiview related machine learning topics, including multiview clustering, co-training, active learning, classifier fusion and ensembles.<br /><br />The data and more information can be obtained from the <a href="http://archive.ics.uci.edu/ml/datasets/YouTube+Multiview+Video+Games+Dataset">UCI machine learning repository (multiview video dataset)</a>, or from <a href="https://code.google.com/p/multiview-video-features-data/">here</a>.]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/released-data-set-features-extracted-from-youtube-videos-for-multiview-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube wins case against Viacom (again)</title>
		<link>https://googledata.org/youtube/youtube-wins-case-against-viacom-again/</link>
		<comments>https://googledata.org/youtube/youtube-wins-case-against-viacom-again/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 22:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Public Policy Blog]]></dc:creator>
				<category><![CDATA[Google Public Policy]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google policy]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=a19d152f397fd03c557ab4d0ad5df1ec</guid>
		<description><![CDATA[Posted by Kent Walker, Senior Vice President &#38; General Counsel, Google<br />&#160;<br /><i>Cross-posted from the<a href="http://youtube-global.blogspot.com/2013/04/youtube-wins-case-against-viacom-again.html"> </a><i><span><a href="http://youtube-global.blogspot.com/2013/04/youtube-wins-case-against-viacom-again.html">Official YouTube Blog</a>&#160;</span></i></i><br /><br />Today is an important day for the Internet. For the second time, a <a href="https://docs.google.com/file/d/0B9-CavY2321RSHpYRjNseDhqTWM/edit">federal court</a> correctly rejected Viacom&#8217;s lawsuit against YouTube.  This is a win not just for YouTube, but for the billions of people worldwide who depend on the web to freely exchange ideas and information.<br /><br />In enacting the Digital Millennium Copyright Act, Congress effectively balanced the public interest in free expression with the rights of copyright holders. The court today reaffirmed an established judicial consensus that the DMCA protects web platforms like YouTube that work with rightsholders and take appropriate steps to remove user-generated content that  rightsholders notify them is infringing.<br /><br />The growing YouTube community includes not only a billion individual users, but tens of thousands of partners who earn revenue from the platform -- from independent musicians and creators to some of the world&#8217;s biggest record labels, movie studios, and news organizations. Today&#8217;s decision recognizes YouTube as a thriving and vibrant forum for all these users, creators and consumers alike.  Today is an important day for the Internet.]]></description>
				<content:encoded><![CDATA[Posted by Kent Walker, Senior Vice President &amp; General Counsel, Google<br />&nbsp;<br /><i>Cross-posted from the<a href="http://youtube-global.blogspot.com/2013/04/youtube-wins-case-against-viacom-again.html"> </a><i><span style="color: blue;"><a href="http://youtube-global.blogspot.com/2013/04/youtube-wins-case-against-viacom-again.html">Official YouTube Blog</a>&nbsp;</span></i></i><br /><br />Today is an important day for the Internet. For the second time, a <a href="https://docs.google.com/file/d/0B9-CavY2321RSHpYRjNseDhqTWM/edit">federal court</a> correctly rejected Viacom’s lawsuit against YouTube.  This is a win not just for YouTube, but for the billions of people worldwide who depend on the web to freely exchange ideas and information.<br /><br />In enacting the Digital Millennium Copyright Act, Congress effectively balanced the public interest in free expression with the rights of copyright holders. The court today reaffirmed an established judicial consensus that the DMCA protects web platforms like YouTube that work with rightsholders and take appropriate steps to remove user-generated content that  rightsholders notify them is infringing.<br /><br />The growing YouTube community includes not only a billion individual users, but tens of thousands of partners who earn revenue from the platform -- from independent musicians and creators to some of the world’s biggest record labels, movie studios, and news organizations. Today’s decision recognizes YouTube as a thriving and vibrant forum for all these users, creators and consumers alike.  Today is an important day for the Internet.]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/youtube-wins-case-against-viacom-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>We’re simplifying earnings reporting for YouTube partners</title>
		<link>https://googledata.org/youtube/were-simplifying-earnings-reporting-for-all-partners/</link>
		<comments>https://googledata.org/youtube/were-simplifying-earnings-reporting-for-all-partners/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 16:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdSense Team]]></dc:creator>
				<category><![CDATA[Google Adsense]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[adsense google]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2d48bab1b39a8655df341ccefd530b7f</guid>
		<description><![CDATA[<div dir="ltr"><br />One of the most exciting things about YouTube is all the partners building businesses around doing what they love. We now have thousands of partners who are making video creation a full-time endeavor. And, we&#8217;re listening to feedback and working to improve the process of earning money on YouTube.<br /><br />So, in an effort to ensure we deliver our partners the most accurate and consistent financial performance data for their videos, we are making some changes in how YouTube interacts with AdSense. Starting April 1, 2013, AdSense will no longer calculate and report AdSense for Content Host earnings for YouTube partners. Instead, AdSense earnings from YouTube videos will only be calculated by YouTube and displayed in YouTube Analytics.<br /><br /><b>What does this mean for you as a YouTube partner?</b><br />First, expect no change in how you are paid. The payments tab in AdSense will show your monthly YouTube payments as one total amount as you will continue to be paid via AdSense. Rather, this change means that if you want to view your YouTube financial performance, you should go to <a href="http://www.youtube.com/analytics">YouTube Analytics</a> where you can continue to find a comprehensive view of all your sources of earnings for your YouTube videos. YouTube Analytics has improved the timeliness of earnings reporting to within 24 hours after the end of the day, Pacific Time. You can still view page views and clicks and also manage ad blocking in the AdSense interface for your YouTube videos. If you use other AdSense products, their calculation and reports will be unchanged in the AdSense reporting interface.<br /><br />Have you ever wondered what the difference between AdSense earnings and YouTube earnings was? As a bit of background, many YouTube partners have ad earnings from two sources: auction-sold ads (AdSense earnings) and reserve-sold ads (YouTube earnings). YouTube serves the optimal ads when a viewer watches the video. Previously, AdSense calculated and reported the auction-sold AdSense earnings. YouTube calculated reserve-sold and miscellaneous earnings and reported both AdSense and YouTube earnings. Now, having only the YouTube system calculate all your earnings will simplify and streamline your video reporting.<br /><br />We take accurate financial calculation and reporting very seriously, and believe this change will reduce reporting confusion and prepare all our partners for new ways to grow their earnings.<br /><br /><br />Andy Stack, <i>YouTube Product Manager</i><br /><span>Was this blog post useful?&#160;</span><a href="https://docs.google.com/a/google.com/forms/d/1qwvRcKDibHlnlQw8ucg3SnKbe5EUH6ixHoIrUuwnmMM/viewform" target="_blank">Share your feedback with us</a><span>.</span></div>]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><br />One of the most exciting things about YouTube is all the partners building businesses around doing what they love. We now have thousands of partners who are making video creation a full-time endeavor. And, we’re listening to feedback and working to improve the process of earning money on YouTube.<br /><br />So, in an effort to ensure we deliver our partners the most accurate and consistent financial performance data for their videos, we are making some changes in how YouTube interacts with AdSense. Starting April 1, 2013, AdSense will no longer calculate and report AdSense for Content Host earnings for YouTube partners. Instead, AdSense earnings from YouTube videos will only be calculated by YouTube and displayed in YouTube Analytics.<br /><br /><b>What does this mean for you as a YouTube partner?</b><br />First, expect no change in how you are paid. The payments tab in AdSense will show your monthly YouTube payments as one total amount as you will continue to be paid via AdSense. Rather, this change means that if you want to view your YouTube financial performance, you should go to <a href="http://www.youtube.com/analytics">YouTube Analytics</a> where you can continue to find a comprehensive view of all your sources of earnings for your YouTube videos. YouTube Analytics has improved the timeliness of earnings reporting to within 24 hours after the end of the day, Pacific Time. You can still view page views and clicks and also manage ad blocking in the AdSense interface for your YouTube videos. If you use other AdSense products, their calculation and reports will be unchanged in the AdSense reporting interface.<br /><br />Have you ever wondered what the difference between AdSense earnings and YouTube earnings was? As a bit of background, many YouTube partners have ad earnings from two sources: auction-sold ads (AdSense earnings) and reserve-sold ads (YouTube earnings). YouTube serves the optimal ads when a viewer watches the video. Previously, AdSense calculated and reported the auction-sold AdSense earnings. YouTube calculated reserve-sold and miscellaneous earnings and reported both AdSense and YouTube earnings. Now, having only the YouTube system calculate all your earnings will simplify and streamline your video reporting.<br /><br />We take accurate financial calculation and reporting very seriously, and believe this change will reduce reporting confusion and prepare all our partners for new ways to grow their earnings.<br /><br /><br />Andy Stack, <i>YouTube Product Manager</i><br /><span style="background-color: white; color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: xx-small; line-height: 15.59375px; orphans: 2; widows: 2;">Was this blog post useful?&nbsp;</span><a href="https://docs.google.com/a/google.com/forms/d/1qwvRcKDibHlnlQw8ucg3SnKbe5EUH6ixHoIrUuwnmMM/viewform" style="background-color: white; font-family: Arial, Helvetica, sans-serif; font-size: x-small; line-height: 15.59375px; orphans: 2; widows: 2;" >Share your feedback with us</a><span style="background-color: white; color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: xx-small; line-height: 15.59375px; orphans: 2; widows: 2;">.</span></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/were-simplifying-earnings-reporting-for-all-partners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Cool YouTube apps from Google I/O 2012</title>
		<link>https://googledata.org/youtube/cool-youtube-apps-from-google-io-2012/</link>
		<comments>https://googledata.org/youtube/cool-youtube-apps-from-google-io-2012/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 21:17:00 +0000</pubDate>
		<dc:creator><![CDATA[Jeremy W]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[Youtube API]]></category>
		<category><![CDATA[youtube docs]]></category>
		<category><![CDATA[youtube integration]]></category>
		<category><![CDATA[youtube video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=66f043ae6efbbee319fe4cbc6ef5ecd2</guid>
		<description><![CDATA[<b></b><br /><h1><b><span>We're constantly amazed at the innovative ways that developers incorporate YouTube into their applications. At </span><a href="https://developers.google.com/events/io/"><span>Google I/O</span></a><span> this year, 12 partners (over 30% from outside the U.S.) demonstrated their apps in the YouTube section of the </span><a href="https://developers.google.com/events/io/sandbox"><span>Developer Sandbox</span></a><span>, a demo area highlighting applications based on technologies and products featured at I/O.</span></b></h1><h1><b><span>Google's own </span><a href="https://plus.sandbox.google.com/+DanielSieberg/about"><span>Daniel Sieberg</span></a><span>, an Emmy-nominated journalist, interviewed some of our partners about their use of the YouTube APIs.</span></b></h1><div></div><h1><b><span>With Daniel&#8217;s hectic schedule, he only had time to interview a handful of our great partners. &#160;With that in mind, we highlighted all the awesome apps showcased by our partners at the YouTube API Developer Sandbox.</span></b></h1><h3><b><a href="http://www.business.me/"><span>Business.me</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></b></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Business.me, headquartered in Singapore, is the place to share and discover videos about business. &#160;They have created a video-sharing site to help producers of business videos reach their audience. &#160;The site also helps business professionals discover relevant business information in video format.</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Oscar Moreno, CEO, not only holds Business and Law degrees, he helped launch several startups (Business.me, Netjuice, Keldoo, and Tuenti). </span></td></tr></tbody></table></div><b><br /><span></span><br /><span></span></b><br /><h3><b><a href="http://primerlabs.com/codehero"><span>Code Hero</span></a><span> (YouTube Data API)</span><span></span></b></h3><b></b><br /><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Code Hero teaches you to code through a fun, 3D game. Become a code hero and shape the future!</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>The Code Hero Team implemented the recording mechanism in the game that exports to YouTube at a 3 day hackathon!<br /><br />Bonus: The game has </span><a href="http://www.youtube.com/watch?v=Bh7bYNAHXxw"><span>sharks with lasers</span></a><span> attached to their heads!</span></td></tr></tbody></table></div><b><br /><span></span></b><br /><h3><b><a href="http://flipboard.com/"><span>Flipboard</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></b></h3><b></b><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>See everything on Flipboard, all your news and life&#8217;s great moments in one place. Using the YouTube Data API, Flipboard lets users discover, rate, share, and comment on top videos from YouTube. In addition, users can access their own videos and subscriptions, and subscribe to other YouTube users.</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Flipboard launched an Android app one week before I/O with a YouTube and Google+ integration!</span></td></tr></tbody></table></div><b><br /><span></span><br /><span></span><br /><h3><a href="http://www.lootentertainment.com/"><span>LOOT Entertainment</span></a><span> by Sony DADC (YouTube Data API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Gather your friends and set up your own production crew inside PlayStation&#174;Home! What will you be? Director? Actor? Cinematographer? Extra? Try them all! Check out the</span><a href="http://www.lootentertainment.com/machinima/"><span> </span><span>amazing Machinima tools</span></a><span> to help you record, light and build your film or television sets! What will you make?</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>LOOT gives you tons of sets to make your own movies (</span><a href="http://en.wikipedia.org/wiki/Machinima"><span>machinima</span></a><span>) on the</span><a href="http://us.playstation.com/"><span> </span><span>PS3</span></a><span>, including a</span><a href="http://www.youtube.com/watch?v=g7-wHfSNP7U"><span> </span><span>Ghostbusters Firehouse Stage Set</span></a><span>!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://www.moviecom.tv/"><span>Moviecom.tv</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>A simple and easy online video platform for businesses. Record, centralize and share instantly. &#160;Moviecom.tv also allows you to link directly to your YouTube account through the YouTube APIs.</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>The founders flew all the way from Glasgow to attend Google I/O!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://ardrone.parrot.com/parrot-ar-drone/select-site"><span>Parrot</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>The Parrot AR.Drone is a quadricopter that can be controlled by a smartphone or tablet. Get more out of your AR.Drone with the AR.Drone Academy. Keep track of all your flights on the Academy map. &#160;Watch your best videos with added statistical feedback and directly share online with pilots from all over the world!</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Parrot makes </span><a href="http://ardrone2.parrot.com/ar-drone-academy/"><span>remote controlled flying devices</span></a><span> that can record and track their flights!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://www.picotube.tv/"><span>PicoTube - Vettl, Inc.</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Picotube uses content from YouTube and allows users to create avatars, watch clips together, create playlists, and rate videos selected by other video jockeys.</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Picotube was the Grand Prix </span><a href="http://techcrunch.com/2011/12/01/overview-11-startup-demos-from-the-techcrunch-tokyo-2011-conference/"><span>winner of TechCrunch Tokyo 2011</span></a><span>!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://www.skimble.com/"><span>Skimble</span></a><span> (YouTube Data API and YouTube Player API, and new Android Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Here to power the mobile fitness movement, Skimble offers fun, dynamic and social applications for everyone. Available now are Skimble's Workout Trainer and GPS Sports Tracker apps that help motivate people to get and stay active. &#160;Skimble uses the YouTube Player API to display fitness videos. &#160;</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Co-founder</span><a href="http://www.skimble.com/about"><span> </span><span>Maria Ly</span></a><span> got the </span><a href="http://youtu.be/3WFsx-u-q3Y?t=12m39s"><span>crowd moving</span></a><span> at one of YouTube&#8217;s Google I/O Sessions!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://squrl.com/"><span>Squrl</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Squrl is a great place to watch and discover video. Know what videos are trending, receive recommendations on what to watch and see what your friends are watching.</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Co-founders Mark Gray and Michael Hoydich also founded the successful software development company </span><a href="http://www.industrynext.com/"><span>IndustryNext</span></a><span> together in 2004!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://www.telestream.net/"><span>Telestream</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>Telestream demonstrated Wirecast for YouTube, a live video production and streaming product, which was developed specifically for Google YouTube partners. &#160;Telestream specializes in products that make it possible to get video content to any audience regardless of how the content is created, distributed or viewed (entire process). &#160;</span></td></tr><tr><td><span>Fun Fact</span></td><td><span>Telestream&#8217;s NASCAR Project won the </span><a href="http://beforeitsnews.com/press-releases/2012/09/telestream-nascar-project-wins-ibc2012-innovation-award-2487824.html"><span>IBC2012 Innovation Award</span></a><span>!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://www.vidcaster.com/"><span>Vidcaster</span></a><span> (YouTube Data API and YouTube Player API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>VidCaster is a video site creation platform that allows you to create a video portal instantly from your existing video library on YouTube or other video hosts. Choose from a beautiful set of designer themes and customize to your heart's content using VidCaster's powerful template language.</span></td></tr><tr><td><span>Fun Fact</span></td><td><a href="http://www.kieranfarr.com/"><span>Kieran Farr</span></a><span>, CEO and co-founder, used to drive a taxi full-time in San Francisco before becoming a successful entrepreneur!</span></td></tr></tbody></table></div><br /><span></span><br /><span></span><br /><h3><a href="http://www.wevideo.com/"><span>WeVideo</span></a><span> (YouTube Data API)</span><span></span></h3><div dir="ltr"><table><col width="84"><col width="540"><tbody><tr><td><span>Overview</span></td><td><span>WeVideo is a cloud-based video editing suite that allows easy, full-featured, collaborative HD video editing across Google Drive, Chromebooks, and Android devices. </span></td></tr><tr><td><span>Fun Fact</span></td><td><span>WeVideo partnered with Marvel and YouTube to allow fans to create their own </span><a href="http://www.reelseo.com/marvel-wevideo-avengers-remix/"><span>trailers</span></a><span>!</span></td></tr></tbody></table></div><br /><span> </span><span></span></b>]]></description>
				<content:encoded><![CDATA[<b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"></b><br /><h1 dir="ltr"><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">We're constantly amazed at the innovative ways that developers incorporate YouTube into their applications. At </span><a href="https://developers.google.com/events/io/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">Google I/O</span></a><span style="font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"> this year, 12 partners (over 30% from outside the U.S.) demonstrated their apps in the YouTube section of the </span><a href="https://developers.google.com/events/io/sandbox"><span style="color: #1155cc; font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">Developer Sandbox</span></a><span style="font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">, a demo area highlighting applications based on technologies and products featured at I/O.</span></b></h1><h1 dir="ltr"><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">Google's own </span><a href="https://plus.sandbox.google.com/+DanielSieberg/about"><span style="color: #1155cc; font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">Daniel Sieberg</span></a><span style="font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">, an Emmy-nominated journalist, interviewed some of our partners about their use of the YouTube APIs.</span></b></h1><div class="separator" style="clear: both; text-align: center;"><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://3.gvt0.com/vi/BMAr7TpTzMc/0.jpg" height="318" width="560"><param name="movie" value="http://www.youtube.com/v/BMAr7TpTzMc&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><param name="allowFullScreen" value="true" /><embed width="560" height="318"  src="http://www.youtube.com/v/BMAr7TpTzMc&fs=1&source=uds" type="application/x-shockwave-flash" allowfullscreen="true"></embed></object></div><h1 dir="ltr"><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;">With Daniel’s hectic schedule, he only had time to interview a handful of our great partners. &nbsp;With that in mind, we highlighted all the awesome apps showcased by our partners at the YouTube API Developer Sandbox.</span></b></h1><h3 dir="ltr"><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><a href="http://www.business.me/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Business.me</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></b></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Business.me, headquartered in Singapore, is the place to share and discover videos about business. &nbsp;They have created a video-sharing site to help producers of business videos reach their audience. &nbsp;The site also helps business professionals discover relevant business information in video format.</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Oscar Moreno, CEO, not only holds Business and Law degrees, he helped launch several startups (Business.me, Netjuice, Keldoo, and Tuenti). </span></td></tr></tbody></table></div><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span></b><br /><h3 dir="ltr"><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><a href="http://primerlabs.com/codehero"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Code Hero</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></b></h3><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"></b><br /><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Code Hero teaches you to code through a fun, 3D game. Become a code hero and shape the future!</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">The Code Hero Team implemented the recording mechanism in the game that exports to YouTube at a 3 day hackathon!<br class="kix-line-break" /><br class="kix-line-break" />Bonus: The game has </span><a href="http://www.youtube.com/watch?v=Bh7bYNAHXxw"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">sharks with lasers</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> attached to their heads!</span></td></tr></tbody></table></div><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span></b><br /><h3 dir="ltr"><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><a href="http://flipboard.com/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Flipboard</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></b></h3><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"></b><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">See everything on Flipboard, all your news and life’s great moments in one place. Using the YouTube Data API, Flipboard lets users discover, rate, share, and comment on top videos from YouTube. In addition, users can access their own videos and subscriptions, and subscribe to other YouTube users.</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Flipboard launched an Android app one week before I/O with a YouTube and Google+ integration!</span></td></tr></tbody></table></div><b id="internal-source-marker_0.65738051594235" style="font-weight: normal;"><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.lootentertainment.com/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">LOOT Entertainment</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> by Sony DADC (YouTube Data API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Gather your friends and set up your own production crew inside PlayStation®Home! What will you be? Director? Actor? Cinematographer? Extra? Try them all! Check out the</span><a href="http://www.lootentertainment.com/machinima/"><span style="color: black; font-family: Arial; font-size: 15px; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> </span><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">amazing Machinima tools</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> to help you record, light and build your film or television sets! What will you make?</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">LOOT gives you tons of sets to make your own movies (</span><a href="http://en.wikipedia.org/wiki/Machinima"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">machinima</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">) on the</span><a href="http://us.playstation.com/"><span style="color: black; font-family: Arial; font-size: 15px; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> </span><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">PS3</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">, including a</span><a href="http://www.youtube.com/watch?v=g7-wHfSNP7U"><span style="color: black; font-family: Arial; font-size: 15px; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> </span><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Ghostbusters Firehouse Stage Set</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">!</span></td></tr></tbody></table></div><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.moviecom.tv/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Moviecom.tv</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">A simple and easy online video platform for businesses. Record, centralize and share instantly. &nbsp;Moviecom.tv also allows you to link directly to your YouTube account through the YouTube APIs.</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">The founders flew all the way from Glasgow to attend Google I/O!</span></td></tr></tbody></table></div><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://ardrone.parrot.com/parrot-ar-drone/select-site"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Parrot</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">The Parrot AR.Drone is a quadricopter that can be controlled by a smartphone or tablet. Get more out of your AR.Drone with the AR.Drone Academy. Keep track of all your flights on the Academy map. &nbsp;Watch your best videos with added statistical feedback and directly share online with pilots from all over the world!</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Parrot makes </span><a href="http://ardrone2.parrot.com/ar-drone-academy/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">remote controlled flying devices</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> that can record and track their flights!</span></td></tr></tbody></table></div><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.picotube.tv/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">PicoTube - Vettl, Inc.</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Picotube uses content from YouTube and allows users to create avatars, watch clips together, create playlists, and rate videos selected by other video jockeys.</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Picotube was the Grand Prix </span><a href="http://techcrunch.com/2011/12/01/overview-11-startup-demos-from-the-techcrunch-tokyo-2011-conference/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">winner of TechCrunch Tokyo 2011</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">!</span></td></tr></tbody></table></div><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.skimble.com/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Skimble</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API, and new Android Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Here to power the mobile fitness movement, Skimble offers fun, dynamic and social applications for everyone. Available now are Skimble's Workout Trainer and GPS Sports Tracker apps that help motivate people to get and stay active. &nbsp;Skimble uses the YouTube Player API to display fitness videos. &nbsp;</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Co-founder</span><a href="http://www.skimble.com/about"><span style="color: black; font-family: Arial; font-size: 15px; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"> </span><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Maria Ly</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> got the </span><a href="http://youtu.be/3WFsx-u-q3Y?t=12m39s"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">crowd moving</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> at one of YouTube’s Google I/O Sessions!</span></td></tr></tbody></table></div><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://squrl.com/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Squrl</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Squrl is a great place to watch and discover video. Know what videos are trending, receive recommendations on what to watch and see what your friends are watching.</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Co-founders Mark Gray and Michael Hoydich also founded the successful software development company </span><a href="http://www.industrynext.com/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">IndustryNext</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> together in 2004!</span></td></tr></tbody></table></div><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.telestream.net/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Telestream</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Telestream demonstrated Wirecast for YouTube, a live video production and streaming product, which was developed specifically for Google YouTube partners. &nbsp;Telestream specializes in products that make it possible to get video content to any audience regardless of how the content is created, distributed or viewed (entire process). &nbsp;</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Telestream’s NASCAR Project won the </span><a href="http://beforeitsnews.com/press-releases/2012/09/telestream-nascar-project-wins-ibc2012-innovation-award-2487824.html"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">IBC2012 Innovation Award</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">!</span></td></tr></tbody></table></div><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.vidcaster.com/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">Vidcaster</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API and YouTube Player API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">VidCaster is a video site creation platform that allows you to create a video portal instantly from your existing video library on YouTube or other video hosts. Choose from a beautiful set of designer themes and customize to your heart's content using VidCaster's powerful template language.</span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><a href="http://www.kieranfarr.com/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Kieran Farr</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">, CEO and co-founder, used to drive a taxi full-time in San Francisco before becoming a successful entrepreneur!</span></td></tr></tbody></table></div><br /><span style="color: #666666; font-family: Arial; font-size: 16px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><h3 dir="ltr"><a href="http://www.wevideo.com/"><span style="color: #1155cc; font-family: Arial; vertical-align: baseline; white-space: pre-wrap;">WeVideo</span></a><span style="font-family: Arial; vertical-align: baseline; white-space: pre-wrap;"> (YouTube Data API)</span><span style="color: #666666; font-family: Arial; font-size: 16px; vertical-align: baseline; white-space: pre-wrap;"></span></h3><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="84"></col><col width="540"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Overview</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">WeVideo is a cloud-based video editing suite that allows easy, full-featured, collaborative HD video editing across Google Drive, Chromebooks, and Android devices. </span></td></tr><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Fun Fact</span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">WeVideo partnered with Marvel and YouTube to allow fans to create their own </span><a href="http://www.reelseo.com/marvel-wevideo-avengers-remix/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">trailers</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">!</span></td></tr></tbody></table></div><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> </span><span style="font-family: Arial; font-size: 24px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span></b>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/cool-youtube-apps-from-google-io-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube Channels: Get with the Program!</title>
		<link>https://googledata.org/youtube/youtube-channels-get-with-the-program/</link>
		<comments>https://googledata.org/youtube/youtube-channels-get-with-the-program/#comments</comments>
		<pubDate>Mon, 24 Sep 2012 19:57:00 +0000</pubDate>
		<dc:creator><![CDATA[Jeremy W]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[Youtube API]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube docs]]></category>
		<category><![CDATA[youtube integration]]></category>
		<category><![CDATA[youtube video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=6f68d674b51ec46a4504500e38506d08</guid>
		<description><![CDATA[<b><span>It's never been easier to create compelling videos and build a social presence on YouTube. &#160;At this year's Google I/O, YouTube product managers and channel gurus Dror and A.J. presented tips and tricks for making great content centered around raising brand awareness, raising money, and obtaining feedback about your products and services.</span><br /><span></span><br /><span>Don't worry if you missed their talk, we recorded it! &#160;So, sit back, grab some popcorn, and get ready to learn how to showcase your brand in front of YouTube's 800 million unique visitors per month! </span><br /><span></span></b><br /><b><span><span><br /></span></span></b><b><span><span></span></span></b><br /><b><span><br /></span></b><b><span>Click </span><a href="http://commondatastorage.googleapis.com/io2012/presentations/live%20to%20website/504.pdf"><span>here</span></a><span> to view the slides from the video above.</span><br /><span></span><br /><span>Not sold yet? Well, have a sneak peek at some of the great material they cover below, and remember Dror and A.J.&#8217;s number one recommendation: </span><span>make content, not commercials</span><span>!</span><br /><span></span><br /><span>Sneak Peek</span></b><br /><ul><li><b><span>Tips and Tricks</span></b></li><ul><li><b><span>Hook the user in the first 15 seconds (or they'll leave)</span></b></li><li><b><a href="http://support.google.com/youtube/bin/static.py?hl=en&#38;topic=1735220&#38;guide=1734705&#38;page=guide.cs&#38;answer=1735230"><span>Brand your channel!</span></a><span></span></b></li><li><b><span>Make the most of your budget</span></b></li><ul><li><b><span>Review </span><a href="http://youtube-trends.blogspot.com/"><span>YouTube&#8217;s Trends</span></a><span> for ideas</span></b></li><li><b><span>Camera shy? </span><a href="http://www.youtube.com/watch?v=uiCah7uvoKE"><span>Consider animation.</span></a><span> (It might actually be cheaper than video.)</span></b></li><li><b><span>Several successful channels focus on curating videos from their community</span></b></li><li><b><span>Enhance your videos without fancy software/hardware using the </span><a href="http://www.youtube.com/editor"><span>YouTube Editor</span></a><span> or </span><a href="http://www.youtube.com/create"><span>other integrated web editors</span></a><span></span></b></li></ul><li><b><span>Many, many more...  </span></b></li></ul><li><b><span>What's your goal?</span></b></li><ul><li><b><span>Raising awareness</span></b></li><ul><li><b><span>Master your PR via video (include all your features and make bloggers&#8217; lives easier)</span></b></li><li><b><span>Provide product/service demo videos to promote your company</span></b></li><li><b><span>Tell backstories about clients using your products/services</span></b></li></ul><li><b><span>Raising money</span></b></li><ul><li><b><span>Add video to your crowdfunding pitch to increase funds raised by 114% (</span><a href="http://www.indiegogo.com/blog/2011/12/indiegogo-insight-pitch-videos-power-contributions.html"><span>source: Indiegogo</span></a><span>)</span></b></li></ul><li><b><span>Researching and supporting users</span></b></li><ul><li><b><span>Record tutorials to promote and educate (see which features are the most popular using </span><a href="http://support.google.com/youtube/bin/static.py?hl=en&#38;page=guide.cs&#38;guide=1714169&#38;topic=1728599&#38;answer=1714323"><span>YouTube&#8217;s Analytics</span></a><span>... you might be surprised)</span></b></li><li><b><span>Use </span><a href="http://www.google.com/+/learnmore/hangouts/"><span>Google Hangouts</span></a><span> for scalable office hours and virtual focus groups</span></b></li><li><b><span>Figure out what features customers like/dislike via the world&#8217;s largest focus group  </span></b></li></ul></ul><li><b><span>Resources to learn more</span></b></li><ul><li><b><a href="http://youtube.com/creators"><span>Creator Hub</span></a><span></span></b></li><li><b><a href="http://youtube.com/playbook"><span>Creator Playbook</span></a><span> (what you wish you knew about YouTube)</span></b></li><li><b><a href="http://youtube.com/trends"><span>Trends Dashboard</span></a><span> </span></b></li><li><b><a href="http://youtube.com/dev"><span>YouTube for Developers</span></a><span> (that&#8217;s us)</span></b></li></ul></ul><b><span><br /></span></b><b><span>Wow, you made it this far without </span><a href="https://developers.google.com/events/io/sessions/gooio2012/504/"><span>watching the video</span></a><span>? Did we tell you they fill the presentation with awesome videos that showcase their points (including </span><a href="http://www.youtube.com/watch?v=LJP1DphOWPs"><span>Chuck Testa</span></a><span>)? </span><span>Nope!?</span><span> Well, now you know, and you will definitely want to </span><a href="https://developers.google.com/events/io/sessions/gooio2012/504/"><span>watch the whole thing!</span></a><span> </span><br /><span></span><br /><a href="https://plus.google.com/+YouTubeDev/posts"><span>-Jeremy Walker, YouTube API Team</span></a></b>]]></description>
				<content:encoded><![CDATA[<b id="internal-source-marker_0.8606720471289009" style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">It's never been easier to create compelling videos and build a social presence on YouTube. &nbsp;At this year's Google I/O, YouTube product managers and channel gurus Dror and A.J. presented tips and tricks for making great content centered around raising brand awareness, raising money, and obtaining feedback about your products and services.</span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Don't worry if you missed their talk, we recorded it! &nbsp;So, sit back, grab some popcorn, and get ready to learn how to showcase your brand in front of YouTube's 800 million unique visitors per month! </span><br /><span style="background-color: yellow; color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span></b><br /><b style="font-weight: normal;"><span style="color: #1155cc; font-family: Arial;"><span style="font-size: 15px; white-space: pre-wrap;"><br /></span></span></b><b style="font-weight: normal;"><span style="color: #1155cc; font-family: Arial;"><span style="font-size: 15px; white-space: pre-wrap;"><iframe allowfullscreen="allowfullscreen" frameborder="0" height="315" src="http://www.youtube.com/embed/x6ufnham81k" width="560"></iframe></span></span></b><br /><b style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"><br /></span></b><b style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Click </span><a href="http://commondatastorage.googleapis.com/io2012/presentations/live%20to%20website/504.pdf"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">here</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> to view the slides from the video above.</span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Not sold yet? Well, have a sneak peek at some of the great material they cover below, and remember Dror and A.J.’s number one recommendation: </span><span style="font-family: Arial; font-size: 15px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">make content, not commercials</span><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">!</span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 15px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">Sneak Peek</span></b><br /><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: disc; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Tips and Tricks</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Hook the user in the first 15 seconds (or they'll leave)</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><a href="http://support.google.com/youtube/bin/static.py?hl=en&amp;topic=1735220&amp;guide=1734705&amp;page=guide.cs&amp;answer=1735230"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">Brand your channel!</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"></span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Make the most of your budget</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Review </span><a href="http://youtube-trends.blogspot.com/"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">YouTube’s Trends</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> for ideas</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Camera shy? </span><a href="http://www.youtube.com/watch?v=uiCah7uvoKE"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">Consider animation.</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> (It might actually be cheaper than video.)</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Several successful channels focus on curating videos from their community</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Enhance your videos without fancy software/hardware using the </span><a href="http://www.youtube.com/editor"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">YouTube Editor</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> or </span><a href="http://www.youtube.com/create"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">other integrated web editors</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"></span></b></li></ul><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Many, many more...  </span></b></li></ul><li style="font-family: Arial; font-size: 15px; list-style-type: disc; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">What's your goal?</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Raising awareness</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Master your PR via video (include all your features and make bloggers’ lives easier)</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Provide product/service demo videos to promote your company</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Tell backstories about clients using your products/services</span></b></li></ul><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Raising money</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Add video to your crowdfunding pitch to increase funds raised by 114% (</span><a href="http://www.indiegogo.com/blog/2011/12/indiegogo-insight-pitch-videos-power-contributions.html"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">source: Indiegogo</span></a><span style="vertical-align: baseline; white-space: pre-wrap;">)</span></b></li></ul><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Researching and supporting users</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Record tutorials to promote and educate (see which features are the most popular using </span><a href="http://support.google.com/youtube/bin/static.py?hl=en&amp;page=guide.cs&amp;guide=1714169&amp;topic=1728599&amp;answer=1714323"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">YouTube’s Analytics</span></a><span style="vertical-align: baseline; white-space: pre-wrap;">... you might be surprised)</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Use </span><a href="http://www.google.com/+/learnmore/hangouts/"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">Google Hangouts</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> for scalable office hours and virtual focus groups</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: square; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Figure out what features customers like/dislike via the world’s largest focus group  </span></b></li></ul></ul><li style="font-family: Arial; font-size: 15px; list-style-type: disc; vertical-align: baseline;"><b style="font-weight: normal;"><span style="vertical-align: baseline; white-space: pre-wrap;">Resources to learn more</span></b></li><ul style="margin-bottom: 0pt; margin-top: 0pt;"><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><a href="http://youtube.com/creators"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">Creator Hub</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"></span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><a href="http://youtube.com/playbook"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">Creator Playbook</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> (what you wish you knew about YouTube)</span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><a href="http://youtube.com/trends"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">Trends Dashboard</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> </span></b></li><li style="font-family: Arial; font-size: 15px; list-style-type: circle; vertical-align: baseline;"><b style="font-weight: normal;"><a href="http://youtube.com/dev"><span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;">YouTube for Developers</span></a><span style="vertical-align: baseline; white-space: pre-wrap;"> (that’s us)</span></b></li></ul></ul><b style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"><br /></span></b><b style="font-weight: normal;"><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Wow, you made it this far without </span><a href="https://developers.google.com/events/io/sessions/gooio2012/504/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">watching the video</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">? Did we tell you they fill the presentation with awesome videos that showcase their points (including </span><a href="http://www.youtube.com/watch?v=LJP1DphOWPs"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">Chuck Testa</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">)? </span><span style="font-family: Arial; font-size: 15px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">Nope!?</span><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> Well, now you know, and you will definitely want to </span><a href="https://developers.google.com/events/io/sessions/gooio2012/504/"><span style="color: #1155cc; font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;">watch the whole thing!</span></a><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"> </span><br /><span style="font-family: Arial; font-size: 15px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><a href="https://plus.google.com/+YouTubeDev/posts"><span style="color: #1155cc; font-family: Arial; font-size: 15px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;">-Jeremy Walker, YouTube API Team</span></a></b>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/youtube-channels-get-with-the-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Learn with Google Webinar: Great Content Discovery on YouTube</title>
		<link>https://googledata.org/google-adwords/learn-with-google-webinar-great-content-discovery-on-youtube/</link>
		<comments>https://googledata.org/google-adwords/learn-with-google-webinar-great-content-discovery-on-youtube/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 16:07:00 +0000</pubDate>
		<dc:creator><![CDATA[Allison Sommer]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=789ea0babbdd00eac20c439cd980dc01</guid>
		<description><![CDATA[What great content does YouTube have to offer? How can you easily find it? Please join us for this installment of the Just Add YouTube&#160;webinar series. &#160;We will share the masses of quality content YouTube has and will show how you can advertis...]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><span style="font-family: Arial, Helvetica, sans-serif;">What great content does YouTube have to offer? How can you easily find it? Please join us for this installment of the <i>Just Add YouTube</i>&nbsp;webinar series. &nbsp;We will share the masses of quality content YouTube has and will show how you can advertise against it. &nbsp;</span><span style="font-family: Arial, Helvetica, sans-serif;">Hosted by the UK Webinar team, but anyone can register! &nbsp;</span><span style="font-family: Arial, Helvetica, sans-serif;"><br /> </span><span style="font-family: Arial, Helvetica, sans-serif;"><br /></span><span style="font-family: Arial, Helvetica, sans-serif;">See the upcoming webinars, as well as previous recordings, at&nbsp;<a href="http://google.co.uk/ads/webinars">google.co.uk/ads/webinars</a></span><br /><br /><span style="font-family: Arial, Helvetica, sans-serif;"><a href="https://googleemea.connectsolutions.com/youtubecontent/event/registration.html">Register Now!</a></span><br /><br /><span style="background-color: white; font-family: Arial, Helvetica, sans-serif; white-space: pre-wrap;">What: </span><span style="background-color: white; font-family: Arial, Helvetica, sans-serif; white-space: pre-wrap;">Learn with Google Webinar: Great Content Discovery on YouTube</span><br /><b id="internal-source-marker_0.14334791176952422" style="font-weight: normal; text-align: -webkit-auto;"><span style="font-family: Arial, Helvetica, sans-serif;">When: Tuesday July 31st, 3PM GMT (UK time)&nbsp;</span></b><br /><div><br /></div><div><div style="text-align: left;"><b style="font-weight: normal; text-align: -webkit-auto;"><span style="font-family: Arial, Helvetica, sans-serif;">Posted by Allison Sommer,</span></b><span class="byline-author" style="background-color: white; font-family: Arial, Helvetica, sans-serif; line-height: 15.454545021057129px;"><span style="color: blue;">&nbsp;<a href="https://plus.google.com/u/0/b/114353304932511604018/114353304932511604018/posts" >Google Ads Team</a></span></span></div></div></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-3956049889347315369?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/learn-with-google-webinar-great-content-discovery-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Challenges in Computer Science Research</title>
		<link>https://googledata.org/youtube/new-challenges-in-computer-science-research/</link>
		<comments>https://googledata.org/youtube/new-challenges-in-computer-science-research/#comments</comments>
		<pubDate>Fri, 27 Jul 2012 22:43:00 +0000</pubDate>
		<dc:creator><![CDATA[Unknown]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=ee41d91125e53d6ec025b3f30df33b90</guid>
		<description><![CDATA[Posted by Jeff Walz, Head of University RelationsYesterday afternoon at the 2012 Computer Science Faculty Summit, there was a round of lightning talks addressing some of the research problems faced by Google across several domains. The talks pointed ou...]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Jeff Walz, Head of University Relations</span><br /><br />Yesterday afternoon at the <a href="https://sites.google.com/site/facultysummit2012/">2012 Computer Science Faculty Summit</a>, there was a round of lightning talks addressing some of the research problems faced by Google across several domains. The talks pointed out some of the biggest challenges emerging from increasing digital interaction, which is this year’s Faculty Summit theme. <br /><br />Research Scientist <a href="http://research.google.com/pubs/author38000.html">Vivek Kwatra</a> kicked things off with a talk about video stabilization on YouTube. The popularity of mobile devices with cameras has led to an explosion in the amount of video people capture, which can often be shaky. Vivek and his team have found algorithmic approaches to make casual videos look more professional by simulating professional camera moves. Their stabilization technology vastly improves the quality of amateur footage. <br /><br />Next, <a href="http://research.google.com/pubs/EdChi.html">Ed Chi</a> (Research Scientist) talked about social media focusing on the experimental circle model that characterizes Google+. Ed is particularly interested in how social interaction on the web can be designed to mimic live communication. Circles on Google+ allow a user to manage their audience and share content in a targeted fashion, which reflects face-to-face interaction. Ed discussed how, from an HCI perspective, the challenge going forward is the need to consider the trinity of social media: context, audience, content. <br /><br /><a href="https://plus.google.com/u/0/b/117790530324740296539/105603626919803672092/posts">John Wilkes</a>, Principal Software Engineer, talked about cluster management at Google and the challenges of building a new cluster manager-- that is, an operating system for a fleet of machines. Everything at Google is big and a consequence of operating at such tremendous scale is that machines are bound to fail. John’s team is working to make things easier for internal users enabling our ability to respond to more system requests. There are several hard problems in this domain, such as issues with configuration, making it as easy as possible to run a binary, increasing failure tolerance, and helping internal users understand their own needs as well as the behavior and performance of their system in our complicated distributed environment. <br /><br />Research Scientist and coffee connoisseur <a href="http://research.google.com/pubs/author1112.html">Alon Halevy</a>&nbsp;took to the podium to confirm that he did indeed author an empirical book on coffee, and also talked with attendees about structured data on the web. Structured data is comprised of hundreds of millions of (relatively small) tables of data, and Alon’s work is focused on enabling data enthusiasts to discover and visualize those data sets. Great possibilities open up when people start combining data sets in meaningful ways, which inspired the creation of <a href="http://www.google.com/fusiontables/Home/">Fusion Tables</a>. An example is a map made in the aftermath of the 2011 earthquake and tsunami in Japan, that shows natural disaster data alongside the locations of the world’s nuclear plants. Moving forward, Alon’s team will continue to think about interesting things that can be done with data, and the techniques needed to distinguish good data from bad data. <br /><br />To wrap up the session, Praveen Paritosh did a brief, but deep dive into the <a href="http://www.google.com/insidesearch/features/search/knowledge.html">Knowledge Graph</a>,&nbsp;an intelligent model that understands real-world entities and their relationships to one another-- things, not strings-- which <a href="http://googleblog.blogspot.com/2012/05/introducing-knowledge-graph-things-not.html">launched</a>&nbsp;earlier this year.  <br /><br />The Google Faculty Summit continued today with more talks, and breakout sessions centered on our theme of digital interaction. Check back for additional blog posts in the coming days. <br /><br />]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/new-challenges-in-computer-science-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn with Google Webinar: VOD on YouTube</title>
		<link>https://googledata.org/google-adwords/learn-with-google-webinar-vod-on-youtube/</link>
		<comments>https://googledata.org/google-adwords/learn-with-google-webinar-vod-on-youtube/#comments</comments>
		<pubDate>Mon, 16 Jul 2012 19:29:00 +0000</pubDate>
		<dc:creator><![CDATA[Allison Sommer]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>
		<category><![CDATA[tv ads]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=620e4697770c110b5d56a270303820a7</guid>
		<description><![CDATA[78% of online video viewing in the UK is on YouTube, which makes it an excellent platform for VOD. But what are the best ways to maximize it and make it work for your business? We will cover how to run your TV ad on YouTube in two easy ways - running i...]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on"><span style="font-family: Arial, Helvetica, sans-serif;"><span style="text-align: -webkit-auto;">78% of online video viewing in the UK is on YouTube, which makes it an excellent platform for VOD. But what are the best ways to maximize it and make it work for your business? </span><br /><br /><span style="text-align: -webkit-auto;">We will cover how to run your TV ad on YouTube in two easy ways - running it on YouTube Homepage to deliver incremental reach and using TrueView InStream formats to deliver scale and engagement. We will also explain how to effectively add YouTube to your TV schedule.   This webinar is specifically designed for a TV savvy audience who values the importance of reach and frequency to ensure maximum impact of VOD campaigns. </span><br /><br /><span style="text-align: -webkit-auto;">You can also view the upcoming webinars, as well as previous recordings, on </span><a href="http://google.co.uk/ads/webinars" style="text-align: -webkit-auto;">google.co.uk/ads/webinars</a><br /><span style="text-align: -webkit-auto;"><a href="http://google.co.uk/ads/webinars"></a></span><br /><span style="text-align: -webkit-auto;">We hope you can join us!</span><br /><br /><span style="text-align: -webkit-auto;">Register Now</span><br /><a href="https://googleemea.connectsolutions.com/vodonyoutube/event/registration.html" style="text-align: -webkit-auto;">https://googleemea.connectsolutions.com/vodonyoutube/event/registration.html</a></span><b id="internal-source-marker_0.05270908516831696"><br /><span style="background-color: transparent; background-color: transparent; font-family: Arial; font-size: 15px; font-size: 15px; font-weight: normal; text-align: -webkit-auto; vertical-align: baseline; white-space: pre-wrap;"></span></b><br /><div dir="ltr" style="font-weight: normal; text-align: -webkit-auto;"><table style="border-collapse: collapse; border: none;"><colgroup><col width="81"></col><col width="542"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px 7px 4px; vertical-align: top;"><span style="font-family: Arial, Helvetica, sans-serif;">What</span><br /><span style="background-color: transparent; color: #666666; font-family: Arial; font-size: 12px; vertical-align: baseline; white-space: pre-wrap;"></span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px 7px 4px; vertical-align: top;"><span style="font-family: Arial, Helvetica, sans-serif;">Learn with Google Webinar: VOD on YouTube</span></td></tr></tbody></table></div><b id="internal-source-marker_0.05270908516831696"><br /><span style="background-color: transparent; background-color: transparent; font-family: Arial; font-size: 15px; font-size: 15px; font-weight: normal; text-align: -webkit-auto; vertical-align: baseline; white-space: pre-wrap;"></span></b><div dir="ltr"><table style="border-collapse: collapse; border: none;"><colgroup><col width="81"></col><col width="542"></col></colgroup><tbody><tr style="height: 0px;"><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial, Helvetica, sans-serif;">Where</span><br /><span style="background-color: transparent; color: #666666; font-family: Arial; font-size: 12px; vertical-align: baseline; white-space: pre-wrap;"></span></td><td style="border: 1px solid rgb(0, 0, 0); padding: 7px; vertical-align: top;"><span style="font-family: Arial, Helvetica, sans-serif;">Tuesday 17th July, 3 pm GMT</span></td></tr></tbody></table><span style="font-family: Arial, Helvetica, sans-serif;"><br />Posted by Allison Sommer</span></div></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-3373159664289096624?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/learn-with-google-webinar-vod-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build awesome YouTube experiences with new APIs and tools</title>
		<link>https://googledata.org/youtube/build-awesome-youtube-experiences-with-new-apis-and-tools/</link>
		<comments>https://googledata.org/youtube/build-awesome-youtube-experiences-with-new-apis-and-tools/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 21:13:00 +0000</pubDate>
		<dc:creator><![CDATA[Amanda Surya]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[Youtube API]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube docs]]></category>
		<category><![CDATA[youtube integration]]></category>
		<category><![CDATA[youtube video]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=319a23ef878d06f387101648251f82ab</guid>
		<description><![CDATA[<b><span>When we introduced the </span><a href="http://youtube-global.blogspot.com/2005/10/its-been-awhile-since-our-last-update.html"><span>first YouTube API</span></a><span> in 2005, we knew that it would be developers who would help us grow YouTube as a platform for connecting the world through video. At this year&#8217;s Google I/O, we&#8217;re continuing on with that mission through an </span><a href="https://developers.google.com/events/io/sessions#youtube"><span>entire track dedicated to YouTube</span></a><span>, where we&#8217;re announcing new APIs and developer tools, as </span><br /><span>well as a showcase of some of the most innovative apps built with YouTube.</span><br /><span></span><br /><span>Make mobile video shine</span><br /><span>With mobile video now making up as much as </span><a href="http://www.cisco.com/en/US/solutions/collateral/ns341/ns525/ns537/ns705/ns827/white_paper_c11-520862.html"><span>half of all mobile traffic</span></a><span>, your mobile experience needs video that&#8217;s high quality, fast and sleek. We want to give you the best tools to build these experiences, so we&#8217;re previewing the new </span><a href="https://developers.google.com/events/io/sessions/gooio2012/120/"><span>YouTube Android Player API</span></a><span> for high-quality and fluid video playback. </span><br /><span></span><br /><span>Engage with your communities through video</span><br /><span>The next generation of </span><a href="https://developers.google.com/youtube/ytdirect"><span>YouTube Direct</span></a><span> allows you to engage with your community by having them submit videos which you can then feature in playlists. YouTube Direct Lite is implemented in client-side JavaScript using </span><a href="http://apiblog.youtube.com/2012/05/unlocking-javascripts-potential-with.html"><span>CORS</span></a><span>, and does not require any server-side deployments&#8212;adding it to your site is as simple as adding an </span></b><br /><b><span><br /></span></b><br /><div><a href="https://developers.google.com/youtube/images/ytd_dailynews1.png"><img border="0" height="205" src="https://developers.google.com/youtube/images/ytd_dailynews1.png" width="400"></a></div><b><span><br /></span></b><br /><b><span><br /></span></b><br /><b><span>MMMmmm...data!</span><span>Retrieving analytics data for your videos used to mean downloading an archive of CSV files that you then had to process. Now, you can use our new <a href="https://developers.google.com/youtube/analytics/index">YouTube Analytics API</a> to build custom tools for your data. It's a RESTful web service that gives you the freedom to request customized reports containing only the data you care about. We&#8217;re also giving the <a href="https://developers.google.com/youtube/v3/">YouTube Data API</a> a facelift with new features like universal search and updated client libraries in 8 different languages.</span><span></span><br /><span></span><br /><span>Play, watch and learn from developers like you at Google I/O</span><br /><span></span><br /><span>We&#8217;ll be talking about these new features and other developer tools at Google I/O this week, so check out our </span><a href="https://developers.google.com/events/io/sessions#youtube"><span>sessions</span></a><span> and </span><a href="https://developers.google.com/events/io/code-labs"><span>codelabs</span></a><span>, download the official </span><a href="https://play.google.com/store/apps/details?id=com.google.android.apps.iosched"><span>Google I/O app</span></a><span>, and follow online at developers.google.com/io. At I/O you can also visit with Developer Sandbox companies like </span><a href="http://flipboard.com/"><span>Flipboard</span></a><span>, </span><a href="http://game.dudeperfect.com/"><span>Dude Perfect</span></a><span> and </span><a href="http://www.sonydadc.com/en/"><span>SONY PlayStation @ Home</span></a><span> who are building awesome experiences with YouTube APIs. We&#8217;ll also share our sessions on the </span><a href="http://www.youtube.com/googledevelopers"><span>Google Developers YouTube Channel</span></a><span>, and you can always find us on </span><a href="https://plus.google.com/100270142261733078201/posts"><span>Google+</span></a><span> and our </span><a href="https://developers.google.com/youtube/forum/discussion"><span>developer forum</span></a><span>.</span><br /><span></span><br /><span>Cheers,</span><br /><span>&#8212;Amanda Surya, YouTube API Team</span></b>]]></description>
				<content:encoded><![CDATA[<b id="internal-source-marker_0.45646627456881106" style="font-weight: normal;"><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">When we introduced the </span><a href="http://youtube-global.blogspot.com/2005/10/its-been-awhile-since-our-last-update.html"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">first YouTube API</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> in 2005, we knew that it would be developers who would help us grow YouTube as a platform for connecting the world through video. At this year’s Google I/O, we’re continuing on with that mission through an </span><a href="https://developers.google.com/events/io/sessions#youtube"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">entire track dedicated to YouTube</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, where we’re announcing new APIs and developer tools, as </span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">well as a showcase of some of the most innovative apps built with YouTube.</span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">Make mobile video shine</span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">With mobile video now making up as much as </span><a href="http://www.cisco.com/en/US/solutions/collateral/ns341/ns525/ns537/ns705/ns827/white_paper_c11-520862.html"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">half of all mobile traffic</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, your mobile experience needs video that’s high quality, fast and sleek. We want to give you the best tools to build these experiences, so we’re previewing the new </span><a href="https://developers.google.com/events/io/sessions/gooio2012/120/"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">YouTube Android Player API</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> for high-quality and fluid video playback. </span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">Engage with your communities through video</span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">The next generation of </span><a href="https://developers.google.com/youtube/ytdirect"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">YouTube Direct</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> allows you to engage with your community by having them submit videos which you can then feature in playlists. YouTube Direct Lite is implemented in client-side JavaScript using </span><a href="http://apiblog.youtube.com/2012/05/unlocking-javascripts-potential-with.html"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">CORS</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, and does not require any server-side deployments—adding it to your site is as simple as adding an </span></b><br /><b style="font-weight: normal;"><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"><br /></span></b><br /><div class="separator" style="clear: both; text-align: center;"><a href="https://developers.google.com/youtube/images/ytd_dailynews1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="205" src="https://developers.google.com/youtube/images/ytd_dailynews1.png" width="400" /></a></div><b style="font-weight: normal;"><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"><br /></span></b><br /><b style="font-weight: normal;"><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"><br /></span></b><br /><b id="internal-source-marker_0.45646627456881106" style="font-weight: normal;"><span style="background-color: transparent; font-family: Arial; font-size: 13px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">MMMmmm...data!</span><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Retrieving analytics data for your videos used to mean downloading an archive of CSV files that you then had to process. Now, you can use our new <a href="https://developers.google.com/youtube/analytics/index">YouTube Analytics API</a> to build custom tools for your data. It's a RESTful web service that gives you the freedom to request customized reports containing only the data you care about. We’re also giving the <a href="https://developers.google.com/youtube/v3/">YouTube Data API</a> a facelift with new features like universal search and updated client libraries in 8 different languages.</span><span style="background-color: transparent; font-family: Arial; font-size: 13px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; font-weight: bold; vertical-align: baseline; white-space: pre-wrap;">Play, watch and learn from developers like you at Google I/O</span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">We’ll be talking about these new features and other developer tools at Google I/O this week, so check out our </span><a href="https://developers.google.com/events/io/sessions#youtube"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">sessions</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> and </span><a href="https://developers.google.com/events/io/code-labs"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">codelabs</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, download the official </span><a href="https://play.google.com/store/apps/details?id=com.google.android.apps.iosched"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Google I/O app</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, and follow online at developers.google.com/io. At I/O you can also visit with Developer Sandbox companies like </span><a href="http://flipboard.com/"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Flipboard</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, </span><a href="http://game.dudeperfect.com/"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Dude Perfect</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> and </span><a href="http://www.sonydadc.com/en/"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">SONY PlayStation @ Home</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> who are building awesome experiences with YouTube APIs. We’ll also share our sessions on the </span><a href="http://www.youtube.com/googledevelopers"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Google Developers YouTube Channel</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">, and you can always find us on </span><a href="https://plus.google.com/100270142261733078201/posts"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Google+</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"> and our </span><a href="https://developers.google.com/youtube/forum/discussion"><span style="background-color: transparent; color: #1155cc; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">developer forum</span></a><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">.</span><br /><span style="background-color: transparent; font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;"></span><br /><span style="font-family: Arial; font-size: 13px; vertical-align: baseline; white-space: pre-wrap;">Cheers,</span><br /><span style="font-family: Arial; font-size: 13px; font-style: italic; vertical-align: baseline; white-space: pre-wrap;">—Amanda Surya, YouTube API Team</span></b>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/build-awesome-youtube-experiences-with-new-apis-and-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Video Stabilization on YouTube</title>
		<link>https://googledata.org/youtube/video-stabilization-on-youtube/</link>
		<comments>https://googledata.org/youtube/video-stabilization-on-youtube/#comments</comments>
		<pubDate>Fri, 04 May 2012 20:44:00 +0000</pubDate>
		<dc:creator><![CDATA[Research @ Google]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=ec7bd0164b636e64bfdf86b70a3dcc85</guid>
		<description><![CDATA[Posted by Matthias Grundmann, Vivek Kwatra, and Irfan Essa, Research at Google  One thing we have been working on within Research at Google is developing methods for making casual videos look more professional, thereby providing users with a better vie...]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Matthias Grundmann, Vivek Kwatra, and Irfan Essa, Research at Google</span>  <br /><br />One thing we have been working on within Research at Google is developing methods for making casual videos look more professional, thereby providing users with a better viewing experience. Professional videos have several characteristics that differentiate them from casually shot videos. For example, in order to tell a story, cinematographers carefully control lighting and exposure and use specialized equipment to plan camera movement.<br /><br />We have developed a technique that mimics professional camera moves and applies them to videos recorded by hand-held devices. Cinematographers use specialized equipment such as tripods and dollies to plan their camera paths and hold them steady. In contrast, think of a video you shot using a mobile phone camera. How steady was your hand and were you able to anticipate an interesting moment and smoothly pan the camera to capture that moment? To bridge these differences, we propose an algorithm that automatically determines the best camera path and recasts the video as if it were filmed using stabilization equipment. Specifically, we divide the original, shaky camera path into a set of segments, each approximated by either a constant, linear or parabolic motion of the camera. Our optimization finds the best of all possible partitions using a computationally efficient and stable algorithm. For details, check out our <a href="http://googleresearch.blogspot.com/2011/06/auto-directed-video-stabilization-with.html">earlier blog post</a> or read our paper, <a href="http://research.google.com/pubs/pub37041.html"><i>Auto-Directed Video Stabilization with Robust L1 Optimal Camera Paths</i></a>, published in <a href="http://www.cvpr2011.org/">IEEE CVPR 2011</a>.<br /><br />The next time you upload your videos to YouTube, try stabilizing them by going to the <a href="http://www.youtube.com/editor">YouTube editor </a>or directly from the <a href="http://www.youtube.com/my_videos">video manager</a> by clicking on Edit-&gt;Enhancements. For even more convenience, YouTube will automatically detect if your video needs stabilization and offer to do it for you. Many videos on YouTube have already been enhanced using this technology.<br /><br />More recently, we have been working on a related problem common in videos shot from mobile phones. The camera sensors in these phones contain what is known as an electronic rolling shutter. When taking a picture with a rolling shutter camera, the image is not captured instantaneously. Instead, the camera captures the image one row of pixels at a time, with a small delay when going from one row to the next. Consequently, if the camera moves during capture, it will cause image distortions ranging from shear in the case of low-frequency motions (for instance an image captured from a driving car) to wobbly distortions in the case of high-frequency perturbations (think of a person walking while recording video). These distortions are especially noticeable in videos where the camera shake is independent across frames. For example, take a look at the video below.<br /><br /><iframe allowfullscreen="" frameborder="0" height="360" src="http://www.youtube.com/embed/627MqC6E5Yo" width="480"></iframe><br /><div style="text-align: center;"><b>Original video with rolling shutter distortions</b></div><br /><br />In our recent paper titled <a href="http://research.google.com/pubs/pub37744.html"><i>Calibration-Free Rolling Shutter Removal</i></a>, which was awarded the <b>best paper</b> at <a href="http://research.microsoft.com/en-us/um/redmond/events/iccp2012/">IEEE ICCP 2012</a>, we demonstrate a solution to correct these rolling shutter distortions in videos. A significant feature of our approach is that it does not require any knowledge of the camera used to shoot the video. The time delay in capturing two consecutive rows that we mention above is in fact different for every camera and affects the extent of distortions. Having knowledge of this delay parameter can be useful, but difficult to obtain or estimate via calibration. Imagine a video that is already uploaded to YouTube -- it will be challenging to obtain this parameter! Instead, we show that just the visual data in the video has enough information to appropriately describe and compensate for the distortions caused by the camera motion, even in the presence of a rolling shutter. For more information, see the<a href="http://www.youtube.com/watch?v=_Pr_fpbAok8"> narrated video description</a> of our paper.<br /><br />This technique is already integrated with the <a href="http://www.youtube.com/editor">YouTube stabilizer</a>. Starting today, if you stabilize a video from a mobile phone or other rolling shutter cameras, we will also automatically compensate for rolling shutter distortions. To see our technique in action, check out the video below, obtained after applying rolling shutter compensation and stabilization to the one above.<br /><br /><iframe allowfullscreen="" frameborder="0" height="360" src="http://www.youtube.com/embed/ATOrwKoREuQ" width="480"></iframe><br /><div style="text-align: center;"><b>After stabilization and rolling shutter removal</b><br /><br /><br /></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21224994-2156342436149067159?l=googleresearch.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/video-stabilization-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Gamification for Improved Search Ranking for YouTube Topics</title>
		<link>https://googledata.org/uncategorized/gamification-for-improved-search-ranking-for-youtube-topics/</link>
		<comments>https://googledata.org/uncategorized/gamification-for-improved-search-ranking-for-youtube-topics/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 22:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Research @ Google]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=adf44944f725e00ab4f1b8cfb6deccb1</guid>
		<description><![CDATA[Posted by Charles DuHadway and Sanketh Shetty, Google Research In earlier posts we discussed automatic ways to find the most talented emerging singers and the funniest videos using the YouTube Slam experiment. We created five “house” slams -- music...]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Charles DuHadway and Sanketh Shetty, Google Research</span> <br /><br /><a href="http://googleresearch.blogspot.com/2012/02/quantifying-comedy-on-youtube-why.html">In earlier posts</a> we discussed automatic ways to find the most talented emerging singers and the funniest videos using the <a href="http://www.youtube.com/slam" >YouTube Slam</a> experiment. We created five “house” slams -- music, dance, comedy, bizarre, and cute -- which produce a weekly leaderboard not just of videos but also of YouTubers who are great at predicting what the masses will like. For example, last week’s cute slam winning <a href="http://www.youtube.com/watch?v=zncU_yBU-8E" >video</a> claims to be the cutest kitten in the world, beating out four other kittens, two puppies, three toddlers and an amazing duck who feeds the fish. With a whopping 620 slam points, YouTube user <a href="http://www.youtube.com/user/emoatali99" >emoatali99</a> was our best connoisseur of cute this week. On the music side, it is no surprise that many of music slam’s top 10 videos were Adele covers. A <a href="http://www.youtube.com/watch?v=HwriR7PXBvc" >Whitney Houston cover</a> came out at the top this week, and music slam’s resident expert on talent had more than a thousand slam points. Well done! Check out the rest of the leaderboards for <a href="http://youtube.com/slam/cute" >cute slam</a> and <a href="http://youtube.com/slam/music" >music slam</a>.<br /><br />Can slam-style game mechanics incentivize our users to help improve the ranking of videos -- not just for these five house slams -- but for millions of other search queries and topics on YouTube? <a href="http://en.wikipedia.org/wiki/Gamification" >Gamification</a> has previously been used to incentivize users to participate in non-game tasks such as image labeling and music tagging. How many votes and voters would we need for slam to do better than the existing ranking algorithm for topic search on YouTube? <br /><br />As an experiment, we created new slams for a small number of YouTube topics (such as <a href="http://www.youtube.com/slam/custom/topic/latteart/vote" >Latte Art Slam</a> and <a href="http://www.youtube.com/slam/custom/topic/speedpainting/vote" >Speed Painting Slam</a>) using existing top 20 videos for these topics as the candidate pool. As we accumulated user votes, we evaluated the resulting YouTube Slam leaderboard for that topic vs the existing ranking on <a href="http://youtube.com/topics">youtube.com/topics</a> (baseline). Note that both the slam leaderboard and the baseline had the same set of videos, just in a different order.<br /><br />What did we discover? It was no surprise that slam ranking performance had a high variance in the beginning and gradually improved as votes accumulated. We are happy to report that four of five topic slams converged within 1000 votes with a better leaderboard ranking than the existing YouTube topic search. In spite of small number of voters, Slam achieves better ranking partly because of gamification incentives and partly because it is based on machine learning, using:<br /><br /><ol><li>Preference judgement over a pair, not absolute judgement on a single video, and,</li><br /><li>Active solicitation of user opinion as opposed to passive observation. Due to what is called a “<a href="http://en.wikipedia.org/wiki/Cold_start" >cold start</a>” problem in data modeling, conventional (passive observation) techniques don’t work well on new items with little prior information. For any given topic, Slam’s improvement over the baseline in ranking of the “recent 20” set of videos was in fact better than the improvement in ranking of the “top 20” set.</li></ol><br />Demographics and interests of the voters do affect slam leaderboard ranking, especially when the voter pool is small. An example is a <a href="http://www.youtube.com/slam/custom/featuredslam/valentine/vote" >Romantic Proposals Slam</a> we featured on Valentine’s day last month. Men thought <a href="http://www.youtube.com/watch?v=q6SsQ0cAI8Y" >this</a> proposal during a Kansas City Royals game was the most romantic, although <a href="http://www.youtube.com/watch?v=hya9xxn7CA0" >this</a> one where the man pretends to fall off a building came close. On the other hand, women rated <a href="http://www.youtube.com/watch?v=yaAhxg4Lz0A" >this</a> meme proposal in a restaurant as the best, followed by <a href="http://www.youtube.com/watch?v=38GZtp333GY" >this</a> movie theater proposal.<br /><br />Encouraged by these results, we will soon be exploring slams for a few thousand topics to evaluate the utility of gamification techniques to YouTube topic search. Here are some of them:&nbsp;<a href="http://www.youtube.com/slam/custom/topic/chocolatebrownie/vote" >Chocolate Brownie</a>,&nbsp;<a href="http://www.youtube.com/slam/custom/topic/paperplane/vote" >Paper Plane</a>,&nbsp;<a href="http://www.youtube.com/slam/custom/topic/bushflying/vote" >Bush Flying</a>,&nbsp;<a href="http://www.youtube.com/slam/custom/topic/stealthtechnology/vote" >Stealth Technology</a>,&nbsp;<a href="http://www.youtube.com/slam/custom/topic/stencilgraffiti/vote" >Stencil Graffiti</a>,&nbsp;<a href="http://www.youtube.com/slam/custom/topic/yosemitenationalpark/vote" >Yosemite National Park</a>, and&nbsp;<a href="http://www.youtube.com/slam/custom/topic/stealthtechnology/vote" >Stealth Technology</a>.<br /><br />Have fun slamming!<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21224994-7250052343060974132?l=googleresearch.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/uncategorized/gamification-for-improved-search-ranking-for-youtube-topics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quantifying comedy on YouTube: why the number of o’s in your LOL matter</title>
		<link>https://googledata.org/youtube/quantifying-comedy-on-youtube-why-the-number-of-o%e2%80%99s-in-your-lol-matter/</link>
		<comments>https://googledata.org/youtube/quantifying-comedy-on-youtube-why-the-number-of-o%e2%80%99s-in-your-lol-matter/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 15:30:00 +0000</pubDate>
		<dc:creator><![CDATA[Research @ Google]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=aabe4c94b94c153920d6f31370201747</guid>
		<description><![CDATA[Posted by Sanketh Shetty, YouTube Slam Team, Google Research&#160;In a previous post, we talked about quantification of musical talent using machine learning on acoustic features for YouTube Music Slam. We wondered if we could do the same for funny vid...]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Sanketh Shetty, YouTube Slam Team, Google Research&nbsp;</span><br /><br />In a previous <a href="http://googleresearch.blogspot.com/2011/11/discovering-talented-musicians-with.html">post</a>, we talked about quantification of musical talent using machine learning on acoustic features for <a href="http://www.youtube.com/slam/music" >YouTube Music Slam</a>. We wondered if we could do the same for funny videos, i.e. answer questions such as: is a video funny, how funny do viewers think it is, and why is it funny? We noticed a few audiovisual patterns across comedy videos on YouTube, such as shaky camera motion or audible laughter, which we can automatically detect.  While content-based features worked well for music, identifying humor based on just such features is <a href="http://en.wikipedia.org/wiki/AI-complete" >AI-Complete</a>.&nbsp;Humor preference is subjective, perhaps even more so than musical taste.<br /><br />&nbsp;Fortunately, at YouTube, we have more to work with. We focused on videos uploaded in the comedy category. We captured the uploader’s belief in the funniness of their video via features based on title, description and tags. Viewers’ reactions, in the form of comments, further validate a video’s comedic value. To this end we computed more text features based on words associated with amusement in comments. These included (a) sounds associated with laughter such as hahaha, with culture-dependent variants such as hehehe, jajaja, kekeke, (b)  web acronyms such as lol, lmao, rofl, (c) funny and synonyms of funny, and (d) emoticons such as :), ;-), xP. We then trained classifiers to identify funny videos and then tell us why they are funny by categorizing them into genres such as “funny pets”, “spoofs or parodies”, “standup”, “pranks”, and “funny commercials”.<br /><br />&nbsp;Next we needed an algorithm to rank these funny videos by comedic potential, e.g. is “<a href="http://www.youtube.com/watch?v=_OBlgSz8sSM" >Charlie bit my finger</a>” funnier than “<a href="http://www.youtube.com/watch?v=txqiwrbYGrs" >David after dentist</a>”? Raw viewcount on its own is insufficient as a ranking metric since it is biased by video age and exposure. We noticed that viewers emphasize their reaction to funny videos in several ways: e.g. capitalization (LOL), elongation (loooooool), repetition (lolololol), exclamation (lolllll!!!!!), and combinations thereof. If a user uses an “loooooool” vs an “loool”, does it mean they were more amused? We designed features to quantify the degree of emphasis on words associated with amusement in viewer comments. We then trained a passive-aggressive ranking algorithm using human-annotated pairwise ground truth and a combination of text and audiovisual features. Similar to Music Slam, we used this ranker to populate candidates for human voting for our Comedy Slam.<br /><br />&nbsp;So far, more than 75,000 people have cast more than 700,000 votes, making comedy our most popular slam category. <a href="http://www.youtube.com/slam/comedy/vote" >Give it a try</a>!<br /><br />Further reading:<br /><ol><li>“<a href="http://www.cs.cornell.edu/home/llee/omsa/omsa.pdf" >Opinion Mining and Sentiment Analysis</a>,” by Bo Pang and Lillian Lee.&nbsp;</li><li>“<a href="http://www.cs.huji.ac.il/~arir/10-sarcasmAmazonICWSM10.pdf" >A Great Catchy Name: Semi-Supervised Recognition of Sarcastic Sentences in Online Product Reviews</a>,” by Oren Tsur, Dmitry Davidov, and Ari Rappoport.&nbsp;</li><li>“<a href="http://www.aclweb.org/anthology/P/P11/P11-2016.pdf" >That’s What She Said: Double Entendre Identiﬁcation</a>,” by Chloe Kiddon and Yuriy Brun.</li></ol><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21224994-5132257301011581365?l=googleresearch.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/quantifying-comedy-on-youtube-why-the-number-of-o%e2%80%99s-in-your-lol-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opening up a world of educational content with YouTube for Schools</title>
		<link>https://googledata.org/youtube/opening-up-a-world-of-educational-content-with-youtube-for-schools/</link>
		<comments>https://googledata.org/youtube/opening-up-a-world-of-educational-content-with-youtube-for-schools/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 04:47:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Students]]></dc:creator>
				<category><![CDATA[Google Student Blog]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[google student]]></category>
		<category><![CDATA[students]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2483ac2678a5792feb81446c1990039f</guid>
		<description><![CDATA[Cross-posted from the YouTube BlogWhen I was in school during the 90s, watching videos in the classroom was a highlight of any week. The teacher would roll in a television on a cart, pop in a VHS tape, and then we’d enjoy whatever scratchy science vi...]]></description>
				<content:encoded><![CDATA[<i>Cross-posted from the <a href="http://youtube-global.blogspot.com/">YouTube Blog</a></i><br /><br /><div dir="ltr" style="text-align: left;" trbidi="on">When I was in school during the 90s, watching videos in the classroom was a highlight of any week. The teacher would roll in a television on a cart, pop in a VHS tape, and then we’d enjoy whatever scratchy science video my teacher had checked out from the school video library that week. Sight, sound and motion have always had the power to engage students and complement classroom instruction by bringing educational topics to life.<br /><br />We’ve been hearing from teachers that they want to use the vast array of educational videos on YouTube in their classrooms, but are concerned that students will be distracted by the latest music video or cute cat, or a video that wasn’t appropriate for students. While schools that restrict access to YouTube may solve this distraction concern, they also limit access to hundreds of thousands of educational videos on YouTube that could help bring <a href="http://www.youtube.com/user/edupartnerplaylists#g/c/DE777A0656798CA7">photosynthesis</a> to life, or show what life was like in <a href="http://www.youtube.com/user/edupartnerplaylists#g/c/321971221CC04FF8" >ancient Greece</a>. <br /><br />To address this issue, we’ve developed <a href="http://www.youtube.com/schools?feature=inp-bl-paq" >YouTube for Schools</a>, a network setting that school administrators can turn on to grant access only to the educational content from YouTube EDU. Teachers can choose from the hundreds of thousands of videos on <a href="http://www.youtube.com/education" >YouTube EDU</a> created by more than 600 partners like the <a href="http://www.youtube.com/smithsonian" >Smithsonian</a>, <a href="http://www.youtube.com/ted" >TED</a>, <a href="http://www.youtube.com/user/Stevespanglerscience?feature=chclk" >Steve Spangler Science</a>, and <a href="http://www.youtube.com/numberphile" >Numberphile</a>.<br /><div style="text-align: center;"><br /></div><div style="text-align: center;"><iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/NegRGfGYOwQ" width="560"></iframe></div><br />We know how busy teachers are, and that searching through thousands of videos sounds like a daunting visit to the world’s largest library, so we’ve also worked with teachers to put together more than 300 playlists broken out by subject -- Math, Science, Social Studies, and English Language Arts -- and by grade level. Teachers can find them listed out at <a href="http://youtube.com/teachers?feature=inp-bl-paq" >youtube.com/teachers</a>. Of course, this list wouldn’t be complete without your input -- teachers, what videos do you use in your classroom? Suggest your own education playlist <a href="http://www.youtube.com/teachers" >here</a>.<br /><br /><a href="http://www.youtube.com/schools?feature=inp-bl-paq" >YouTube for Schools</a> is just the latest initiative in our ongoing attempts to make YouTube a truly valuable educational resource, and to inspire learners around the world with programs like <a href="http://www.youtube.com/spacelab" >YouTube Space Lab</a>. So how do you get started? To join YouTube for Schools or learn more about the program, head on over to <a href="http://www.youtube.com/schools?feature=inp-bl-paq" >www.youtube.com/schools</a>.<br /><br /><i>Brian Truong, Product Manager, recently watched “<a href="http://www.youtube.com/watch?v=PXb2sXgZ8uM" >The Challenges of Getting to Mars: Transporting a Mars Rover</a>.”</i></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8878620400258430757-7854248281910933548?l=googleforstudents.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/opening-up-a-world-of-educational-content-with-youtube-for-schools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube and TV: better together</title>
		<link>https://googledata.org/google-adwords/youtube-and-tv-better-together/</link>
		<comments>https://googledata.org/google-adwords/youtube-and-tv-better-together/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 18:37:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdWords crew]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>
		<category><![CDATA[tv ads]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=2856635b8a6778f21b465014ad1752ad</guid>
		<description><![CDATA[Each day, people watch more than 3 billion videos on YouTube - the equivalent of every American watching about 9 videos a day. U.S. online consumers now spend as much time online as they spend watching TV. With the consumer shift to online media consum...]]></description>
				<content:encoded><![CDATA[<div style="background-color: transparent; "><span class="Apple-style-span"  ><span id="internal-source-marker_0.6927932149264961" style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Each day, people watch more than 3 billion videos on YouTube - the equivalent of every American watching about 9 videos a day. U.S. online consumers now spend </span><a href="http://www.forrester.com/rb/Research/understanding_changing_needs_of_us_online_consumer,/q/id/57861/t/2"><span style="color: rgb(0, 0, 153); background-color: transparent; vertical-align: baseline; white-space: pre-wrap; ">as much time online</span></a><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> as they spend watching TV. With the consumer shift to online media c</span>onsumption, many of our advertisers wonder how online video ads measure against traditional TV ads. Do traditional and new media ads complement each other? Which format drives recall most effectively?</span></div><span class="Apple-style-span"  ><span><span><br />To get answers, we partnered with Ipsos to measure the relative and combined effects of YouTube in-stream ads and TV ads on ad recall and brand metrics across six advertiser campaigns.<br /><br />After conducting tests of 15- and 30-second spots on YouTube pre-roll instream ads and TV ads, the results revealed that YouTube and TV ads work better together. People who watched both YouTube and TV ads showed a 2X increase in brand recall than people who only saw TV ads. Those that </span></span><span><span>only watched a YouTube ad had a brand recall rate 1.5X those who only watched a TV ad. </span></span></span><div><span><span><span class="Apple-style-span"  ><br /></span></span></span><div style="background-color: transparent; "><div style="text-align: center; "><span class="Apple-style-span"  ><img src="https://lh5.googleusercontent.com/o6O-2ZWXmZO5S-qIIiTVn2zUSYvVchtoYj4YFbNlBd4y6v5u0pBR_M_kD_SgjqEKOqnxZlcAL51B--4Wpy2KbNdS6Rlwan8pfsvd9oVWFTFTD1JffZE" width="372px;" height="419px;" /></span></div><span class="Apple-style-span"  ><span style="text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: transparent; background-color: transparent;"></span><span style="text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: transparent; background-color: transparent;"></span><br /><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Hotels.com, one of the advertisers that participated in the study, uses YouTube video ads to drive incremental reach for TV campaigns. "Our customers are online today, so it only makes sense for e-commerce brands like Hotels.com to find entertaining and engaging online formats to interact with our audience," says Vic Walia, senior director of brand marketing for Hotels.com. "YouTube video ads is a great distribution vehicle for us to efficiently maximize our reach, but the fact that is has the added impact of improving our overall ad recall metrics is a tremendous win."</span><br /><span style="text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: transparent; background-color: transparent;"></span><br /><span style="background-color: rgb(255, 255, 255); text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">This study comes on the heels of our multi-screen research, which found that brand recall </span><a href="http://googlemobileads.blogspot.com/2011/09/better-together-new-insights-on-display.html"><span style="color: rgb(0, 0, 153); background-color: rgb(255, 255, 255); vertical-align: baseline; white-space: pre-wrap; ">jumps dramatically</span></a><span style="background-color: rgb(255, 255, 255); text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> for consumers shown ads across all screens - TV, PC, smartphone and tablet devices. As more people consume media across multiple devices, having a multi-channel campaign strategy helps reach consumers at different points </span><a href="http://googlemobileads.blogspot.com/2011/09/new-search-data-reveal-that-when-sun.html"><span style="color: rgb(0, 0, 153); background-color: rgb(255, 255, 255); vertical-align: baseline; white-space: pre-wrap; ">throughout the day</span></a><span style="background-color: rgb(255, 255, 255); text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">.</span><br /><span style="text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: transparent; background-color: transparent;"></span><br /><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">To learn more about our study, download the infographic and slides from </span><a href="http://www.thinkwithgoogle.com/insights/featured/better-together-tv-youtube/"><span style="color: rgb(0, 0, 153); background-color: transparent; vertical-align: baseline; white-space: pre-wrap; ">Think Insights</span></a><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> or check out our </span><a href="http://www.youtube.com/watch?v=ncpOdegOg38"><span style="color: rgb(0, 0, 153); background-color: transparent; vertical-align: baseline; white-space: pre-wrap; ">video</span></a><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">. And, when planning your media buys, consider using a combination of YouTube ads and TV ads to help you achieve higher ad recall than TV ads alone. You can find out more information about YouTube video ads </span><a href="http://www.youtube.com/advertise/video-ads.html"><span style="color: rgb(0, 0, 153); background-color: transparent; vertical-align: baseline; white-space: pre-wrap; ">here</span></a><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">.</span><br /><span style="text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: transparent; background-color: transparent;"></span><br /><span style="background-color: transparent; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Posted by Lizzy Van Alstine &amp; Christina Park, Google Research and Marketing</span></span></div></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-8466663078637366023?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/youtube-and-tv-better-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More ways to reach your audience with YouTube mobile ads</title>
		<link>https://googledata.org/google-adwords/more-ways-to-reach-your-audience-with-youtube-mobile-ads/</link>
		<comments>https://googledata.org/google-adwords/more-ways-to-reach-your-audience-with-youtube-mobile-ads/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 20:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdWords crew]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=1de5f3d4737dd4dab82d24b42effdfe5</guid>
		<description><![CDATA[There’s no debate that the world is going mobile. Mobile web searches have grown five times over the past two years. YouTube mobile now gets more than 400 million views a day, representing 13 percent of our total daily views.For advertisers, this ope...]]></description>
				<content:encoded><![CDATA[<br />There’s no debate that the world is going mobile. Mobile web searches have grown five times over the past two years. YouTube mobile now gets more than 400 million views a day, representing 13 percent of our total daily views.<br /><br />For advertisers, this opens up more opportunities to reach customers. And in some cases, it can amplify existing campaigns. In a recent study conducted with Nielsen research, we found that promotions perform <a href="http://google-cpg.blogspot.com/2011/10/better-together-new-insights-on-display.html">better together</a> when displayed across multiple screens. In fact, brand recall jumps dramatically to 74 percent for people who saw ads across TV, PC, smartphone and tablets, up from 50 percent for those who saw ads only on TV.<br /><br />Here are a few ways you can extend your mobile reach with YouTube:<br /><br /><b>YouTube’s Promoted Video ads on mobile</b><br /><br />Do you use Promoted Video ads to reach viewers searching for relevant products and potential customers browsing videos on YouTube.com? You can also use Promoted Videos to reach viewers on the go. <a href="http://www.youtube.com/advertise/promoted.html">Promoted Videos</a> are featured at the top of the video search results on m.youtube.com, YouTube’s mobile platform.<br /><br />Advertisers pay only when the viewer chooses to watch the video, and all mobile and desktop view counts are summarized into one complete view count on your channel page. Mobile Promoted Video ads are auction-based campaigns that can be managed in your Google AdWords account. All Google AdWords campaigns are opted into “all devices” by default, but creating separate mobile campaigns helps optimize your mobile advertising efforts and the performance of your brand channel.<br /><br /><div style="text-align: center;"><a href="http://2.bp.blogspot.com/-vV1eBc9QVo0/TsQWEP8WpZI/AAAAAAAAAEU/eNr5J5ldlnY/s1600/cqoDnjZUdX-KQxx9-vrhJFFxrtTgeUSHJafzrRIIIVrJugV2CuqUOIIA1NauFSyt-NF5-pXW_QT15D0J24CuojBQWSRFRZtYaGLutX7vcsoUgyUzk4A.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://2.bp.blogspot.com/-vV1eBc9QVo0/TsQWEP8WpZI/AAAAAAAAAEU/eNr5J5ldlnY/s320/cqoDnjZUdX-KQxx9-vrhJFFxrtTgeUSHJafzrRIIIVrJugV2CuqUOIIA1NauFSyt-NF5-pXW_QT15D0J24CuojBQWSRFRZtYaGLutX7vcsoUgyUzk4A.png" width="185" /></a></div><div style="text-align: center;"><i><span class="Apple-style-span" style="font-size: x-small;">A Promoted Video ad on <a href="http://m.youtube.com/">m.youtube.com</a>&nbsp;includes an ad thumbnail, title and channel name; similar to the organic video results.</span></i></div><br />Promoted Video ads have recently joined YouTube’s family of <a href="http://www.youtube.com/advertise/trueview.html">TrueView ad formats</a>. Soon, your Promoted Video ads will become <b>TrueView in-search ads</b> and <b>TrueView in-display ads</b>. <b>TrueView in-search ads</b> show up in display ad units against search results on YouTube, whereas <b>TrueView in-display ads</b> show up in display ad units against suggested videos on YouTube and across website content on the Google Display Network. These TrueView video ads can be set up and managed in any Google AdWords for video account and purchased on a cost-per-view basis.<br /><br /><b>YouTube mobile in-stream ads</b><br /><br />YouTube mobile in-stream ads are 15-second pre-roll ads that appear before the video begins to play. Similar to your desktop experience, mobile in-stream ads may show before videos produced by YouTube partners. In addition to the Android YouTube app, in-stream ads are also available to viewers accessing <a href="http://m.youtube.com/">m.youtube.com</a> from their iPhone.<br /><br />You can optimize your mobile in-stream ads to reach specific audiences, locations and content. In-stream ads are priced on a CPM basis and can be arranged via ad reservation through your Google sales representative.<br /><br /><div style="text-align: center;"><a href="http://1.bp.blogspot.com/-KAOjsSOy2WE/TsQWDx1pTuI/AAAAAAAAAEM/IhPSv0njza8/s1600/Y2VUPqG4pqTWTDeMsTWXxe9ZZJiPSJR8Yt4FsYRZmAsO9u7rHwqRtZn2KqfCPGPDOBXkid3Y_iKh2yUYwM8NVZwvnHbNulVnQ9lVFCWYCeDFz60xOJ8.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://1.bp.blogspot.com/-KAOjsSOy2WE/TsQWDx1pTuI/AAAAAAAAAEM/IhPSv0njza8/s320/Y2VUPqG4pqTWTDeMsTWXxe9ZZJiPSJR8Yt4FsYRZmAsO9u7rHwqRtZn2KqfCPGPDOBXkid3Y_iKh2yUYwM8NVZwvnHbNulVnQ9lVFCWYCeDFz60xOJ8.png" width="164" /></a></div><div style="text-align: center;"><i><span class="Apple-style-span" style="font-size: x-small;">Animal Planet used mobile in-stream ads to promote the new season of River Monsters.</span></i></div><br /><b>YouTube mobile roadblocks</b><br /><br /><a href="http://static.googleusercontent.com/external_content/untrusted_dlcp/www.youtube.com/en/us/advertise/content/onesheet-mobile.pdf">YouTube Mobile roadblocks</a> give brands 100% share of voice on the YouTube home, browse and search pages on <a href="http://m.youtube.com/">m.youtube.com</a>. According to recent Nielsen data, these roadblocks add 17 percent incremental impressions for advertisers.<br /><br /><div style="text-align: center;"><a href="http://4.bp.blogspot.com/-noY6D8LRXjU/TsQWDlmGP0I/AAAAAAAAAEE/S1ML59zbRSk/s1600/4vbeUgFrMXUBWSgKHk5c77EI5Vt3v7aUe2p4W78EgRV-XT1Ue464Z6RaxckCOKL7fnkR9CLSvGpG4GHpQMD4sFSIM8Zk1SDtA8xY-8Xk7ww2Zjl6UdY.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://4.bp.blogspot.com/-noY6D8LRXjU/TsQWDlmGP0I/AAAAAAAAAEE/S1ML59zbRSk/s320/4vbeUgFrMXUBWSgKHk5c77EI5Vt3v7aUe2p4W78EgRV-XT1Ue464Z6RaxckCOKL7fnkR9CLSvGpG4GHpQMD4sFSIM8Zk1SDtA8xY-8Xk7ww2Zjl6UdY.png" width="175" /></a></div><div style="text-align: center;"><i><span class="Apple-style-span" style="font-size: x-small;">adidas used mobile roadblocks to complement their homepage masthead ad. Using multiple mobile tactics in addition to roadblocks, channel views jumped 26x over the span of their “adidas is all in” brand campaign.</span></i></div><br /><b>Mobile brand channels extend your online presence</b><br /><b><br /></b><br />Many advertisers use banners, background images and gadgets to customize their YouTube brand channels. Extend your brand presence to mobile users by creating a customized mobile brand channel. Accessed through m.youtube.com, mobile channels offer the same high level of customization, including the use of gadgets. You can drive traffic to your YouTube mobile brand channel by running ads on the AdMob network or on m.youtube.com.<br /><br /><div style="text-align: center;"><a href="http://2.bp.blogspot.com/-StWK8VdcjgM/TsQWDBPdLGI/AAAAAAAAAD8/aakQ_WWT0AE/s1600/d-SrpaBnk8p5g6PZ_0tkYvdpZSPobZIz7tLAmT4iLtHEEsJdryu3qDiPbxXNNxACS45O83UoftCq-arU4nI-P4_TxbDuz6pKfp-yqnN2ysT7jFlJ7Gw.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="http://2.bp.blogspot.com/-StWK8VdcjgM/TsQWDBPdLGI/AAAAAAAAAD8/aakQ_WWT0AE/s320/d-SrpaBnk8p5g6PZ_0tkYvdpZSPobZIz7tLAmT4iLtHEEsJdryu3qDiPbxXNNxACS45O83UoftCq-arU4nI-P4_TxbDuz6pKfp-yqnN2ysT7jFlJ7Gw.png" width="189" /></a></div><div style="text-align: center;"><i><span class="Apple-style-span" style="font-size: x-small;">YouTube’s AdBlitz brand channel features custom-designed elements which engage our growing mobile audience.</span></i></div><br />For more information about YouTube mobile ads, connect with your Google sales representative or visit <a href="http://www.youtube.com/advertise/mobile.html">www.youtube.com/advertise/mobile.html</a>.<br /><br />Posted by Nicky Crane, Product Manager<br /><div><br /></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-3693439510735989388?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/more-ways-to-reach-your-audience-with-youtube-mobile-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Discovering Talented Musicians with Acoustic Analysis</title>
		<link>https://googledata.org/youtube/discovering-talented-musicians-with-acoustic-analysis/</link>
		<comments>https://googledata.org/youtube/discovering-talented-musicians-with-acoustic-analysis/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 15:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Research Admin]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=0af35c1e77e438c9f7db760b7e3b5a0c</guid>
		<description><![CDATA[Posted by Charles DuHadway, YouTube Slam Team, Google Research In an earlier post we talked about the technology behind Instant Mix for Music Beta by Google. Instant Mix uses machine hearing to characterize music attributes such as its timbre, mood and...]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by Charles DuHadway, YouTube Slam Team, Google Research </span><br /><br />In an <a href="http://googleresearch.blogspot.com/2011/06/instant-mix-for-music-beta-by-google.html">earlier post</a> we talked about the technology behind Instant Mix for <a href="http://music.google.com/">Music Beta by Google</a>. Instant Mix uses machine hearing to characterize music attributes such as its timbre, mood and tempo. Today we would like to talk about acoustic and visual analysis -- this time on YouTube. A fundamental part of YouTube's mission is to allow anyone anywhere to showcase their talents -- occasionally leading to <a href="http://www.youtube.com/watch?v=eQOFRZ1wNLw">life-changing success</a> -- but many talented performers are never discovered. Part of the problem is the sheer volume of videos: forty eight hours of video are uploaded to YouTube every minute (that’s eight years of content every day). We wondered if we could use acoustic analysis and machine learning to pore over these videos and automatically identify talented musicians.<br /><br />First we analyzed audio and visual features of videos being uploaded. We wanted to find “singing at home” videos -- often correlated with features such as ambient indoor lighting, head-and-shoulders view of a person singing in front of a fixed camera, few instruments and often a single dominant voice. Here’s a sample set of videos we found.<br /><br /><a href="http://2.bp.blogspot.com/-uIV4jRrylSI/TrB14eH590I/AAAAAAAAASc/xrHHAIj50X0/s1600/cover_wall_short.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" src="http://2.bp.blogspot.com/-uIV4jRrylSI/TrB14eH590I/AAAAAAAAASc/xrHHAIj50X0/s1600/cover_wall_short.png" /></a><br /><br />Then we estimated the quality of singing in each video. Our approach is based on acoustic analysis similar to that used by Instant Mix, coupled with a small set of singing quality annotations from human raters. Given these data we used machine learning to build a ranker that predicts if an average listener would like a performance. <br /><br />While machines are useful for weeding through thousands of not-so-great videos to find potential stars, we know they alone can't pick the next great star. So we turn to YouTube users to help us identify the real hidden gems by playing a voting game called <a href="http://www.youtube.com/slam">YouTube Slam</a>. We're putting an equal amount of effort into the game itself -- how do people vote? What makes it fun? How do we know when we have a true hit? We're looking forward to your feedback to help us refine this process: <a href="http://www.youtube.com/slam/music/vote">give it a try</a>*.  You can also check out singer and voter <a href="http://www.youtube.com/slam/music">leaderboards</a>. Toggle “All time” to “Last week” to find emerging talent in fresh videos or all-time favorites. <br /><br />Our “Music Slam” has only been running for a few weeks and we have already found some very talented musicians. Many of the videos have less than 100 views when we find them.<br /><br /><div><table><tr><td><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://2.gvt0.com/vi/ZMZr83rwdNI/0.jpg" height="266" width="320"><param name="movie" value="http://www.youtube.com/v/ZMZr83rwdNI&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><embed width="320" height="266"  src="http://www.youtube.com/v/ZMZr83rwdNI&fs=1&source=uds" type="application/x-shockwave-flash"></embed></object></td><td><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://3.gvt0.com/vi/OY2vWMtSsIM/0.jpg" height="266" width="320"><param name="movie" value="http://www.youtube.com/v/OY2vWMtSsIM&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><embed width="320" height="266"  src="http://www.youtube.com/v/OY2vWMtSsIM&fs=1&source=uds" type="application/x-shockwave-flash"></embed></object></td></tr><tr><td><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://0.gvt0.com/vi/wRCPCNtViGA/0.jpg" height="266" width="320"><param name="movie" value="http://www.youtube.com/v/wRCPCNtViGA&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><embed width="320" height="266"  src="http://www.youtube.com/v/wRCPCNtViGA&fs=1&source=uds" type="application/x-shockwave-flash"></embed></object></td><td><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://2.gvt0.com/vi/gBfynvifkOY/0.jpg" height="266" width="320"><param name="movie" value="http://www.youtube.com/v/gBfynvifkOY&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><embed width="320" height="266"  src="http://www.youtube.com/v/gBfynvifkOY&fs=1&source=uds" type="application/x-shockwave-flash"></embed></object></td></tr><tr><td><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://2.gvt0.com/vi/LVFe6P-C7iY/0.jpg" height="266" width="320"><param name="movie" value="http://www.youtube.com/v/LVFe6P-C7iY&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><embed width="320" height="266"  src="http://www.youtube.com/v/LVFe6P-C7iY&fs=1&source=uds" type="application/x-shockwave-flash"></embed></object></td><td><object class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://3.gvt0.com/vi/Qh-4qF07V1s/0.jpg" height="266" width="320"><param name="movie" value="http://www.youtube.com/v/Qh-4qF07V1s&fs=1&source=uds" /><param name="bgcolor" value="#FFFFFF" /><embed width="320" height="266"  src="http://www.youtube.com/v/Qh-4qF07V1s&fs=1&source=uds" type="application/x-shockwave-flash"></embed></object></td></tr></table></div><br /><br />And while we're excited about what we've done with music, there's as much undiscovered potential in almost any subject you can think of. Try our other slams: <a href="http://www.youtube.com/slam/cute">cute</a>, <a href="http://www.youtube.com/slam/bizarre">bizarre</a>, <a href="http://www.youtube.com/slam/comedy">comedy</a>, and <a href="http://www.youtube.com/slam/dance">dance</a>*. Enjoy!<br /><br />Related work by Google Researchers:<br />“<a href="http://research.google.com/pubs/pub35638.html">Video2Text: Learning to Annotate Video Content</a>”, <a href="http://research.google.com/pubs/author37818.html">Hrishikesh Aradhye</a>, <a href="http://research.google.com/pubs/author38233.html">George Toderici</a>, <a href="http://research.google.com/pubs/author36197.html">Jay Yagnik</a>, ICDM Workshop on Internet Multimedia Mining, 2009.<br /><br />* Music and dance slams are currently available only in the US.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21224994-5952642640319180625?l=googleresearch.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/discovering-talented-musicians-with-acoustic-analysis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Meet the family: TrueView video ads deliver on cost-per-view pricing model</title>
		<link>https://googledata.org/uncategorized/meet-the-family-trueview-video-ads-deliver-on-cost-per-view-pricing-model/</link>
		<comments>https://googledata.org/uncategorized/meet-the-family-trueview-video-ads-deliver-on-cost-per-view-pricing-model/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 15:15:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdWords crew]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=51774c931c896a76df5c7caa41b8ecb9</guid>
		<description><![CDATA[If you use TrueView video ads or interested in video advertising, we invite you to check out the Agency blog where we just posted some news and recent stats on this new suite of cost-per-view video ads. To learn more about the TrueView family of ad for...]]></description>
				<content:encoded><![CDATA[<div><span style="color: rgb(34, 34, 34); text-align: -webkit-auto; background-color: transparent; font-size: 11pt; font-family: Arial; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></div><span class="Apple-style-span"  >If you use TrueView video ads or interested in video advertising, we invite you to check out the <a href="http://adwordsagency.blogspot.com/2011/10/youtubes-trueview-video-ads-deliver.html">Agency blog</a> where we just posted some news and recent stats on this new suite of cost-per-view video ads.<span style="color: rgb(34, 34, 34); background-color: rgba(255, 255, 255, 0.917969); "> </span><span style="color: rgb(34, 34, 34); text-align: -webkit-auto; background-color: rgb(255, 255, 255); line-height: 15px; ">To learn more about the TrueView family of ad formats, visit the website </span><a href="http://www.youtube.com/advertise/trueview.html"  style="color: rgb(17, 85, 204); text-align: -webkit-auto; background-color: rgb(255, 255, 255); line-height: 15px; ">here</a><span class="Apple-style-span" style="color: rgb(34, 34, 34); background-color: rgba(255, 255, 255, 0.917969); ">.</span></span><div><span class="Apple-style-span" style="line-height: 15px;"><span class="Apple-style-span"  ><br /></span></span></div><div><span class="Apple-style-span" style="line-height: 15px;"><span class="Apple-style-span"  >Posted by Lauren Barbato, <i>Inside AdWords</i> crew</span></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-8858123498330596415?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/uncategorized/meet-the-family-trueview-video-ads-deliver-on-cost-per-view-pricing-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Studying with YouTube and Google+</title>
		<link>https://googledata.org/uncategorized/studying-with-youtube-and-google/</link>
		<comments>https://googledata.org/uncategorized/studying-with-youtube-and-google/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 23:55:00 +0000</pubDate>
		<dc:creator><![CDATA[Google Students]]></dc:creator>
				<category><![CDATA[Google Student Blog]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google student]]></category>
		<category><![CDATA[students]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=00d919d89e8afcaa04cb0e3f78d0e7f2</guid>
		<description><![CDATA[Introduction: Taylor is a Google Student Ambassador at Boise State University. He is currently pursuing a double major in Communication and Computer Science, and loves exploring new study methods, one of which he shares with you here.Fall is in full sw...]]></description>
				<content:encoded><![CDATA[<i>Introduction: Taylor is a <a href="http://www.google.com/jobs/students/us/ambassador/">Google Student Ambassador</a> at Boise State University. He is currently pursuing a double major in Communication and Computer Science, and loves exploring new study methods, one of which he shares with you here.</i><br /><br />Fall is in full swing, and for many students (like me), that means midterms. Luckily for us, Google provides tools that make studying a breeze!<br /><br />One subject I spend lots of time studying is math. Sometimes it’s hard to catch everything in class, so I started looking up each topic we cover on YouTube. Being able to see lots of different people explain how different problems are solved really helps me understand the material. In order to keep track of the videos that help me the most, I create playlists that correspond to the chapters in our textbook. With the midterm coming up, I merged each video in my playlists into one mega midterm playlist. When I study now, I shuffle the playlist, pause the video to work out the problem, then hit play to see the process used to solve. After the video is done, another topic is chosen randomly, and I repeat the process!<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/-rGX0Wwyq734/TqdL0WPgIUI/AAAAAAAAFhs/bFe72oqlNeM/s1600/Selection_131.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="http://3.bp.blogspot.com/-rGX0Wwyq734/TqdL0WPgIUI/AAAAAAAAFhs/bFe72oqlNeM/s400/Selection_131.jpeg" width="378" /></a></div><br />To take this study technique to the next level, I organized a <a href="http://www.youtube.com/watch?v=AwULXJlOxOU">Hangout</a> on <a href="http://plus.google.com/">Google+</a> with friends from math class. In order to make sure I would stay on task, I made a <a href="http://www.youtube.com/watch?v=BeMZP-oyOII">Circle</a> for my math class friends, and set my availability to hang out to just them. We weren’t all on at the same time, but that’s what’s cool about Hangouts-- people can mingle, just like at school. Being able to watch YouTube videos together and talk about our interpretations of problem solving processes along with that of the video’s creator was awesome (and it will be even better when we aren’t working on homework!). I’m looking forward to trying out <a href="http://www.google.com/support/plus/bin/static.py?page=guide.cs&amp;guide=1257349&amp;topic=1651691&amp;answer=1651571">Hangouts with Extras</a> when we move into more topics that have to do with graphing. Having a shared sketchpad with a full revision history will be a great study tool!<br /><br /><div class="separator" style="clear: both; text-align: center;"><a href="http://2.bp.blogspot.com/-4MGxsXDKOp0/TqdL-J5kh7I/AAAAAAAAFh4/SLFTAXtgBBw/s1600/screenshot.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="250" src="http://2.bp.blogspot.com/-4MGxsXDKOp0/TqdL-J5kh7I/AAAAAAAAFh4/SLFTAXtgBBw/s400/screenshot.png" width="400" /></a></div><br />Being able to use Google+ Hangouts instead of making time to head to campus is awesome! I can’t wait to see how this will change the face of online classes and office hours, as well as providing more ways to interact with fellow students!<br /><br /><i>Posted by Taylor Bell, Google Student Ambassador, Boise State University</i><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8878620400258430757-4499834671123222342?l=googleforstudents.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/uncategorized/studying-with-youtube-and-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube’s Promoted Videos hits one billion video views</title>
		<link>https://googledata.org/google-adwords/youtube%e2%80%99s-promoted-videos-hits-one-billion-video-views/</link>
		<comments>https://googledata.org/google-adwords/youtube%e2%80%99s-promoted-videos-hits-one-billion-video-views/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 16:01:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdWords crew]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=142bc5550238d81673f2a21e90a5a7b0</guid>
		<description><![CDATA[YouTube’s Promoted Videos recently passed the one billion mark in the number of video views delivered to advertisers. Promoted Videos allow you to promote your video against search results on YouTube, against related videos on YouTube, or across the ...]]></description>
				<content:encoded><![CDATA[<div><span class="Apple-style-span"  ><span class="Apple-style-span" style="border-collapse: collapse; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">YouTube’s </span><a href="http://ads.youtube.com/"  style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">Promoted Videos</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> recently passed the</span><span> one</span><span style="font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: rgb(255, 204, 0); "></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> billion mark in the number of video views delivered to advertisers. Promoted Videos allow</span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> you to promote your video against search results on YouTube, against related videos on </span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; "><a href="http://www.youtube.com/" >YouTube</a></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">, or across the </span><a href="http://www.google.com/ads/displaynetwork/"  style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">Google Display Network</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">. Promoted Videos help</span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> you bring your business to lif</span><span><span>e—let</span></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">ting your customers see you, hear you, and connect with you online.</span><br /><span style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">You can set up Promoted Video</span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> campaigns using your Go</span><span><span>ogle AdWords account. Similar to pay-per-click search ads, with Promoted Videos you can specify how much you would be willing to pay for a video view and set a maximum budget. Thousands of advertisers have promoted their videos agains</span></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">t branded keywords and against videos that their customers are watching to increase brand awareness and drive sales.</span></span><span class="Apple-style-span" style="border-collapse: collapse; "><div class="im"><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">We would like to highlight a few changes to Promoted Videos:</span><br /><span style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /></div><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: bold; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Placement on Google Video search results.</span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">  W</span><span><span>e're expanding Pro</span></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">moted Video ads to show up on the Google.com </span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; "><a href="http://video.google.com/" >Video search results page</a></span><span style="background-color: transparent; "> in the US only. This change </span><span><span>gives you more opportunity to connect with potential viewers when they're actively seeking out video content. If you also have search ads set up in your account, we'll serve either your Promoted Video ad or your Google AdWords search ad, not both, based on a range of factors including your bid and Quality Score. To make sure you can take adva</span></span><span style="background-color: transparent; ">ntage of this increase in your potential audience, please opt into "Search partners" in your campaign.</span></span></span></div><div><span class="Apple-style-span"  ><span class="Apple-style-span" style="border-collapse: collapse;"><br /></span></span></div><div><span class="Apple-style-span" style="border-collapse: collapse; "><span class="Apple-style-span"  ><div><div style="background-color: transparent; text-align: center; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><img height="326px;" src="https://lh6.googleusercontent.com/avZuKZBOyc1DPuy8KWTd1CzNA8RJh4Y7o9D5HBlhu-3qZcxP0a-lAbjbVgGHGChFqQVePqGLpsqmd2_w7AXWaJ-2CsOpAj-ammDFXsENFhPaToT5mZY" width="615px;" /></p></div><p style="background-color: transparent; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "></p><div style="background-color: transparent; text-align: center; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><br /></p></div><div class="im"><div style="background-color: transparent; text-align: center; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><a href="https://lh6.googleusercontent.com/avZuKZBOyc1DPuy8KWTd1CzNA8RJh4Y7o9D5HBlhu-3qZcxP0a-lAbjbVgGHGChFqQVePqGLpsqmd2_w7AXWaJ-2CsOpAj-ammDFXsENFhPaToT5mZY" >(click for full-size image)</a></p></div><span style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /></div><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">W</span><i><span style="background-color: transparent; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">h</span><span><span>en users enter your</span></span><span style="background-color: transparent; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> search ter</span></i><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">ms (A) on </span><a href="http://video.google.com/"  style="background-color: transparent; "><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">video.google.com</span></a><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> (B)</span><i><span style="background-color: transparent; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">, </span><span style="font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; background-color: rgb(255, 204, 0); "></span><span><span>they could see your Promoted Video ad above or to the right (C) of the organic search results (D).</span></span></i><div class="im"></div><span><span><br /><b>Introduction on YouTube Mobile</b>.  Soon, your Promoted Video ads will be able t</span></span><span><span>o show up on our mobile destination, <a href="http://adwords.blogspot.com/2011/08/m.youtube.com">m.youtube.com</a>, which can be easily viewed on web browsers across any mobile and tablet devices. New Google AdWords campaigns are opted into "All devices" by</span></span><span style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> default, but you can opt your ads out of showing on mobile devices by navigating to "Settings" on the Campaigns tab. </span></span><span style="background-color: transparent; white-space: pre-wrap; ">For existing campaigns, you may wish to verify that your device</span><span style="background-color: transparent; white-space: pre-wrap; "> settings include or exclude mobile.  </span></div><div style="background-color: transparent; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="white-space: pre-wrap; "> </span></p></div><div><div class="im"><div style="background-color: transparent; text-align: center; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><img height="354px;" src="https://lh5.googleusercontent.com/uyWKM_zegEgQrqGaNyErIt3jsGZ75WCdqvULSyPgvJeGoiAiWtiNX1sy7QtD8BZljwgSc01ZZiQmeIlD7qRfpbWGuapr6FwjgxUTfr8aK-NYB7sAdaQ" width="212px;" /></p></div><p style="background-color: transparent; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span><br /></p><div style="background-color: transparent; text-align: center; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><a href="https://lh5.googleusercontent.com/uyWKM_zegEgQrqGaNyErIt3jsGZ75WCdqvULSyPgvJeGoiAiWtiNX1sy7QtD8BZljwgSc01ZZiQmeIlD7qRfpbWGuapr6FwjgxUTfr8aK-NYB7sAdaQ" >(click for full-size image)</a></p></div></div><div class="im"><div style="background-color: transparent; text-align: center; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><br /></p></div><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">The mobile Promoted Video ad on </span><a href="http://m.youtube.com/"  style="background-color: transparent; "><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">m.youtube.com</span></a><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> will include your ad thumbnail, title, and channel name, similar to organic video results. </span><span style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /><span style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /></div><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: bold; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Inclusion in TrueView video ads.</span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">  </span><a href="http://adwords.blogspot.com/2011/05/promoted-video-pricing-change-focusing.html" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">We recently moved Promoted Videos from a cost-per-click </span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">to cost-per-view pricing model, </span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">focusing on the value of video views</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">. In the coming months, Promoted Videos will join our </span><a href="http://www.youtube.com/trueview"  style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">TrueView family of ad formats</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">, which provide viewers with choice and advertisers with engaged, opted-in views. Stay tuned for more updates!</span><div class="im"><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">We hope these changes give you more and better resources to grow your business with online video ads.  </span></div><span style="background-color: transparent; "><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> </span></span><p style="background-color: transparent; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "></p></div><div class="im"><div style="background-color: transparent; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; ">Posted by Jonathan Goldman, YouTube Software Engineer </span></p></div></div></span></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-1949251294273673463?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/youtube%e2%80%99s-promoted-videos-hits-one-billion-video-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animal Planet leverages rich media and video advertising across platforms to engage viewers for River Monsters premiere</title>
		<link>https://googledata.org/google-adwords/animal-planet-leverages-rich-media-and-video-advertising-across-platforms-to-engage-viewers-for-river-monsters-premiere/</link>
		<comments>https://googledata.org/google-adwords/animal-planet-leverages-rich-media-and-video-advertising-across-platforms-to-engage-viewers-for-river-monsters-premiere/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 18:59:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdWords crew]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=37d55d269e742776903a5a5d862f8910</guid>
		<description><![CDATA[Mobile, video and rich media advertising are changing the way that businesses capture user attention by bringing together the power of sight, sound, and motion to engage audiences like never before. For example, to build awareness for the new season of...]]></description>
				<content:encoded><![CDATA[<div style="text-align: left;"><span class="Apple-style-span" style="border-collapse: collapse; white-space: pre-wrap; "><span class="Apple-style-span"  >Mobile, video and rich media advertising are changing the way that businesses capture user attention by bringing together the power of sight, sound, and motion to engage audiences like never before. For example, to build awareness for the new season of their popular River Monsters series, Animal Planet, the "Surprisingly Human" TV network, launched an integrated media campaign across platforms to bring the show to life with the broadest audience possible - driving more than 900k YouTube video views in the weeks leading up to the premiere. </span></span></div><div><span class="Apple-style-span" ><span class="Apple-style-span" style="border-collapse: collapse; "><span ><br /></span></span><span class="Apple-style-span" style="border-collapse: collapse; "><span ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">The River Monsters campaign ran across both the YouTube and AdMob networks, delivering users a sneak peak of the upcoming season whether they were on their desktop computers or their mobile phones. Rich media display ads on YouTube enabled the star of the show to pop out of the YouTube Channel to introduce new creatures to potential viewers, while video advertising offered a glimpse at upcoming episodes of the new season.</span><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><span ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><br /></span></span></span></span></div><div><span class="Apple-style-span" style="border-collapse: collapse; "><span ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; " >On the YouTube desktop website, users were able to interact with the River Monsters whether they were searching for their favorite video, watching partner content, or browsing the homepage. Ads led visitors to a custom mimicry gadget on the Animal Planet Brand Channel, where the host of the show jumped out of the ad to highlight the most exciting portions of the featured video.</span></span></span></div><div><span class="Apple-style-span" style="border-collapse: collapse; "><span ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; " ><br /></span></span></span></div><a href="http://2.bp.blogspot.com/-Ch-MRSbn59I/Tgolk_FejrI/AAAAAAAAAAY/GUBh2NDcQq8/s1600/animal+planet+6-28.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><span class="Apple-style-span"  ><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 251px;" src="http://2.bp.blogspot.com/-Ch-MRSbn59I/Tgolk_FejrI/AAAAAAAAAAY/GUBh2NDcQq8/s320/animal+planet+6-28.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5623348402065411762" /></span></a><div><div style="text-align: center;"><span class="Apple-style-span"   ><u><a href="http://2.bp.blogspot.com/-Ch-MRSbn59I/Tgolk_FejrI/AAAAAAAAAAY/GUBh2NDcQq8/s1600/animal+planet+6-28.png">(click for full size image)</a></u></span></div><div style="text-align: center;"><span class="Apple-style-span"   ><u><br /></u></span></div><span class="Apple-style-span"  ><span class="Apple-style-span"><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><p style="border-collapse: collapse; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">In-Stream Ads on YouTube are also available in the YouTube Android app, enabling Animal Planet to extend this engagement opportunity to mobile users. Including Interactive Video Ads on the AdMob network further expanded the mobile campaign, giving users the <span class="Apple-style-span">opportunity to watch a preview of the River Monsters show, share the video through social media, learn more on the show’s mobile website, and watch additional videos - all from within the mobile ad.</span></span><br /></p><p style="border-collapse: collapse; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><br /></span></p><p style="border-collapse: collapse; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><br /></span></p></div></span><a href="http://1.bp.blogspot.com/-Gwk_PMeF7EA/Tgoly1aplwI/AAAAAAAAAAg/H5GjCa4eaT8/s1600/animal+planet+2+6-28.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img src="http://1.bp.blogspot.com/-Gwk_PMeF7EA/Tgoly1aplwI/AAAAAAAAAAg/H5GjCa4eaT8/s320/animal+planet+2+6-28.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5623348639988029186" style="display: block; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-align: center; cursor: pointer; width: 308px; height: 320px; " /></a></span></div><div><div style="text-align: center;"><span class="Apple-style-span" style="color: rgb(0, 0, 238); "><u><span class="Apple-style-span"  ><a href="http://1.bp.blogspot.com/-Gwk_PMeF7EA/Tgoly1aplwI/AAAAAAAAAAg/H5GjCa4eaT8/s1600/animal+planet+2+6-28.png">(click for full size image)</a></span></u></span></div><div style="text-align: center;"><span class="Apple-style-span"   ><u><br /></u></span></div><span class="Apple-style-span"  ><span class="Apple-style-span" style="border-collapse: collapse; "><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">To stir up even more excitement on the day of the premiere, a Rich Media Masthead on the YouTube homepage revealed clips from the upcoming episode and reminded users to tune in.</span><br /></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><br /></span></p></div></span><a href="http://1.bp.blogspot.com/-V3zGHyUMYKw/Tgol-4wRtuI/AAAAAAAAAAo/Pwwb7qqPpko/s1600/animal+planet+3+6-28.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img src="http://1.bp.blogspot.com/-V3zGHyUMYKw/Tgol-4wRtuI/AAAAAAAAAAo/Pwwb7qqPpko/s320/animal+planet+3+6-28.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5623348847042475746" style="display: block; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; text-align: center; cursor: pointer; width: 320px; height: 94px; " /></a></span></div><div><div style="text-align: center;"><span class="Apple-style-span" style="color: rgb(0, 0, 238); "><u><span class="Apple-style-span"  ><a href="http://1.bp.blogspot.com/-V3zGHyUMYKw/Tgol-4wRtuI/AAAAAAAAAAo/Pwwb7qqPpko/s1600/animal+planet+3+6-28.png">(click for full size image)</a></span></u></span></div><div style="text-align: center;"><span class="Apple-style-span"   ><u><br /></u></span></div><span class="Apple-style-span" style="border-collapse: collapse; "  ><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">The River Monsters campaign was hugely successful:</span></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "></p></div><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "></div><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><ul><li style="margin-left: 15px; background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">YouTube advertising generated more than 930,000 video views on the River Monster clips</span></li><li style="margin-left: 15px; background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Nearly 2,000 users subscribed to the River Monsters Brand Channel</span></li><li style="margin-left: 15px; background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Mobile In-Stream Overlay Ads received more than 3 million impressions, with 84% of mobile users completing the video</span></li><li style="margin-left: 15px; background-color: transparent; color: black; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Interactive Video Ads on AdMob generated another 6 million impressions, with 75,000 users engaging with one of the interactive elements in the ad creative </span></li></ul><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">The combination of compelling rich media and video advertising on both desktop and mobile created an engaging experience that increased social buzz around the show and led to a premiere that exceeded expectations.</span><br /><span class="Apple-style-span" style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Posted by Vicky Homan, Product Marketing Manager, Mobile Ads</span></span></p></div></span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-7829131475672857586?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/animal-planet-leverages-rich-media-and-video-advertising-across-platforms-to-engage-viewers-for-river-monsters-premiere/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Learn about the latest in Video Ads on Ad Innovations</title>
		<link>https://googledata.org/google-adwords/learn-about-the-latest-in-video-ads-on-ad-innovations/</link>
		<comments>https://googledata.org/google-adwords/learn-about-the-latest-in-video-ads-on-ad-innovations/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 16:36:00 +0000</pubDate>
		<dc:creator><![CDATA[Inside AdWords crew]]></dc:creator>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[adwords google]]></category>
		<category><![CDATA[adwords tips]]></category>
		<category><![CDATA[google adwords help]]></category>
		<category><![CDATA[publishers]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=82dc510681f184bc84e33f72a95ffa4c</guid>
		<description><![CDATA[Google offers the world's largest online video audience, based on users of Google.com search, our partnerships with top video publishers across the Google Display Network, and the reach of YouTube, the world's largest video property. On YouTube alone, ...]]></description>
				<content:encoded><![CDATA[<span class="Apple-style-span"  ><span class="Apple-style-span"><span class="Apple-style-span"><span class="Apple-style-span"><span class="Apple-style-span" style="border-collapse: collapse; "><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Google offers the world's largest online video audience, based on users of Google.com search, our partnerships with top video publishers across the Google Display Network, and the reach of YouTube, the world's largest video property. On YouTube alone, users generate 3 billion video views daily and upload 48 new hours of video per minute. The online video market is huge for users, and we believe this means it also holds a lot of potential for online advertisers. </span><br /><span class="Apple-style-span" style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">For those of you who are already passionate about this large and growing market, we’ve just launched a </span><a href="http://www.google.com/ads/innovations/video.html" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">Video page</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> on </span><a href="http://www.google.com/ads/innovations/index.html" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">Ad Innovations</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> -- your destination for exploring our latest advertising developments.</span><br /><span class="Apple-style-span" style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">On this page, you can learn about new video innovations that can help you prepare your campaigns and promote your business.</span><br /><span class="Apple-style-span" style="background-color: transparent; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></span><br /><span style="background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><b>Prepare your campaign</b></span></p></div><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><ul><li style="margin-left: 15px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; "><a href="http://www.google.com/ads/innovations/acm.html" >Ad Creation Marketplace</a></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> - </span><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Hire a professional to create a TV or video ad that fits your needs, budget, and deadlines</span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">.</span></li><li style="margin-left: 15px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; "><a href="http://www.google.com/ads/innovations/ytvideotargeting.html" >YouTube Video Targeting Tool</a></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> - </span><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Search by keyword or audience to find YouTube videos where you might want to advertise.</span></li><li style="margin-left: 15px; "><a href="http://www.google.com/ads/innovations/ytinsights.html" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">YouTube Insight </span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">-</span><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> Learn about the video likes and dislikes of audiences you define.</span></li></ul></div><div style="background-color: transparent; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="background-color: transparent; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><b>Promote your business</b></span></p><ul><li style="margin-left: 15px; background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; "><a href="http://www.google.com/ads/innovations/trueview.html">TrueView video ads by YouTube</a></span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> - </span><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Give users choice and control over which advertisers' messages they want to see and when. Pay only when a user chooses to view your ad, increasing your view count on YouTube. </span><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "></span></li><li style="margin-left: 15px; background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><a href="http://www.google.com/ads/innovations/videoextensions.html" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">Video extensions</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> - </span><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">Include click-to-play videos for trailers, previews, and product demonstrations that play right below your ads on Google.com.</span></li><li style="margin-left: 15px; background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; list-style-type: disc; text-decoration: none; vertical-align: baseline; "><a href="http://www.google.com/ads/innovations/mediaads.html" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">Media Ads</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> -</span><span style="background-color: transparent; font-style: italic; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> Discover new ways to target, pay for, and experience video ads on Google.com.</span></li></ul><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><span style="white-space: pre-wrap; "></span></p></div></span><span class="Apple-style-span" style="border-collapse: collapse; white-space: pre-wrap; ">Check out our new <a href="http://www.google.com/ads/innovations/video.html">Video innovations page</a></span></span></span><span class="Apple-style-span"><span class="Apple-style-span"><span class="Apple-style-span" style="border-collapse: collapse; white-space: pre-wrap; "> and send us feedback on these new features. We’ll add more items to this page as we bring new video advertising features to you. </span></span></span></span><span class="Apple-style-span"><span class="Apple-style-span" style="border-collapse: collapse; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "><br /><br /></span></span></span></span><div><div><span class="Apple-style-span"  ><span class="Apple-style-span" style="border-collapse: collapse; "><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">If you're new to video advertising, start with the basics. We have online resources available where you can learn about all our </span><a href="http://www.google.com/ads/video" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">video advertising solutions</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; "> including </span><a href="http://www.youtube.com/t/advertising" ><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap; ">YouTube advertising</span></a><span style="background-color: transparent; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; ">.</span></span><span class="Apple-style-span"><span class="Apple-style-span"><span class="Apple-style-span" style="border-collapse: collapse; "><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><br /></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Posted by Lauren Barbato, <i>Inside AdWords</i> crew</p></span></span></span></span></div></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3390965-5445550932399045327?l=adwords.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/google-adwords/learn-about-the-latest-in-video-ads-on-ad-innovations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto-Directed Video Stabilization with Robust L1 Optimal Camera Paths</title>
		<link>https://googledata.org/youtube/auto-directed-video-stabilization-with-robust-l1-optimal-camera-paths/</link>
		<comments>https://googledata.org/youtube/auto-directed-video-stabilization-with-robust-l1-optimal-camera-paths/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 15:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Research Admin]]></dc:creator>
				<category><![CDATA[Google Research]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=b65a0e624b39ca8ea56f0a48f6867686</guid>
		<description><![CDATA[Posted by Matthias Grundmann, Vivek Kwatra, and Irfan Essa, Research TeamEarlier this year, we announced the launch of new features on the YouTube Video Editor, including stabilization for shaky videos, with the ability to preview them in real-time. Th...]]></description>
				<content:encoded><![CDATA[<span class="byline-author">Posted by <a href="http://research.google.com/pubs/author38919.html">Matthias Grundmann</a>, <a href="http://research.google.com/pubs/author38000.html">Vivek Kwatra</a>, and <a href="http://www.irfanessa.com/Work/Welcome.html">Irfan Essa</a>, Research Team</span><br /><br />Earlier this year, we <a href="http://youtube-global.blogspot.com/2011/03/lights-camera-edit-new-features-for.html">announced</a> the launch of new features on the <a href="http://www.youtube.com/editor">YouTube Video Editor</a>, including stabilization for shaky videos, with the ability to preview them in real-time. The core technology behind this feature is detailed in <a href="http://research.google.com/pubs/pub37041.html">this paper</a>, which will be presented at the IEEE International Conference on Computer Vision and Pattern Recognition (<a href="http://www.cvpr2011.org/">CVPR 2011</a>).<br /><br />Casually shot videos captured by handheld or mobile cameras suffer from significant amount of shake. Existing in-camera stabilization methods dampen high-frequency jitter but do not suppress low-frequency movements and bounces, such as those observed in videos captured by a walking person. On the other hand, most professionally shot videos usually consist of carefully designed camera configurations, using specialized equipment such as tripods or camera dollies, and employ ease-in and ease-out for transitions. Our goal was to devise a completely automatic method for converting casual shaky footage into more pleasant and professional looking videos.<br /><br /><iframe width="540" height="330" src="http://www.youtube.com/embed/0MiY-PNy-GU" frameborder="0" allowfullscreen></iframe><br /><br />Our technique mimics the cinematographic principles outlined above by automatically determining the best camera path using a robust optimization technique. The original, shaky camera path is divided into a set of segments, each approximated by either a constant, linear or parabolic motion. Our optimization finds the best of all possible partitions using a computationally efficient and stable algorithm.<br /><br />To achieve real-time performance on the web, we distribute the computation across multiple machines in the cloud. This enables us to provide users with a real-time preview and interactive control of the stabilized result. Above we provide a video demonstration of how to use this feature on the YouTube Editor. We will also demo this live at <a href="http://googleresearch.blogspot.com/2011/06/google-at-cvpr-2011.html">Google’s exhibition booth</a> in CVPR 2011.<br /><br />For further details, please read our <a href="http://research.google.com/pubs/archive/37041.pdf">paper</a>.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/21224994-7399904819779185895?l=googleresearch.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/auto-directed-video-stabilization-with-robust-l1-optimal-camera-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>YouTube and Creative Commons: raising the bar on user creativity</title>
		<link>https://googledata.org/youtube/youtube-and-creative-commons-raising-the-bar-on-user-creativity/</link>
		<comments>https://googledata.org/youtube/youtube-and-creative-commons-raising-the-bar-on-user-creativity/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 23:45:00 +0000</pubDate>
		<dc:creator><![CDATA[Stephanie Taylor]]></dc:creator>
				<category><![CDATA[Google Open Source]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">https://googledata.org/?guid=445113d55b4ddc1989a6c664cb41725e</guid>
		<description><![CDATA[Have you ever been in the process of creating a video and just needed that one perfect clip to make it pop? Maybe you were creating your own music video and needed an aerial video of Los Angeles at night to spice it up. Unless you had a helicopter, a p...]]></description>
				<content:encoded><![CDATA[Have you ever been in the process of creating a video and just needed that one perfect clip to make it pop? Maybe you were creating your own music video and needed an aerial video of Los Angeles at night to spice it up. Unless you had a helicopter, a pretty powerful camera and some fierce editing skills, this would have been a big challenge. Now, look no further than the <a  href="http://creativecommons.org/">Creative Commons</a> library accessible through <a  href="http://www.youtube.com/editor">YouTube Video Editor</a> to make this happen. Creative Commons provides a simple way to license and use creative works.<br /><br />You can now access an ever-expanding library of Creative Commons videos to edit and incorporate into your own projects. To find a video, just search in the YouTube search bar or from within the YouTube Video Editor. We’re working with organizations like <a  href="http://www.youtube.com/user/CSPANhouse2011">C-SPAN</a>, <a  href="http://www.youtube.com/user/publicresourceorg">Public.Resource.org</a>, <a  href="http://www.youtube.com/voavideo">Voice of America</a>, <a  href="http://www.youtube.com/user/AlJazeeraEnglish">Al Jazeera</a> and others, so that over 10,000 Creative Commons videos are available for your creative use.<br /><br />To get started, visit <a  href="http://www.youtube.com/editor">youtube.com/editor</a> and select the CC tab:<div style="background- margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: 0px;  white-space: normal;  font-family:Times;font-size:medium;color:transparent;"><br /></div><div style="margin-left: 0px; margin-bottom: 0px; margin-right: 0px; "><div style="color: transparent; font-family: Times; white-space: normal; font-size: medium; text-align: center; "> <img src="https://lh4.googleusercontent.com/g5-bPpxSZydIEnbom67iwtuvXOlMUZtt8mdSbnFKe90jQ9JG4fzZHeuFqhWCjM64OzR7USRz_x-C2Rbpym6JGOId-l-b89DoAj7l_HBEhSJEs3nW3eA" width="571px;" height="345px;" /></div><div style="text-align: left; "><span class="Apple-style-span" any="" video="" you="" create="" using="" creative="" commons="" content="" will="" automatically="" show="" the="" source="" titles="" underneath="" span=""></span></div><div style="background- margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: 0px;  white-space: normal;  font-family:Times;font-size:medium;color:transparent;"><span id="internal-source-marker_0.4718045452609658" style="  color: rgb(0, 0, 0); background- font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; font-family:Arial;font-size:10pt;color:transparent;"></span></div></div><br />Any video you create using Creative Commons content will automatically show the source videos’ titles underneath the video player:<div><br /><img src="https://lh4.googleusercontent.com/nfDfiEHm0tRmSbgr5kPIGEiILDpfaDMTynSCZGooSRdAYkTgr-4FXiFjI-N8l9vjhpv4tFgFzfJzAGOVVcXdlRfTVd-MTqroyUMcTgKGkgBGQQ3EL4E" width="568px;" height="245px;" /><span style="  color: rgb(0, 0, 0); background- font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; font-family:Arial;font-size:10pt;color:transparent;"></span><span style="  color: rgb(0, 0, 0); background- font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; font-family:Arial;font-size:10pt;color:transparent;"></span><br /><span class="Apple-style-span" style="white-space: pre-wrap; font-size:-webkit-xxx-large;"><div style="background- margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: 0px;  white-space: normal;  font-family:Times;font-size:medium;color:transparent;"><span class="Apple-style-span" style="white-space: pre-wrap; font-size:small;"><div style="background- margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: 0px;  white-space: normal;  font-family:Times;font-size:medium;color:transparent;"><span class="Apple-style-span" style="white-space: pre-wrap; font-size:-webkit-xxx-large;"><div style="background- margin-top: 0px; margin-left: 0px; margin-bottom: 0px; margin-right: 0px;  white-space: normal;  font-family:Times;font-size:medium;color:transparent;"><span id="internal-source-marker_0.4718045452609658" style="  color: rgb(0, 0, 0); background- font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; font-family:Arial;font-size:10pt;color:transparent;"></span></div></span></div></span></div></span></div><div><br /></div><div>As part of the launch of Creative Commons licensing on YouTube, you’ll also be able to mark any or all of your videos with the <a  href="http://creativecommons.org/licenses/by/3.0/">Creative Commons CC-BY</a> license that lets others share and remix your work, so long as they give you credit. To mark your video with the Creative Commons license, select ‘Creative Commons Attribution license’ on the upload page or on the Video Description page:</div><br /><img src="https://lh5.googleusercontent.com/Me6g9iOJxtNqI-iOQYZb6Y57IImfrahCQge25hOflUvLRCgB6IrUEpqm9WDRZnBenAHzOsKrAfoo1-8mLpl0ysqZ7Wj5_oe3V55Tr2W6dMp75B1-S0I" width="460px;" height="144px;" /><span style="  color: rgb(0, 0, 0); background- font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap; font-family:Arial;font-size:10pt;color:transparent;"></span><div><br /></div><div><div>You can learn more about Creative Commons on YouTube at our <a  href="http://www.google.com/support/youtube/bin/answer.py?hl=en&amp;answer=1284989">help center</a>, and remember that all content must still follow the rules in our <a  href="http://www.youtube.com/t/copyright_education">Copyright Center</a>.</div><div><br /></div><div>We’re excited to see what you come up with!</div><div><br /></div><div><i>Stace Peterson, Software Engineer</i></div></div><div><i><br /></i></div><div><i>(This is a cross post from the Official YouTube Blog)</i></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8698702854482141883-4778784477369196608?l=google-opensource.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/youtube-and-creative-commons-raising-the-bar-on-user-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Week&#8217;s Trends: The President, Egypt, and 90s Hip Hop</title>
		<link>https://googledata.org/youtube/this-weeks-trends-the-president-egypt-and-90s-hip-hop/</link>
		<comments>https://googledata.org/youtube/this-weeks-trends-the-president-egypt-and-90s-hip-hop/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 22:58:00 +0000</pubDate>
		<dc:creator><![CDATA[Kevin Allocca]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google youtube]]></category>
		<category><![CDATA[youtube videos]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Each weekday, we at YouTube Trends take a look at the most interesting videos and cultural phenomena on YouTube as they develop.  We want take a moment to highlight some of what we've come across recently:We used the questions you asked of the Presiden...]]></description>
				<content:encoded><![CDATA[Each weekday, we at <a href="http://www.youtube.com/trends">YouTube Trends</a> take a look at the most interesting videos and cultural phenomena on YouTube as they develop.  We want take a moment to highlight some of what we've come across recently:<br /><ul><li>We used the questions you asked of the President of the United States to create some <a href="http://youtube-trends.blogspot.com/2011/01/your-words-to-president-obama-interview.html">unique word art</a>.<br /><br /></li><li>We tracked the <a href="http://youtube-trends.blogspot.com/2011/01/your-super-bowl-week-trends-black-and.html" >biggest trends the week before the big game </a>.<br /><br /></li><li>We curated <a href="http://youtube-trends.blogspot.com/2011/02/more-video-arriving-each-day-from-egypt.html">powerful footage</a> from the protests in Egypt.<br /><br /></li><li>We saw how a music video from 1995 still sees a bump in views <a href="http://youtube-trends.blogspot.com/2010/12/wake-up-its-first-of-month.html">every single month</a>.<br /><br /></li><li>We looked at on-the-scene weather footage from a <a href="http://youtube-trends.blogspot.com/2011/02/big-blizzard-results-in-snowstorm.html">snowstorm across the United States</a> and a category 5 <a href="http://youtube-trends.blogspot.com/2011/02/australia-cyclone-on-scene-footage.html">cyclone on the coast of Australia</a>.<br /><br /></li><li>We tried to figure out how a group of young dance students near Portland got popular <a href="http://youtube-trends.blogspot.com/2011/02/k-pop-across-pacific.html">all the way in South Korea</a>.<br /><br /></li><li>And we continued to highlight each day's top videos including this one of a University of Iowa student whose speech to the State House of Representatives became one of the week's Most Shared clips:</li></ul><br /><iframe title="YouTube video player" class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/FSQQK2Vuf9Q" frameborder="0"></iframe><br /><br />Check back every day for the latest about what's trending on YouTube at <a href="http://www.youtube.com/trends">www.YouTube.com/Trends</a><br /><br /><i>Kevin Allocca, YouTube Trends Manager, recently watched "<a href="http://www.youtube.com/watch?v=9_DLEysEqSM" >Taxista canta igual que Michael Jackson</a>"</i><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8913912091036362264-596496940669491311?l=youtube-global.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/this-weeks-trends-the-president-egypt-and-90s-hip-hop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showtime’s “SHORT stories” recruits YouTube finest to make short films</title>
		<link>https://googledata.org/youtube/showtime%e2%80%99s-%e2%80%9cshort-stories%e2%80%9d-recruits-youtube-finest-to-make-short-films/</link>
		<comments>https://googledata.org/youtube/showtime%e2%80%99s-%e2%80%9cshort-stories%e2%80%9d-recruits-youtube-finest-to-make-short-films/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 18:00:00 +0000</pubDate>
		<dc:creator><![CDATA[Mia]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google youtube]]></category>
		<category><![CDATA[youtube videos]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[For “SHORT stories,” Showtime contacted cutting-edge creators from across the Web and asked them to tell a tale in an innovative way. The series sports the work of some of YouTube’s top creators, so naturally we’re interested in learning a whol...]]></description>
				<content:encoded><![CDATA[<i>For “<a href="http://www.youtube.com/show/shortstories">SHORT stories</a>,” <a href="http://www.youtube.com/user/SHOWTIME">Showtime</a> contacted cutting-edge creators from across the Web and asked them to tell a tale in an innovative way. The series sports the work of some of YouTube’s top creators, so naturally we’re interested in learning a whole lot more about how “SHORT stories” came to be.&nbsp;</i><i>Showtime's </i><i>Trevor Noren tells us more.</i><br /><br /><iframe allowfullscreen="" frameborder="0" height="390" src="http://www.youtube.com/embed/NhnYipRAp3M?rel=0" title="YouTube video player" width="640"></iframe><br /><br /><b>1) What gave you the idea to use YouTube stars in this way?</b><br />YouTube has become a venue for animators and filmmakers to explore new ways to communicate a narrative. Whether it’s an established artist like <a href="http://www.youtube.com/watch?v=JXBV-Ifscn0&amp;list=SL">Don Hertzfeldt</a> or a talent the community has discovered, like <a href="http://www.youtube.com/watch?v=NhnYipRAp3M&amp;list=SL">Cyriak</a> or <a href="http://www.youtube.com/watch?v=ApVKrkp8jYk&amp;list=SL">Levni Yilmaz</a>, YouTube has offered an opportunity for artists to experiment and find out what people respond to. That spirit of innovation seemed like a natural fit for our brand. Unique storytelling is the hallmark of what we do as a network: <a href="http://www.youtube.com/user/SHOWTIME">our shows</a> challenge viewers with characters they haven’t seen before. “<a href="http://www.youtube.com/show/shortstories">SHORT stories</a>” is a way for us to bring our brand to a new audience while at the same time showing the work of these amazing artists to our subscribers.<br /><br /><b>2) What was the process of working with them?</b><br />Our mission statement to the artists was pretty simple: “Tell a story in a way people haven’t seen before.” We figured a directive that open-ended would create a huge range of results. They didn’t disappoint. Don Hertzfeldt made up a language. <a href="http://www.youtube.com/watch?v=4LAffRtZG5w&amp;list=SL">Michael Langan</a> employed thousands of still images to show a run around his block. Cyriak used his hands to tell the story of evolution. Whether acquiring a film already in the works or commissioning something entirely new, we did not interfere with the artists’ creative process. The filmmaker explained what they planned to do and we let them run with it. As a result, we ended up with an incredibly diverse collection of films.<br /> <br /><b>3) What have you learned about the YouTube community over the course of this project?</b><br />How much they embrace the bizarre. It doesn’t matter if they know exactly what the filmmaker is trying to say with their video. They recognize the dedication that goes into creating the piece and they recognize the personality and vision behind it. It’s really amazing and inspiring how open-minded the community is to new ideas.<br /> <br /><b>4) Will you pursue more of these and if so, how are you finding the filmmakers?</b><br />“SHORT stories” will be ongoing. We’ve identified a few potential candidates. We’d like to keep who they are a surprise. That said, the YouTube community is already helping us identify potential filmmakers. Names pop up all the time in comments on the videos. Everyone from Czech great <a href="http://www.youtube.com/results?search_query=Jan+Svankmajer&amp;aq=f">Jan Svankmajer</a> to <a href="http://www.youtube.com/user/MysteryGuitarMan">Mystery Guitar Man</a>. The best way for us to find new talent is to watch and listen to the YouTube community. <br /><br /><b>5) What’s something no one would know about these videos by looking at them?</b><br />The sheer amount of time that went into the creation of some of the films. Inspired by a vintage nutcracker that looked like a fish, it took PES five years to find all of the objects that went into “<a href="http://www.youtube.com/watch?v=-CWOebTREVU&amp;list=SL">The Deep</a>.” For Michael Langan, stitching together all of the still images for “<a href="http://www.youtube.com/watch?v=4LAffRtZG5w&amp;list=SL">Dahlia</a>” took one month for every minute of the film. “<a href="http://www.youtube.com/watch?v=N2j4qa0kh9I&amp;list=SL">Pretty, Dead</a>” by Jeff Scher consists of more than 3,000 individual drawings. The final products themselves are incredible, but when you really start to understand what went into creating them, it’s remarkable.<i>&nbsp;</i><br /><br /><i>Trevor Noren, Creative Director, Digital Content, Showtime, recently watched “<a href="http://www.youtube.com/watch?v=M37dnzo94h4">Shameless Trailer and Behind the Scenes.</a>”</i><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8913912091036362264-3528107949335925473?l=youtube-global.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/showtime%e2%80%99s-%e2%80%9cshort-stories%e2%80%9d-recruits-youtube-finest-to-make-short-films/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super Bowl XLV: fun facts about food, football, and ads</title>
		<link>https://googledata.org/youtube/super-bowl-xlv-fun-facts-about-food-football-and-ads/</link>
		<comments>https://googledata.org/youtube/super-bowl-xlv-fun-facts-about-food-football-and-ads/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 17:39:00 +0000</pubDate>
		<dc:creator><![CDATA[Kate Rose]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google youtube]]></category>
		<category><![CDATA[youtube videos]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[You may notice the streets will be exceptionally quiet this superb 'ol Sunday afternoon, with perhaps only a few pizza delivery vehicles passing by, as Americans gather en masse around the big screen to watch our annual football, food and advertising s...]]></description>
				<content:encoded><![CDATA[<div dir="ltr" style="text-align: left;" trbidi="on">You may notice the streets will be exceptionally quiet this superb 'ol Sunday afternoon, with perhaps only a few pizza delivery vehicles passing by, as Americans gather en masse around the big screen to watch our annual football, food and advertising spectacular: Super Bowl XLV. Two storied teams from the heartland - the Pittsburgh Steelers and Green Bay Packers - will take the field to conclude an exciting and, at times, controversial NFL season. We can only hope the quality of the game will live up to the stage and hype.<br /><br />A few fun facts to keep in mind for this Sunday's big game (6:30pm ET on FOX, btw):<br /><br /><ul style="text-align: left;"><li>The Steelers have played in seven Super Bowls, winning six of them, while the Packers have been four times, winning three. (It should be noted that the Packers have won 12 total "World Championships" of professional football, eight coming before the modern NFL's playoff system)</li><li>The Super Bowl attracts a ginormous television audience that, <a href="http://www.huffingtonpost.com/2010/02/08/super-bowl-2010-ratings-m_n_453503.html">according to Nielsen Co</a>. peaked last year at 106.5 million viewers, topping the 1983 finale of "M-A-S-H" to become the most-watched show in U.S. television history</li><li>Nine out of 10 of the most-watched television shows of all-time were Super Bowls, but <a href="http://online.wsj.com/article/SB10001424052748704281204575002852055561406.html">according to The Wall Street Journal</a>, of the several hours of Super Bowl programming including the game itself, only about 11 minutes will have game action, when the ball is actually in-play</li><li>According to the Hass Avocado Board, an <a href="http://www.gloucestertimes.com/lifestyle/x2104923943/Super-Bowl-Food-Facts">estimated 69.6 million pounds of avocados</a> are expected to be consumed during the Super Bowl, and in general, Americans will eat more on Super Bowl Sunday than on any other day besides Thanksgiving, spending over $55 million dollars on food</li><li>Sunday will be among the <a href="http://money.msn.com/saving-money-tips/post.aspx?post=200ee54a-a8d8-48ba-bcd8-d3f40e6c14a3">top five pizza-ordering days of the year</a>, with some chains accepting pre-orders for pies. Papa John's is estimating they'll travel 300,000 miles in total for deliveries.</li><li>This will also be the first Super Bowl with <a href="http://msn.foxsports.com/nfl/story/Super-Bowl-XLV-Green-Bay-Packers-Pittsburgh-Steelers-to-be-first-no-cheerleaders-020211">no cheerleaders</a> (!), as neither the Packers nor Steelers have squads</li></ul><br />And of course, the Super Bowl is an advertising bonanza, with many people tuning in to see the celebrity-laden ads with absurdly high production values as much as to see the game. Besides paying to produce the ads themselves, advertisers are buying airtime from FOX at a rate of around a whopping $3 million for every 30 seconds, <a href="http://www.msnbc.msn.com/id/41391902/ns/business-business_of_super_bowl_xlv/">according to MSNBC</a>. <br /><br />Is it worth it? This is a question that you can help settle, by going to our <a href="http://www.youtube.com/adblitz">Ad Blitz channel </a>on Super Bowl Sunday to watch and vote on Super Bowl commercials. We'll be adding commercials from participating in-game advertisers to the channel as-close-as-possible after they air, so you can watch, compare, and vote on ads to your heart's content. Your voting will help determine the champion ad, which will be rewarded with a placement in our homepage masthead ad unit, along with the four runners-up, on February 19.<br /><br />If you're looking for last-minute, Super Bowl party planning tips or recipes, you can check out the channel now for a variety of Super Bowl coverage, including this awesome recipe for Clams Casino Dip, from Foodwishes:<br /><div style="text-align: center;"><br /></div><div style="text-align: center;"><iframe allowfullscreen="" class="youtube-player" frameborder="0" height="345" src="http://www.youtube.com/embed/GDOwxk8Og5c" title="YouTube video player" type="text/html" width="560"></iframe></div><br />You can also access the channel and commercials from your web-enabled mobile device: go to <a href="http://m.youtube.com/adblitz">m.youtube.com/adblitz</a> from your mobile browser (or enter "<a href="http://youtube.com/adblitz">youtube.com/adblitz</a>" and you should be redirected).<br /><br />Enjoy the game!<br /><i><br /></i><br /><i>Andrew Bangs, Sports Manager, recently watched “<a href="http://www.youtube.com/watch?v=jhat-xUQ6dw">Queensryche - Silent Lucidity</a>.”</i></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8913912091036362264-1686831252053929677?l=youtube-global.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/super-bowl-xlv-fun-facts-about-food-football-and-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enjoy videos about some of the greatest artworks in the world</title>
		<link>https://googledata.org/youtube/enjoy-videos-about-some-of-the-greatest-artworks-in-the-world/</link>
		<comments>https://googledata.org/youtube/enjoy-videos-about-some-of-the-greatest-artworks-in-the-world/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 00:34:00 +0000</pubDate>
		<dc:creator><![CDATA[A Googler]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google youtube]]></category>
		<category><![CDATA[youtube videos]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Earlier this week, Google unveiled the Google Art Project—a new site that lets you explore hundreds of artworks from 17 of the world’s most acclaimed art museums in extraordinary levels of detail, as well as take 360 degree tours of the museums usi...]]></description>
				<content:encoded><![CDATA[Earlier this week, <a href="http://googleblog.blogspot.com/2011/02/explore-museums-and-great-works-of-art.html">Google unveiled</a> the <a href="http://www.googleartproject.com/">Google Art Project</a>—a new site that lets you explore hundreds of artworks from 17 of the world’s most acclaimed art museums in extraordinary levels of detail, as well as take 360 degree tours of the museums using Street View technology.<br /><br />With this project comes the launch of many of the museums’ very own YouTube channels -- along with an array of new videos about the artworks featured in the project. On the Google Art Project site you can explore 1000+ pieces of artwork at an amazingly high resolution levels. While zooming into a work of art you can also watch YouTube videos about it, as well as reading more about a particular artwork and its artist.  More than 170 works of art in the project have accompanying videos; learn about <a href="http://www.youtube.com/watch?v=tkG960qqMlE">a professional snowboarder’s perspective on an alpine landscape</a>, the <a href="http://www.youtube.com/watch?v=6DrsQ_S2p2g">20+ locations of Rembrandt’s ‘Night Watch’</a> , the <a href="http://www.youtube.com/watch?v=pgOm9rjEtgI&amp;feature">preservation process for Van Gogh’s ‘The Bedroom’</a> or even the <a href="http://www.youtube.com/watch?v=QLkRY28fNG4">live reaction of a pair of identical twins to a 17th century painting of twins</a>.<br /><br /><iframe title="YouTube video player" class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/QLkRY28fNG4" frameborder="0" allowfullscreen=""></iframe><br /><br />You can browse a selection of the featured artwork videos on the <a href="http://www.youtube.com/googleartproject">Art Project’s YouTube channel</a>, where you can also see <a href="http://www.youtube.com/watch?v=aYXdEUB0VgQ">behind the scenes</a> footage of the project. <div><br />This project began as a 20% project for a group of Googlers who are passionate about making art more accessible online. We hope you enjoy these videos and maybe deepen your understanding of some of the world’s most famous works of art.<br /><br /><span style="font-style:italic;">Anna de Paula Hanika, Project Manager, Google Art Project, recently watched “<a href="http://www.youtube.com/watch?v=ZKPeN3ZNCOE">Art Project preview</a>.”</span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8913912091036362264-7031893899509667588?l=youtube-global.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/enjoy-videos-about-some-of-the-greatest-artworks-in-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Egyptian protest footage on YouTube</title>
		<link>https://googledata.org/youtube/egyptian-protest-footage-on-youtube/</link>
		<comments>https://googledata.org/youtube/egyptian-protest-footage-on-youtube/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 01:48:00 +0000</pubDate>
		<dc:creator><![CDATA[Olivia Ma]]></dc:creator>
				<category><![CDATA[Youtube]]></category>
		<category><![CDATA[google youtube]]></category>
		<category><![CDATA[youtube videos]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[It’s been hard to open a laptop or turn on the television over the last week without hearing news of the unrest in Egypt. On YouTube, thousands of videos of the protests have poured in, whether as unfiltered footage from the demonstrations themselves...]]></description>
				<content:encoded><![CDATA[It’s been hard to open a laptop or turn on the television over the last week without hearing news of the unrest in Egypt. On YouTube, thousands of videos of the protests have poured in, whether as unfiltered footage from the demonstrations themselves, or as news reports from our media partners around the globe.<br /><br />We understand how closely the world is following these events, and want to help people access and share this information quickly and easily on YouTube. We’re helping people do this in three ways:<br /><ul><li>    Highlighting the latest footage on <a href="http://youtube.com/citizentube">CitizenTube</a>, our news and politics channel, and inviting people to submit video they’ve come across.</li><li>Pointing our users directly to these videos through banners at the top of YouTube pages, and through links alongside YouTube videos.</li><li>Streaming live coverage of Al Jazeera’s broadcasts about the unfolding events, on both their <a href="http://youtube.com/aljazeera">Arabic</a> and <a href="http://youtube.com/aljazeeraenglish">English</a> YouTube channels.</li></ul>And our Google colleagues have also turned on a <a href="http://googleblog.blogspot.com/2011/01/some-weekend-work-that-will-hopefully.html">speak-to-tweet service</a> to help people in Egypt stay connected at this difficult time.<br /><br />Here’s a playlist of videos that have come in:<br /><br /><span style="  color: rgb(0, 0, 0); background- font-weight: normal; font-style: normal; text-decoration: none; vertical-align: baseline;font-family:Arial;font-size:11pt;color:transparent;" id="internal-source-marker_0.6940335328779587"><object width="480" height="385"><param name="movie" value="http://www.youtube.com/p/7372E865986E4330?hl=en_US&amp;fs=1"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed src="http://www.youtube.com/p/7372E865986E4330?hl=en_US&amp;fs=1" type="application/x-shockwave-flash" width="480" height="385" allowscriptaccess="always" allowfullscreen="true"></embed></object></span><br /><br />YouTube has used similar tools and live streaming technologies in the past to give our users access to information on major world news events, such as the <a href="http://youtube-global.blogspot.com/2010/01/in-aftermath-of-haiti-earthquake.html">Haiti earthquake</a> and the <a href="http://youtube-global.blogspot.com/2009/06/more-footage-from-protests-in-iran-on_8218.html">protests in Iran</a>. We hope this footage provides a unique window into the events unfolding in the streets of Cairo, Alexandria and many other cities across Egypt.<br /><br /><span style="font-style: italic;">Olivia Ma, YouTube News and Politics, recently watched “</span><a href="http://www.youtube.com/watch?v=o7d8HGDEGpU">28th Jan. 2011 -  Storyful - Kasr Al Nile Bridge clashes</a>.<span style="font-style: italic;.">” </span><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8913912091036362264-5595415427319152912?l=youtube-global.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>https://googledata.org/youtube/egyptian-protest-footage-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
