Bulk video downloader especially for DailyMotion

6,234

Try JDownloader CLI. They say they have Dailymotion-Support.

EDIT: In GUI version, you're even able to add all links at once.

EDIT: Didn't get you haven't got a list of all movies. Using bash and lynx (text based web browser), it is quiet easy to get all video URLs (or exactly, the first 100 pages * 20 videos, dailymotion does not print more, I'm also getting the most viewed and best rated lists to maximize cover):

{ for i in {1..100}; do lynx -dump -nonumbers -listonly http://www.dailymotion.com/user/mplay/$i http://www.dailymotion.com/visited/user/mplay/$i http://www.dailymotion.com/rated/user/mplay/$i; echo $i 1>&2; done } |grep http://www.dailymotion.com/video/ |sort |uniq >movies.txt

Don't try to change the 100, there aren't any more than that. If you find a way to list the missing videos, tell me!

Just adjust the username ("mplay") if neccessary and paste this line into bash. Wait for some time until finished and you will get your list printed which you can reuse in jdownloader.

In case you're not using linux (or OS X and installed lynx) I dumped the list for you. Have fun with it! But I'm not quit sure why I found more distinct videos than dailymotion says there are.

Share:
6,234

Related videos on Youtube

Greg Jennings
Author by

Greg Jennings

about.me/mehper Industrial Engineer M.Sc. One of the authors of Distribution Planning of Magazines: A Practical Approach. Author of Random Variate Generation If the Density Is Not Known: Basics, Methods, Implementations. Mostly dealing with the following topics: Food Logistics, Enterprise Resources Planning, Supply Chain Management, Materials Management, Healthcare Logistics, Executive Reporting, Data Analysis, System Development and Optimization. Programming Languages: VBA, SQL, R. XBox 360 fan.

Updated on September 18, 2022

Comments

  • Greg Jennings
    Greg Jennings almost 2 years

    I want to download hundreds of video files from a user account on DailyMotion.com. The videos are located under the URL as in the following example:

    http://www.dailymotion.com/mplay

    Is there a free program that can mass download all videos in that gallery? I tried DailyMotion Video Downloader but it can only download if I give each video link one by one.

    Important note: I just want to enter any link (for example, www.dailymotion.com/mplay) into the program and then it should handle everything (grab all sublinks; start and finish download automatically).

  • Greg Jennings
    Greg Jennings over 12 years
    OK but I need Bulk download support. It cannot do it (at least the free version, from what I know).
  • Jens Erat
    Jens Erat over 12 years
    There is no "un-free" version. JDownloader runs as a background service, then you can add all your links using JDownloader -add <link> which will be queued and downloaded without further interaction. In GUI version, you can even add all links from clipboard at once.
  • Greg Jennings
    Greg Jennings over 12 years
    So you say, when I enter http://www.dailymotion.com/mplay in JDownloader, it will start the download process? Because I don't want to enter 4500 links one by one.
  • Jens Erat
    Jens Erat over 12 years
    Well you need to get the links somehow. Will be updating my post with some lines of bash script in a few minutes.
  • Jens Erat
    Jens Erat over 12 years
    there you are, have fun with it.
  • Greg Jennings
    Greg Jennings over 12 years
    Thanks and +1 for your efforts. I forgot to tell I'm using Windows 7.