how to add header in jPlayer function in angularJS

I tried like by adding headers inside jPlayer, its not working

const httpHeader = { 'authorization' : '123445'};
if (audioUrl) {
 $(this).jPlayer('setMedia', {
  mp3: audioUrl,
  duration: parseInt(duration, 10),
  headers : new Headers(httpHeader)
 });
}