Tag Archives: Video

Tune in: New partnerships, features for TV broadcasters in DoubleClick

Today, Daniel Alegre, Google’s President of Global Partnerships, will share an update on new partnerships for DoubleClick’s video business and announce two new features for broadcasters in DoubleClick for Publishers in his keynote at the NAB Show. The new features are Dynamic Ad Insertion, enabling ads to be personalized for each unique viewer watching live or on-demand TV programming; and smarter ad breaks that give broadcasters and distributors greater control.

Personalized TV ads with DoubleClick Dynamic Ad Insertion

Addressable TV advertising, with ads tailored for individual viewers, has long been on the wish list for broadcasters, distributors and advertisers. Tailored ads tend to perform better for advertisers, since they reach the right audience with the right message. They also mean more relevant and useful ads for viewers.

Dynamic Ad Insertion in DoubleClick is a big step towards bringing addressable advertising to TV broadcasters and distributors. Rather than a “one-size-fits-all” approach, this feature lets broadcasters create individual streams using server-side ad insertion, which can then seamlessly deliver tailored ads, across both online screens and set-top box video on demand. This builds on our experiments with dynamic ad insertion into live linear TV through the Google Fiber set-top-box that we announced at last year’s NAB Show.

Some of our partners have already put this new feature to the test, with Dynamic Ad Insertion supporting two of the highest profile TV events in the last year: the Rugby World Cup Finals on TF1, the leading network in France, and the Republican Presidential Debates on Fox News, a leading news network in the US. For the millions of viewers that tuned in, TF1 and Fox News were able to deliver a fully addressable viewing experience using Dynamic Ad Insertion.

Smarter TV ad breaks

Daniel will also announce new capabilities for DoubleClick clients that will give them more control over what ads run together during ad breaks, a long-time standard for television. This could mean being able to separate competitors’ ads, like making sure that two automotive ads don’t appear together. It could also help broadcasters comply with other rules, like ensuring an alcohol ad and children's cereal ad don’t run in the same break. This new capability will be available across all of a broadcaster’s ad inventory, direct sold and programmatic.

New partnerships

DoubleClick is focused on building advertising solutions that meet the changing needs of the TV ecosystem. We’re proud of our longstanding partnerships with industry leaders like AMC Networks in the US and Globo in South America. Today we add three more to the list: we’re happy to welcome MCN, Roku and Cablevision as partners. They’ve all signed on to use DoubleClick for Publishers to serve ads and monetize cross-screen TV and video content.


“As the conventional TV and digital video worlds converge, people are watching more content than ever across a variety of screens. At Cablevision, we’re focused on developing innovative solutions that deliver the best experience for our viewers in this new cross-screen world and unlocking new opportunities for our advertisers. We are enthusiastic about using Google's DoubleClick for seamless advertising delivery across our set-top boxes and connected devices. Together, we are enabling more personalized and relevant ads with addressable and dynamic ad insertion.”
- Kristin Dolan, Chief Operating Officer, Cablevision


You can watch the live stream of Daniel’s keynote at 9 AM PT here.

Posted by Rany Ng
Director of Product Management, Video & TV Advertising, Google

Netshoes sees 5X increase in conversion rates with DoubleClick Bid Manager

E-commerce in Brazil has grown 20+% year over year for the last five years1. In this highly competitive environment, choosing the right advertising partner is a critical strategic decision for a retail brand to ensure their message breaks through.

Netshoes is the world's largest sports retailer, selling everything from basketball shoes to fitness gear across all of Latin America. Historically they have been deeply focused on performance advertising, and at times have used up to 8 different advertising platforms and retargeters at once in search of the best results.

But recently, Netshoes decided this approach wasn't giving them the best results. They found they were competing against themselves by bidding for the same audience with multiple ad providers, driving costs up and ROI down. When they consolidated their media buys across display and video with DoubleClick Bid Manager, the results speak for themselves:
  • 400% better conversion rate than with other channels.
  • 30% view rate on TrueView video ads, with CPVs lower than the market average.
  • 15% time savings across the Netshoes media buying team.

"The results we get from DoubleClick are simply much better than those from other partners in our past"
—Danilo Mangini, Marketing Manager, Netshoes

Learn more about Netshoes’ approach in the full case study.
Posted by Kelly Cox
Product Marketing Manager, Google
1 Source: e-bit Webshoppers

Smoother <video> in Chrome

Video quality matters, and when an HD or HFR playback isn’t smooth, we notice. Chrome noticed. YouTube noticed. So we got together to make YouTube video playback smoother in Chrome, and we call it Project Butter.


For some context, our brains fill in the motion in between frames if each frame is onscreen the same amount of time - this is called motion interpolation. In other words, a 30 frames per second video won’t appear smooth unless each frame is spaced evenly each 1/30th of a second. Smoothness is more complicated than just this - you can read more about it in this article by Michael Abrash at Valve.


Frame rates, display refresh rates and cadence
Your device’s screen redraws itself at a certain frame rate. Videos present frames at a certain rate. These rates are often not the same. At YouTube we commonly see videos authored at 24, 25, 29.97, 30, 48, 50, 59.94, and 60 frames per second (fps) and these videos are viewed on displays with different refresh rates - the most common being 50Hz (Europe) and 60Hz (USA).  


For a video to be smooth we need to figure out the best, most regular way to display the frames - the best cadence. The ideal cadence is calculated as the ratio of the display rate to frame rate. For example, if we have a 60Hz display (a 1/60 second display interval) and a 30 fps clip, 60 / 30 == 2 which means each video frame should be displayed for two display intervals of total duration 2 * 1/60 second.


We played videos a bunch of different ways and scored them on smoothness.  


Smoothness score
Using off the shelf HDMI capture hardware and some special video clips we computed a percentage score based on the number of times each video frame was displayed relative to a calculated optimal display count. The higher the score, the more frames aligned with the optimal display frequency. Below is a figure showing how Chrome 43 performed when playing a 30fps clip back on a 60Hz display:


Smoothness: 68.49%, ~Dropped: 5 / 900 (0.555556%)


The y-axis is the number of times each frame was displayed, while the x-axis is the frame number. As mentioned previously the calculated ideal display count for a 30fps clip on a 60Hz display is 2. So, in an ideal situation, the graph should be a flat horizontal line at 2, yet Chrome dropped many frames and displayed certain frames for as many as 4 display cycles! The smoothness score reflects this -  only 68.49 percent of frames were displayed correctly. How could we track down what was going on?


Using some of the performance tracing tools built into Chrome, we identified timing issues inherent to the existing design for video rendering as the culprit. These issues resulted in both missed and irregular video frames on a regular basis.



There were two main problems in the interactions between Chrome’s compositor (responsible for drawing frames) and its media pipeline (responsible for generating frames) --  
  1. The compositor didn’t have a timely way of knowing when a video frame needed display. Video frames were selected on the media pipeline thread while the compositor would occasionally come along looking for them on the compositor thread, but if the compositor thread was busy it wouldn’t get the notification on time.
  2. Chrome’s media pipeline didn’t know when the compositor would be ready to draw its next new frame. This led to the media pipeline sometimes picking a frame that was too old by the time the compositor displayed it.


In Chrome 44, we re-architected the media and compositor pipelines to communicate carefully about the intent to generate and display. Additionally, we also improved which video frames to pick by using the optimal display count information. With these changes, Chrome 44 significantly improved on smoothness scores across all video frame rates and display refresh rates:
Smoothness: 99.33%, ~Dropped: 0 / 900 (0.000000%)


Smooth like butter. Read more in public design document, if you’re interested in further details.


Dale Curtis, Software Engineer, recently watched WARNING: SCARIEST GAME IN YEARS | Five Nights at Freddy's - Part 1
Richard Leider, Engineering Manager, recently watched Late Art Tutorial.
Renganathan Ramamoorthy, Product Manager, recently watched Video Game High School

Programmatic helps brands make the most of micro-moments

Every day, your audience is filling their days with hundreds if not thousands of micro-moments—intent-rich moments when preferences are shaped and decisions are made. As consumers spread their attention across more and more screens and channels, those moments can happen almost anywhere, anytime. People search on their smartphones while in front of the TV. They watch YouTube videos on their tablets while texting their friends. They open a mobile app to shop for the perfect gift, then head to the store to buy it. With mobile devices never more than an arm’s length away, people can find and buy anything, anytime.

For marketers, this means the purchase funnel is wildly more complicated than it was just a few years ago.

“Brands can use programmatic to assemble a consumer’s micro-moments in just the right way—like joining puzzle pieces together—to see a detailed blueprint of consumer intent.”

It’s hard to plan for nonlinear purchase paths, but programmatic advertising can help, enabling brands to reach the right person with the right message in the moment of opportunity. Brands can use programmatic to assemble a consumer’s micro-moments in just the right way—like joining puzzle pieces together—to see a detailed blueprint of consumer intent. That’s a powerful proposition, and it’s why programmatic advertising spend is projected to grow by more than 77% this year.1

In this article, we share four tips for using programmatic to win these micro-moments and examples of brands that are doing it right.

Visit DoubleClick.com to read the full article.

Posted by Kelly Cox
Product Marketing Manager, DoubleClick

1. IDC, Worldwide Programmatic Display Forecast, 2015.

Understanding How Viewability Relates to Brand Metrics for Video Ads

As a brand trying to reach consumers in today’s increasingly fragmented media landscape, it is critical that you understand the impact of your ads on brand metrics such as awareness and consideration.

Viewability is the starting point, an initial understanding of whether the ad had a chance to be seen. We have talked before about why measuring the viewability of advertising matters.

In December 2014, we shared insights on the state of display ad viewability across the web. As a continuation of that effort, in May we released new insights from our video ad platforms, including YouTube, to start the discussion about the state of video ad viewability.


We wanted to take this research a step further, by analyzing the relationship between viewability and brand metrics.

To do so, we took our Brand Lift solution, which gives you insights into what impact your ads have on the consumer journey - from awareness, to ad recall, to brand interest - and tied the data to viewability metrics from our Active View technology for a set of YouTube TrueView ads. By connecting these two solutions, we were able to draw out some insights about the relationship between viewability and brand metrics.

Sight, Sound and Motion Combined Drive Higher Lift

When it comes to brand metrics, ad recall is a foundation for measuring the impact of your ad. As a brand advertiser, knowing if your ad breaks through with users is a key first step to understanding the overall impact of an ad on a suite of brand metrics. In this analysis, we were able to analyze how being able to hear and see your ad affected a user’s ability to recall your ad.

Our data shows that users exposed to even one aspect of your video ad (audio or video only), exhibit significant lift in ad recall. However, the full immersive experience of sight, sound and motion delivers more ad recall than either audio or video alone. In fact, the impact on ad recall was 23% higher when users were exposed to ads with audio and video together versus ads with just audio alone.

The Longer in View, the Better You Do (on Brand Metrics)

Time in view also plays a large role when it comes to moving the needle on brand awareness and consideration. We recently introduced the ability for Active View users to measure average viewable time - the average time, in seconds, a given ad appeared on screen - in Doubleclick Bid Manager. By connecting these measurements, we can see the relationship between viewable time and brand metrics.

We found that there is a consistent relationship between how long an ad is viewable and increases in brand awareness and consideration. The longer a user views your ad, the higher the lift in these two important brand metrics


What the Results Mean for Your Brand

These results prompt you to think about your brand advertising in a few important ways:
  • Are users viewing your creative for longer periods of time? Brand metrics continue to get higher the longer a user views your ad.
  • Are you buying the right media to have an impact on brand metrics? YouTube’s opt-in TrueView ads are uniquely suited to deliver long-form video content at scale for brand advertisers.
  • Finally, are you thinking beyond viewability to capture effectiveness metrics? You want your ads to move consumers at the moments that matter, and measuring the impact on brand metrics will make for more effective ad spend.
This is just the beginning of understanding what impacts brand metrics for video ads. As brands look to measure the effectiveness of their digital video advertising, a continued understanding of what factors drive brand metrics will be crucial to more effective brand spend.

Read further research on the impact of online video.

To read all of our research on viewability, check out thinkwithgoogle.com/viewability.

To see how viewability is measured, visit our interactive Active View demo.

Sanaz Ahari, Group Product Manager, Brand Measurement

Understanding how viewability relates to brand metrics for video ads

As a brand trying to reach consumers in today’s increasingly fragmented media landscape, it is critical that you understand the impact of your ads on brand metrics such as awareness and consideration.

Viewability is the starting point, an initial understanding of whether the ad had a chance to be seen. We have talked before about why measuring the viewability of advertising matters.

In December 2014, we shared insights on the state of display ad viewability across the web. As a continuation of that effort, in May we released new insights from our video ad platforms, including YouTube, to start the discussion about the state of video ad viewability.


We wanted to take this research a step further, by analyzing the relationship between viewability and brand metrics.

To do so, we took our Brand Lift solution, which gives you insights into what impact your ads have on the consumer journey - from awareness, to ad recall, to brand interest - and tied the data to viewability metrics from our Active View technology for a set of YouTube TrueView ads. By connecting these two solutions, we were able to draw out some insights about the relationship between viewability and brand metrics.

Sight, sound and motion combined drive higher lift

When it comes to brand metrics, ad recall is a foundation for measuring the impact of your ad. As a brand advertiser, knowing if your ad breaks through with users is a key first step to understanding the overall impact of an ad on a suite of brand metrics. In this analysis, we were able to analyze how being able to hear and see your ad affected a user’s ability to recall your ad.

Our data shows that users exposed to even one aspect of your video ad (audio or video only), exhibit significant lift in ad recall. However, the full immersive experience of sight, sound and motion delivers more ad recall than either audio or video alone. In fact, the impact on ad recall was 23% higher when users were exposed to ads with audio and video together versus ads with just audio alone.

The longer in view, the better you do (on brand metrics)

Time in view also plays a large role when it comes to moving the needle on brand awareness and consideration. We recently introduced the ability for Active View users to measure average viewable time - the average time, in seconds, a given ad appeared on screen - in Doubleclick Bid Manager. By connecting these measurements, we can see the relationship between viewable time and brand metrics.

We found that there is a consistent relationship between how long an ad is viewable and increases in brand awareness and consideration. The longer a user views your ad, the higher the lift in these two important brand metrics


What the results mean for your brand

These results prompt you to think about your brand advertising in a few important ways:
  • Are users viewing your creative for longer periods of time? Brand metrics continue to get higher the longer a user views your ad.
  • Are you buying the right media to have an impact on brand metrics? YouTube’s opt-in TrueView ads are uniquely suited to deliver long-form video content at scale for brand advertisers.
  • Finally, are you thinking beyond viewability to capture effectiveness metrics? You want your ads to move consumers at the moments that matter, and measuring the impact on brand metrics will make for more effective ad spend.
This is just the beginning of understanding what impacts brand metrics for video ads. As brands look to measure the effectiveness of their digital video advertising, a continued understanding of what factors drive brand metrics will be crucial to more effective brand spend.

Read further research on the impact of online video.

To read all of our research on viewability, check out thinkwithgoogle.com/viewability.

To see how viewability is measured, visit our interactive Active View demo.

Sanaz Ahari, Group Product Manager, Brand Measurement

Focusing investments to improve buying on YouTube

At YouTube, over the past few years we’ve heard from clients that they want to access our marquee formats, such as TrueView, through programmatic channels. We’ve been investing to make that happen and recently made TrueView ads, which represent 85% of YouTube in-stream ads, available programmatically in DoubleClick Bid Manager (DBM). Clients have been pleased with the performance: those buying TrueView this way are already seeing higher engagement and view-through rates than with other video ad formats.

To continue improving the YouTube advertising experience for as many of our clients as possible, we’ll be focusing our future development efforts on the formats and channels used by most of our partners. To enable that, as of the end of the year, we’ll no longer support the small amount of YouTube buying happening on the DoubleClick Ad Exchange.

With this change, we’ll be able to invest even more in creating the best and most effective YouTube advertising and buying experiences possible, continuing our efforts in TrueView and offerings like Google Preferred. Video advertising and programmatic buying are growing rapidly and being focused in our investments will help us drive them forward at an even faster rate.

Posted by Neal Mohan, VP, Display & Video Advertising, Google

Working together to filter automated data-center traffic

Today the Trustworthy Accountability Group (TAG) announced a new pilot blacklist to protect advertisers across the industry. This blacklist comprises data-center IP addresses associated with non-human ad requests. We're happy to support this effort along with other industry leaders—Dstillery, Facebook, MediaMath, Quantcast, Rubicon Project, TubeMogul and Yahoo—and contribute our own data-center blacklist. As mentioned to Ad Age and in our recent call to action, we believe that if we work together we can raise the fraud-fighting bar for the whole industry.

Data-center traffic is one of many types of non-human or illegitimate ad traffic. The newly shared blacklist identifies web robots or “bots” that are being run in data centers but that avoid detection by the IAB/ABC International Spiders & Bots List. Well-behaved bots announce that they're bots as they surf the web by including a bot identifier in their declared User-Agent strings. The bots filtered by this new blacklist are different. They masquerade as human visitors by using User-Agent strings that are indistinguishable from those of typical web browsers.

In this post, we take a closer look at a few examples of data-center traffic to show why it’s so important to filter this traffic across the industry.
Impact of the data-center blacklist
When observing the traffic generated by the IP addresses in the newly shared blacklist, we found significantly distorted click metrics. In May of 2015 on DoubleClick Campaign Manager alone, we found the blacklist filtered 8.9% of all clicks. Without filtering these clicks from campaign metrics, advertiser click-through rates would have been incorrect and for some advertisers this error would have been very large.

Below is a plot that shows how much click-through rates in May would have been inflated across the most impacted of DoubleClick Campaign Manager’s larger advertisers.

Two examples of bad data-center traffic
There are two distinct types of invalid data-center traffic: where the intent is malicious and where the impact on advertisers is accidental. In this section we consider two interesting examples where we’ve observed traffic that was likely generated with malicious intent.

Publishers use many different strategies to increase the traffic to their sites. Unfortunately, some are willing to use any means necessary to do so. In our investigations we’ve seen instances where publishers have been running software tools in data centers to intentionally mislead advertisers with fake impressions and fake clicks.

First example
UrlSpirit is just one example of software that some unscrupulous publishers have been using to collaboratively drive automated traffic to their websites. Participating publishers install the UrlSpirit application on Windows machines and they each submit up to three URLs through the application’s interface. Submitted URLs are then distributed to other installed instances of the application, where Internet Explorer is used to automatically visit the list of target URLs. Publishers who have not installed the application can also leverage the network of installations by paying a fee.

At the end of May more than 82% of the UrlSpirit installations were being run on machines in data centers. There were more than 6,500 data-center installations of UrlSpirit, with each data-center installation running in a separate virtual machine. In aggregate, the data-center installations of UrlSpirit were generating a monthly rate of at least half a billion ad requests— an average of 2,500 fraudulent ad requests per installation per day.

Second Example
HitLeap is another example of software that some publishers are using to collaboratively drive automated traffic to their websites. The software also runs on Windows machines, and each instance uses the Chromium Embedded Framework to automatically browse the websites of participating publishers—rather than using Internet Explorer.

Before publishers can use the network of installations to drive traffic to their websites, they need browsing minutes. Participating publishers earn browsing minutes by running the application on their computers. Alternatively, they can simply buy browsing minutes—with bundles starting at $9 for 10,000 minutes or up to 1,000,000 minutes for $625. 

Publishers can specify as many target URLs as they like. The number of visits they receive from the network of installations is a function of how long they want the network of bots to spend on their sites. For example, ten browsing minutes will get a publisher five visits if the publisher requests two-minute visit durations.

In mid-June, at least 4,800 HitLeap installations were being run in virtual machines in data centers, with a unique IP associated with each HitLeap installation. The data-center installations of HitLeap made up 16% of the total HitLeap network, which was substantially larger than the UrlSpirit network.

In aggregate the data-center installations of HitLeap were generating a monthly rate of at least a billion fraudulent ad requests—or an average of 1,600 ad requests per installation per day.

Not only were these publishers collectively responsible for billions of automated ad requests, but their websites were also often extremely deceptive. For example, of the top ten webpages visited by HitLeap bots in June, nine of these included hidden ad slots -- meaning that not only was the traffic fake, but the ads couldn’t have been seen even if they had been legitimate human visitors. 

http://vedgre.com/7/gg.html is illustrative of these nine webpages with hidden ad slots. The webpage has no visible content other than a single 300×250px ad. This visible ad is actually in a 300×250px iframe that includes two ads, the second of which is hidden. Additionally, there are also twenty-seven 0×0px hidden iframes on this page with each hidden iframe including two ad slots. In total there are fifty-five hidden ads on this page and one visible ad. Finally, the ads served on http://vedgre.com/7/gg.html appear to advertisers as though they have been served on legitimate websites like indiatimes.com, scotsman.com, autotrader.co.uk, allrecipes.com, dictionary.com and nypost.com, because the tags used on http://vedgre.com/7/gg.html to request the ad creatives have been deliberately spoofed.

An example of collateral damage
Unlike the traffic described above, there is also automated data-center traffic that impacts advertising campaigns but that hasn’t been generated for malicious purposes. An interesting example of this is an advertising competitive intelligence company that is generating a large volume of undeclared non-human traffic.

This company uses bots to scrape the web to find out which ad creatives are being served on which websites and at what scale. The company’s scrapers also click ad creatives to analyze the landing page destinations. To provide its clients with the most accurate possible intelligence, this company’s scrapers operate at extraordinary scale and they also do so without including bot identifiers in their User-Agent strings.

While the aim of this company is not to cause advertisers to pay for fake traffic, the company’s scrapers do waste advertiser spend. They not only generate non-human impressions; they also distort the metrics that advertisers use to evaluate campaign performance—in particular, click metrics. Looking at the data across DoubleClick Campaign Manager this company’s scrapers were responsible for 65% of the automated data-center clicks recorded in the month of May.

Going forward
Google has always invested to prevent this and other types of invalid traffic from entering our ad platforms. By contributing our data-center blacklist to TAG, we hope to help others in the industry protect themselves. 

We’re excited by the collaborative spirit we’ve seen working with other industry leaders on this initiative. This is an important, early step toward tackling fraudulent and illegitimate inventory across the industry and we look forward to sharing more in the future. By pooling our collective efforts and working with industry bodies, we can create strong defenses against those looking to take advantage of our ecosystem. We look forward to working with the TAG Anti-fraud working group to turn this pilot program into an industry-wide tool.


Posted by Vegard Johnsen, Product Manager Google Ad Traffic Quality

Working together to filter automated data-center traffic

Today the Trustworthy Accountability Group (TAG) announced a new pilot blacklist to protect advertisers across the industry. This blacklist comprises data-center IP addresses associated with non-human ad requests. We're happy to support this effort along with other industry leaders—Dstillery, Facebook, MediaMath, Quantcast, Rubicon Project, TubeMogul and Yahoo—and contribute our own data-center blacklist. As mentioned to Ad Age and in our recent call to action, we believe that if we work together we can raise the fraud-fighting bar for the whole industry.

Data-center traffic is one of many types of non-human or illegitimate ad traffic. The newly shared blacklist identifies web robots or “bots” that are being run in data centers but that avoid detection by the IAB/ABC International Spiders & Bots List. Well-behaved bots announce that they're bots as they surf the web by including a bot identifier in their declared User-Agent strings. The bots filtered by this new blacklist are different. They masquerade as human visitors by using User-Agent strings that are indistinguishable from those of typical web browsers.

In this post, we take a closer look at a few examples of data-center traffic to show why it’s so important to filter this traffic across the industry.
Impact of the data-center blacklist
When observing the traffic generated by the IP addresses in the newly shared blacklist, we found significantly distorted click metrics. In May of 2015 on DoubleClick Campaign Manager alone, we found the blacklist filtered 8.9% of all clicks. Without filtering these clicks from campaign metrics, advertiser click-through rates would have been incorrect and for some advertisers this error would have been very large.

Below is a plot that shows how much click-through rates in May would have been inflated across the most impacted of DoubleClick Campaign Manager’s larger advertisers.

Two examples of bad data-center traffic
There are two distinct types of invalid data-center traffic: where the intent is malicious and where the impact on advertisers is accidental. In this section we consider two interesting examples where we’ve observed traffic that was likely generated with malicious intent.

Publishers use many different strategies to increase the traffic to their sites. Unfortunately, some are willing to use any means necessary to do so. In our investigations we’ve seen instances where publishers have been running software tools in data centers to intentionally mislead advertisers with fake impressions and fake clicks.

First example
UrlSpirit is just one example of software that some unscrupulous publishers have been using to collaboratively drive automated traffic to their websites. Participating publishers install the UrlSpirit application on Windows machines and they each submit up to three URLs through the application’s interface. Submitted URLs are then distributed to other installed instances of the application, where Internet Explorer is used to automatically visit the list of target URLs. Publishers who have not installed the application can also leverage the network of installations by paying a fee.

At the end of May more than 82% of the UrlSpirit installations were being run on machines in data centers. There were more than 6,500 data-center installations of UrlSpirit, with each data-center installation running in a separate virtual machine. In aggregate, the data-center installations of UrlSpirit were generating a monthly rate of at least half a billion ad requests— an average of 2,500 fraudulent ad requests per installation per day.

Second example
HitLeap is another example of software that some publishers are using to collaboratively drive automated traffic to their websites. The software also runs on Windows machines, and each instance uses the Chromium Embedded Framework to automatically browse the websites of participating publishers—rather than using Internet Explorer.

Before publishers can use the network of installations to drive traffic to their websites, they need browsing minutes. Participating publishers earn browsing minutes by running the application on their computers. Alternatively, they can simply buy browsing minutes—with bundles starting at $9 for 10,000 minutes or up to 1,000,000 minutes for $625. 

Publishers can specify as many target URLs as they like. The number of visits they receive from the network of installations is a function of how long they want the network of bots to spend on their sites. For example, ten browsing minutes will get a publisher five visits if the publisher requests two-minute visit durations.

In mid-June, at least 4,800 HitLeap installations were being run in virtual machines in data centers, with a unique IP associated with each HitLeap installation. The data-center installations of HitLeap made up 16% of the total HitLeap network, which was substantially larger than the UrlSpirit network.

In aggregate the data-center installations of HitLeap were generating a monthly rate of at least a billion fraudulent ad requests—or an average of 1,600 ad requests per installation per day.

Not only were these publishers collectively responsible for billions of automated ad requests, but their websites were also often extremely deceptive. For example, of the top ten webpages visited by HitLeap bots in June, nine of these included hidden ad slots -- meaning that not only was the traffic fake, but the ads couldn’t have been seen even if they had been legitimate human visitors. 

http://vedgre.com/7/gg.html is illustrative of these nine webpages with hidden ad slots. The webpage has no visible content other than a single 300×250px ad. This visible ad is actually in a 300×250px iframe that includes two ads, the second of which is hidden. Additionally, there are also twenty-seven 0×0px hidden iframes on this page with each hidden iframe including two ad slots. In total there are fifty-five hidden ads on this page and one visible ad. Finally, the ads served on http://vedgre.com/7/gg.html appear to advertisers as though they have been served on legitimate websites like indiatimes.com, scotsman.com, autotrader.co.uk, allrecipes.com, dictionary.com and nypost.com, because the tags used on http://vedgre.com/7/gg.html to request the ad creatives have been deliberately spoofed.

An example of collateral damage
Unlike the traffic described above, there is also automated data-center traffic that impacts advertising campaigns but that hasn’t been generated for malicious purposes. An interesting example of this is an advertising competitive intelligence company that is generating a large volume of undeclared non-human traffic.

This company uses bots to scrape the web to find out which ad creatives are being served on which websites and at what scale. The company’s scrapers also click ad creatives to analyze the landing page destinations. To provide its clients with the most accurate possible intelligence, this company’s scrapers operate at extraordinary scale and they also do so without including bot identifiers in their User-Agent strings.

While the aim of this company is not to cause advertisers to pay for fake traffic, the company’s scrapers do waste advertiser spend. They not only generate non-human impressions; they also distort the metrics that advertisers use to evaluate campaign performance—in particular, click metrics. Looking at the data across DoubleClick Campaign Manager this company’s scrapers were responsible for 65% of the automated data-center clicks recorded in the month of May.

Going forward
Google has always invested to prevent this and other types of invalid traffic from entering our ad platforms. By contributing our data-center blacklist to TAG, we hope to help others in the industry protect themselves. 

We’re excited by the collaborative spirit we’ve seen working with other industry leaders on this initiative. This is an important, early step toward tackling fraudulent and illegitimate inventory across the industry and we look forward to sharing more in the future. By pooling our collective efforts and working with industry bodies, we can create strong defenses against those looking to take advantage of our ecosystem. We look forward to working with the TAG Anti-fraud working group to turn this pilot program into an industry-wide tool.


Posted by Vegard Johnsen, Product Manager Google Ad Traffic Quality

Making it easier to deliver compelling experiences across screens


We’ve explained how Programmatic Guaranteed in DoubleClick Bid Manager and Native Ads in DoubleClick for Publishers help ensure your brand shows up in the right place and context. But once you’re present, you have to show a relevant, engaging message to each viewer. Today, we’re excited to launch three new mobile video formats for DoubleClick and a new Creative Preview App, to make it easier to deliver compelling experiences across screens.
Bring interactive video to mobile devices: Video Cue Points component in Google Web Designer
The Video Cue Points component, now available for download, allows developers to build an interactive video ad that looks like VPAID, except that the video runs directly within the display ad on mobile devices. Interactive HTML5 banners with video might take 2-3 weeks of developer time to hand code, but with Google Web Designer and our Video Cue Points component, it can take as little as 3-4 hours. 

“Teaser Reels” mobile video component in DoubleClick Studio
With Teaser Reels, you can easily create an HTML5 display ad with an autoplay video teaser. Imagine an interstitial between game levels or directly within mobile web content - a user sees the teaser video automatically and then can click to play the entire video on their device. This will be launching in mid-July, so check back on our help center for more details. (Studio login required)

New mobile in-app templates in Google Web Designer
Our mobile starter templates make it easy to create rich in-app experiences, such as this expandable HTML5 video unit, built by the creative agency Think Jam to promote the release of Warner Brother’s Hobbit film. Learn more about Google Web Designer templates here

The new Creative Preview App
Once you've built ads specifically designed for mobile, you'll want to preview them across device types to ensure the user experience is positive in every environment and size. We’ve launched the Creative Preview App, now available for Google Play and coming soon to iOS, which allows you to push mobile ads from DoubleClick Studio directly to your mobile device. Now you can preview and test mobile ads in an actual mobile environment. You can also test the exits in your ads to see reporting metrics come through in the DoubleClick Studio output console on your desktop. 
We’re working to make the process of building rich, engaging ads for every environment more seamless for brands and agencies, from creative authoring through to delivering the right ad to the right customer at the right time. 

Posted by Karin Hennessy, Product Manager, DoubleClick Creative Solutions