DailyMotion Video Downloader
2 hours trial then $19.99/month - No credit card required now
DailyMotion Video Downloader
2 hours trial then $19.99/month - No credit card required now
Extract video metadata and download links from DailyMotion videos. Get high-quality video URLs, author info, thumbnails, and more in various formats (including m3u8). Perfect for content analysis and video archiving.
DailyMotion Video Downloader 🎥
Features ✨
- Extract detailed video metadata from DailyMotion URLs
- Get multiple quality video download links (up to 1080p)
- Support for m3u8 streaming URLs
- Retrieve video information including:
- Title and author
- Thumbnail images
- Video duration
- Video quality and resolution
- Bandwidth and codec information
- Batch processing of multiple URLs
- Rate-limiting friendly
- Clean JSON output format
Use Cases 🎯
- Content aggregation and archiving
- Video quality analysis
- Media monitoring
- Content creator research
- Automated video downloading
- Streaming service integration
Input Parameters 📝
The actor accepts the following input parameters:
links
: Array of DailyMotion video URLs to process (required)- Format:
https://www.dailymotion.com/video/[video_id]
- Example:
["https://www.dailymotion.com/video/x99pjkc"]
- Format:
Output 📊
The actor outputs detailed JSON for each processed video URL, including:
- Video metadata (title, author, duration)
- Thumbnail URL
- Available video qualities
- Download/streaming URLs for each quality
- Technical details (resolution, codecs, bandwidth)
Limitations ⚠️
- Only processes public DailyMotion videos
- Respects DailyMotion's rate limits
- URLs must be in the correct DailyMotion format
Tips 💡
- Use array input for batch processing multiple videos
- Allow 1-second delay between requests for optimal performance
- Check all available quality options before downloading
Input Example
A full explanation of an input example in JSON.
1{ 2 "links": [ 3 "https://www.dailymotion.com/video/x99pjkc" 4 ] 5}
Output sample
The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:
And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.
1[ 2 { 3 "url": "https://www.dailymotion.com/video/x99pjkc", 4 "source": "dailymotion", 5 "author": "diariodeavisos", 6 "title": "La previsión del tiempo en Canarias para el 25 de noviembre de 2024, en Atlántico Televisión.", 7 "thumbnail": "https://s2.dmcdn.net/v/XQ9nC1dGwU3ohX0tZ/x60", 8 "duration": 114, 9 "medias": [ 10 { 11 "url": "https://vod3.cf.dmcdn.net/sec2(MKHe1oAMPtpMymVKdvxNDxHYYB2JoTQccGh14AturBHMXrkc0XNZf6dItXsY_jR-Sf3YgRYs9f3jZN1TkSuMaB9EKGfUYBY5tbZ1Ts3iIGLJiTV9TPgClICFKA9KM48_juvTZsURUkbybHZmK6HjGMTmmqpoU8CrsAvK5Fu0qy7NAuX5rkZjlps73ByVbZ8_)/video/488/305/560503884_mp4_h264_aac_hd_2.m3u8#cell=cf3", 12 "quality": "720p", 13 "extension": "m3u8", 14 "type": "video", 15 "bandwidth": 2149280, 16 "resolution": "1280x720", 17 "codecs": "mp4a.40.2" 18 }, 19 { 20 "url": "https://vod3.cf.dmcdn.net/sec2(rUAsaEuZ3ztDNyqeEGXcxFBUBLy7mQVHwVPb8jQvHWSQYDudburC9GYCS6zCeV7vL0R34Mx2Kk3LKJVhXuH8aMDUrQSyNL1mwLLDRGYzYxbQVhqav3t7wln2E4nnYVxIyfwFDlFqoPBXi1eJXV_XNKn9AltrlOq8miC0vZWhTAk)/video/488/305/560503884_mp4_h264_aac_2.m3u8#cell=cf3", 21 "quality": "380p", 22 "extension": "m3u8", 23 "type": "video", 24 "bandwidth": 460560, 25 "resolution": "512x288", 26 "codecs": "mp4a.40.5" 27 }, 28 { 29 "url": "https://vod3.cf.dmcdn.net/sec2(23XmT867moCDhgyBpyKomIH3CtWcIxfq7B7Fwq5jP_ks0XX5hQfTwhMxBHt-XgRj7W0D7lGrLWoNf7Y9RFZjLqwblpY1NhMKvSLqX-WxragpPvLTrr4jEj19JYFtpLNMjL76_4z_mHlbIpeC6f_e5ICBYsIVGPqCYtTqT-gFtH-OWr7cLiEZpvoSlssB3B38)/video/488/305/560503884_mp4_h264_aac_hq_2.m3u8#cell=cf3", 30 "quality": "480p", 31 "extension": "m3u8", 32 "type": "video", 33 "bandwidth": 836280, 34 "resolution": "848x480", 35 "codecs": "mp4a.40.2" 36 }, 37 { 38 "url": "https://vod3.cf.dmcdn.net/sec2(i4hPFpmvOp0vWtPSJeKvziwqiU-em5iN-VrwSrSMK8nfA4vuH-gV1zh_NwCXX57tQ4YRxZLYvtlzRD6OqXQ4HzpgVOQpnW0X01lqO4TIlr_otXURRC4j3xjx_cF9-Ch_10lAUkgnno2L84In1JdE1dwgw4du8h9TGaCcP3BlWJkR1mremCu-ZFPs4DXNKqsP)/video/488/305/560503884_mp4_h264_aac_fhd_2.m3u8#cell=cf3", 39 "quality": "1080p", 40 "extension": "m3u8", 41 "type": "video", 42 "bandwidth": 4706600, 43 "resolution": "1920x1080", 44 "codecs": "mp4a.40.2" 45 } 46 ], 47 "type": "multiple", 48 "error": false 49 }, 50 ... 51]