Hi Jean-Baptiste,
How did you fix it?
I am currently using VLC 2.0.8.a-1 on Linux and I think the function probe() in the script dailymotion.luac returns "false". I read the source code on the git repository (
https://github.com/videolan/vlc/blob/ma ... motion.lua, I hope it's the last version) and I think that "string.match( vlc.peek( 2048 ), "<!DOCTYPE.*video_type" )", in the probe function, returns false because "2048" is not enought (anymore?) to catch the pattern "<!DOCTYPE.*video_type" )". Then in the parse function, "path = string.match( line, "\""..param.."\":\"([^\"]*)\"" )" retruns null because any of the keywords { "hd1080URL", "hd720URL", "hqURL", "sdURL" } are found (at least for the video I tried to read).
Thanks Jean-Baptiste if you can provide the fix