Questions tagged [dailymotion-api]

The API to embed Dailymotion on a website or to query Dailymotion data

Dailymotion provides two APIs:

  • The Player API lets you embed Dailymotion videos on a web page.
  • The Data API (Graph API) lets you manipulate Dailymotion data (users, videos, players, …).
247 questions
20
votes
4 answers

How to get the video thumbnail from Dailymotion video from the video id of that video like in youtube?

For youtube I use something like this: where $video_id is the code of that video from url. Can I do something similar for Dailymotion…
Derfder
  • 3,204
  • 11
  • 50
  • 85
4
votes
1 answer

Publish angular package with own typings - types reference contains wrong path

I've written an angular library that contains a DailymotionPlayerComponent. The library basically inserts the https://api.dmcdn.net/all.js script into the DOM and then calls DM.player(element, {}) to setup the component. The code is hosted here. git…
Pieterjan
  • 2,738
  • 4
  • 28
  • 55
4
votes
1 answer

How to make custom player to play Dailymotion videos?

I have created Custom Youtube Player using VideoJS. But I did not find out how can I create custom player to play Dailymotion videos? I have read everything here but does not get any help. https://developer.dailymotion.com/player I have tried…
Muhammad Hassaan
  • 7,296
  • 6
  • 30
  • 50
4
votes
2 answers

Upload rate limit on Dailymotion API

After an upload, the Dailymotion API return this error : You reached your upload rate limit, please slow down. That was the second upload of the journey, the first was for the same video. The video size is about 700 MB, and the duration is 2…
3
votes
1 answer

How to stop autoplay next video dailymotion?

I have created a test page with two example: Iframe embed HTML JavaScript SDK I have tried to set parameter "queue-autoplay-next" to false but not working and when first video finish automatically start the secondo one. Documentation here:…
Luca
  • 31
  • 1
  • 4
3
votes
1 answer

How to get .stream_hls_url of any video?

For example http://www.dailymotion.com/video/x61t5f7 HLS video url for video id "x61t5f7" : http://proxy-079.dc3.dailymotion.com/sec(f4590cdd8be1b6d27cdbb3816c862f1b)/video/327/638/365836723_mp4_h264_aac.m3u8 How to extract this stream_hls_url? Any…
3
votes
3 answers

How to get dailymotion videos list

I want to get list of videos from daily motion, i have registered in daily motion. it's retrieved API key and secret key but i have no idea what is the next step, i want to show the list of videos and show the detail. I have referred…
user5418227
3
votes
0 answers

Catch all call back notification when Dailymotion embed link play in default mediaplayer

How to Catch all Call Back Notification for getting .m3u8 or mp4 link from dailymotion embed link when play in android default media player using web view android? We have another solution to get link using html method like this one. using Demo…
3
votes
0 answers

Dailymotion API - CORS: Server has Access-Control-Allow-Origin: * but ajax request is not going through browser same-origin

This is possibly a problem with the dailymotion API it appears: see here: jQuery ajax request being block because Cross-Origin In the above question, the solution is JSONP, however that will not work here for the POST request. From my test request…
user4430623
2
votes
1 answer

How can i get Current Progress of a video using Dailymotion iframe.?

I want to get Current progress of a video played using dailymotion iframe. I have tried multiple things but nothing has worked so far. I need to get this functnality implemented using Dailymotion Iframe My current code looks like
2
votes
1 answer

Unable to set category to 'Education' in Upload

I am using Dailymotion python sdk to upload videos to dailymotion. I am unable to set category to 'Education' Unable to set category to 'Education', works fine if I set it to 'news'. upload_folder = r"D:\My…
Raghav Aggiwal
  • 573
  • 2
  • 6
  • 16
2
votes
1 answer

Parameters with dash not working when using Dailymotion javascript SDK

I have this embed code to create a simple player : var player = DM.player(document.getElementById("player"), { video: "xp3omu", width: "480px", height: "360px", params: { start: 150, sharing-enable: false, queue-enable: false, …
pedro
  • 23
  • 3
2
votes
1 answer

Dailymotion API - Search Restriction

I have a problem on video search. With a French IP, everything works well, but with Ireland IP no. I try : https://api.dailymotion.com/user/xm44zy/videos?search=RC%20Lens on French IP -> 500+…
2
votes
2 answers

Dailymotion JS API - No 'Access-Control-Allow-Origin' header is present on the requested resource

I'm currently trying to retrieve videos from a private Dailymotion channel in my personal application. To do that I'm trying to authenticate to the Dailymotion API using the grant_type method : password. Here is my POST request : xhr.open('POST',…
2
votes
1 answer

Is it possible to play a video in repeat mode with Android DailyMotion SDK?

(Having it play again infinitely) The sample app does not show any possibility to do that, but it is a common feature for video players. I tried to branch the end event to a seek-to-first-frame command but there is loading time between the 2…
Jacques Giraudel
  • 352
  • 4
  • 19
1
2 3
16 17