Ad Source Details:
- Ad Source:
- Ad Formats Supported: Video, Interstitial HTML
- Ad Source Type: SDK
- Website: https://telaria.com/
- Sign Up Page: https://telaria.com/contact-us/
- Support: https://github.com/tremorvideomobile
- Dynamic Bid Floor: yes - info here
How to Set Up the Telaria (formerly Tremor Video) Ad Source
Step 1: Log on to http://platform.aerserv.com/ and click on the Ad Sources link at the top of the page
Step 2: Click the + or the Add New Ad Source button on the page
Step 3: Enter a Name for the ad source (example: Telaria Video)
Step 4: Select Tremor (SDK) as the ad source
Step 5: Select Video or Interstitial HTML in the Ad Type drop down menu
Step 6: Enter the following fields that are specific to the Tremor ad source:
FIELD | DESCRIPTION | REQUIRED/OPTIONAL |
---|---|---|
App ID (also known as Code) |
This is your unique ad unit (placement) code, assigned by Telaria. |
Required |
Step 7: Enter estimated CPM (e.g. 3.50). This value is used as the default CPM, not the floor.
Step 8: Select desired Placement to bind this ad source to
Step 9: Configure Country or DMA targeting
Step 10: Configure Device targeting
Step 11: Click Save
Locating the Telaria (formerly Tremor Video) Credentials
Step 1: In your Telaria dashboard, navigate to the Inventory (1) page
Step 2: Under the Inventory section (left side), drill down to the desired Ad Unit (2). The hierarchy of the Inventory is as follows: Seat > Publisher > Brand > Supply > Ad Unit
Step 3: You will find your Code (3) under the General section.
Android
AerServ SDK |
Step 1. Locate the Telaria files inside network-support/Tremor/
Step 2. Add TremorVideo.aar
to your app's lib folder, i.e. [Project Name]/app/libs
Step 3. Add the following settings inside your application's build.gradle
:
dependencies {
compile 'com.google.android.gms:play-services-ads:10.2.1'
compile(name:'TremorVideo', ext:'aar')
}
Step 4. Add the following permission to your AndroidManifest.xml
:
<!-- Required by Telaria -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Step 5. Add the following activity to your AndroidManifest.xml
:
<activity
android:name="com.tremorvideo.sdk.android.videoad.Playvideo"
android:configChanges="keyboardHidden|orientation|screenSize|screenLayout|smalledScreenSize"
android:hardwareAccelerated="true"
android:exported="false">
<intent-filter>
<action andriod:name="com.tremorvideo.sdk.android.videoad.Playvideo" />
<category android:name="android.intent.category.EMBED" />
</intent-filter>
</activity>
iOS
AerServ SDK |
Step 1. Add the Telaria SDK in the folder network-support/Tremor/TremorVideoAd.framework
into your project frameworks.
Add the following libraries and frameworks to Target > Build Phases > Link Binary With Libraries:
Accounts.framework (Set to Optional)
AdSupport.framework (Set to Optional)
AssetsLibrary.framework (Set to Optional)
AudioToolbox.framework (Set to Optional)
AVFoundation.framework (Set to Optional)
CoreGraphics.framework (Set to Optional)
CoreLocation.framework (Set to Optional)
CoreMedia.framework (Set to Optional)
CoreTelephony.framework (Set to Optional)
libz.tbd (Set to Optional)
libSystem.tbd (Set to Optional)v
MapKit.framework (Set to Optional)
MediaPlayer.framework (Set to Optional)
MessageUI.framework (Set to Optional)
Quartz.framework (Set to Optional)
SystemConfiguration.framework (Set to Optional)
Twitter.framework (Set to Optional)
Comments