Questions tagged [jplayer]

jPlayer is the completely free and open source (GPL/MIT) media library written in JavaScript.

A jQuery plugin, jPlayer allows you to rapidly weave cross platform audio and video into your web pages. jPlayer's comprehensive API allows you to create innovative media solutions while support and encouragement is provided by jPlayer's active and growing community.

771 questions
5
votes
2 answers

Storing audio files in html5 local storage- downloading audio files with javascript

I searched and found that html5 does not support directly storing audio. I will convert audios to base64 strings and then I will store in the local storage. I am developing a html5 audio player application with jplayer. I have audios in the server…
Bahri Gökcan
  • 980
  • 3
  • 12
  • 20
5
votes
1 answer

jPLayer Playlist get song name on change

I'm using jplayer playlist with autoplay. Playlist is shown, songs are playing,it is ok. But I want to get current songs name when jplayer changes to next song. I couldnt find any documentation for this. How can I get the current song name when song…
bencagri
  • 184
  • 2
  • 13
5
votes
5 answers

jQuery jPlayer - How to stop all players before playing a new one?

I need to stop all other instances of jPlayer before playing a new one when i click play. Thanks for you help.
Mr_Nizzle
  • 6,644
  • 12
  • 55
  • 85
5
votes
1 answer

Can JPlayer play file from byte array?

I am using JPlayer which plays different audio files based on the the user input. Every time a user enters an input, I am calling a REST web service to retrieve the audio file to play. The response from the REST service is a byte[]. What I am…
javakurious
  • 487
  • 6
  • 13
5
votes
2 answers

How to stream a raw h.264 video in jPlayer?

jplayer supports mp4. But, I have a server that streams a raw h.264 video. Is it possible to stream it directly on the client side using jPlayer? If yes, please tell me how I should do it. If no, how do I put the video into an mp4 container? Or,…
Naren
  • 735
  • 1
  • 9
  • 19
5
votes
1 answer

How to hide song names on Jplayer playlist

I implemented the jplayer playlist, because it moves to next song when first one gets finished. But the thing is, I don't want song names to be displayed on my page. If I remove this piece of code:
shruti
  • 780
  • 9
  • 25
5
votes
2 answers

how to implement multi instance jplayers

If there is anyone who has used jplayer before, I need help with this question. I have multiple jplayers where each player is suppose to play its own audio file. But it is not doing this, if I play a jplayer, then all the jplayers play, all playing…
user2056342
  • 195
  • 3
  • 15
5
votes
1 answer

Jplayer audio not working in firefox, opera and IE but works in Chrome

http://www.jplayer.org/support/ - Here is jplayer suppost (scroll down to see where jplayer does not work in IE 6,7,8, firefox and opera Setting up jplayer audio javascript: http://www.jplayer.org/latest/quick-start-guide/step-7-audio/ Now the…
user1881090
  • 739
  • 4
  • 16
  • 34
5
votes
1 answer

jPlayer stops on calling jQuery.load() method to refresh content on chrome but works on firefox

I am using jPlayer to play audio. We need the play to be uninterrupted. For this, we are using the jQuery.load() method to load page content and replacing the content on the page. We are not refreshing the jPlayer content in any way. The code works…
Akhilesh Aggarwal
  • 187
  • 1
  • 2
  • 9
5
votes
1 answer

How to get the duration of the song in JPlayer

function intilizePlayer(){ $("#jquery_jplayer_1").jPlayer({ ready: function (event) { $(this).jPlayer("setMedia", { oga:song }); songDuration = $(this).jPlayer.status.duration; …
dinesh707
  • 12,106
  • 22
  • 84
  • 134
5
votes
3 answers

Client closes connection when streaming m4v from apache to chrome with jplayer

I've set up a bit of a test site.. I'm trying to implement an HTML5 video to play on a site I'm developing and I want to use jplayer so that it falls back to an swf file if html5 video is not supported. http://dev.johnhunt.com.au/ is what I have so…
John Hunt
  • 4,265
  • 8
  • 45
  • 59
4
votes
1 answer

dynamic jPlayer

I've been trying for a week to create a dynamic jplayer that changes depending on the chosen option in a selectbox. Other Stack Overflow posts have been very helpful, so I hope I'll be able to figure this out. Any links to examples that other people…
Trevor Newhook
  • 889
  • 1
  • 11
  • 29
4
votes
2 answers

Can't change song in jPlayer after setting media

I have some jQuery working that starts a jPlayer playing an MP3 as shown below $("#jquery_jplayer_1").jPlayer({ ready: function () { $(this).jPlayer("setMedia", { mp3: mp3_url }); …
JackMahoney
  • 3,423
  • 7
  • 32
  • 50
4
votes
2 answers

Is it possible to restrict forwarding in HTML5 video?

I am trying to restrict forwarding in my HTML5 video element. But is there any possibility to do this. I want to restrict the fast forwarding of the video, However backward navigation should be allowed. Thanks.
Tushar Ahirrao
  • 12,669
  • 17
  • 64
  • 96
4
votes
3 answers

Protect audio file from being downloaded while still being playable through JQuery JPlayer

I have audio files saved in a folder on my server. They are called by JQuery JPlayer to be played. However if a person looks at the source of the page, they can find the location of the file and simply download it. I want to protect the files…
JimmyBanks
  • 4,178
  • 8
  • 45
  • 72
1 2
3
51 52