Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Adobe Analytics not working?


Hi all,
I've integrated Adobe Analytics exactly as in the Support Docs.
It doesn't work at all.
I have a new Media Module from Adobe from last week.
Can it be that I need an older version of the Adobe Code?
Can someone provide a working example?

Thanks for your help.

Frank

3 Community Answers

Ethan Feldman

JW Player Support Agent  
0 rated :

Do you have a link?

m...

User  
0 rated :

I hit a similar roadblock until I realized that in addition to adding the Media module to your s_code file you also have to define some additional omniture values where to initiate Omniutre on your page.

We needed this:

s.loadModule("Media");
if(s.Media !== undefined){
s.Media.trackUsingContextData = true;
s.Media.segmentByMilestones = true;
s.Media.contextDataMapping = {
"a.media.name":"eVar67,prop67",
"a.media.segment":"eVar68",
"a.contentType":"eVar69",
"a.media.timePlayed":"event63",
"a.media.view":"event64",
"a.media.segmentView":"event66",
"a.media.complete":"event65",
"a.media.milestones":{
25: "event67",
50: "event68",
75: "event69"
}
};
s.Media.autoTrack = true;
s.Media.trackVars="events,prop1,prop2,eVar1,eVar2,prop67,eVar67,eVar68,eVar69";
s.Media.trackEvents="event63,event64,event65,event66,event67,event68,event69";
s.Media.trackMilestones ="25,50,75";
}

Ethan Feldman

JW Player Support Agent  
0 rated :

Ah, thanks for Sharing.

This question has received the maximum number of answers.