Getting dailymotion video URI from URL for downloading

隐身守侯 提交于 2021-01-05 13:16:25

问题


I can't download the video from the video URL. As I understand, I have to get a URI to download the video but I am unable to find the URI from the Dailymotion url using Dailymotion API.

URL url = new URL ("https://www.dailymotion.com/video/" + dataSet.get(position).getId()); URI uri = url.toURI(); //I need URI value here downloadVideoFromURI();

I have tried the dailymotion api but it does not give the video uri as per my knowledge.


回答1:


Dailymotion doesn't allow users to download videos.

If you are a partner you can only download your own videos through your partner space: https://dailymotion.com/partner.

If you are a verified partner, you can contact your content manager to find a way to have more details



来源:https://stackoverflow.com/questions/55194873/getting-dailymotion-video-uri-from-url-for-downloading

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!