
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (36)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (7006)
-
Is there a way to download FB video like the way youtube-dl does using ffmpeg [duplicate]
20 avril 2018, par WayneThis question already has an answer here :
I have a simple vba UI that downloads youtube video using youtube-dl in ffmpeg.
Is there a similar way to be able to download fb public video using ffmpeg ?
One user request for this feature and I need a direction to start with.
Google doesn’t seem to have relevant reference or perhaps I am using wrong keyword.
Any directional information would be highly appreciated.
Thanks
-
amfenc : Do not automatically download/upload unknown hardware input frames
14 avril 2018, par Mark Thompsonamfenc : Do not automatically download/upload unknown hardware input frames
Supplying a hardware input frame which is not in the input hardware frames
context is not allowed by the API, so additional code to handle it is not
necessary. Further, handling it automatically results in very low
performance - it is more appropriate to fail immediately so that the user
can fix their incorrect setup. -
Block YouTube from source page when trying to download a video with youtube-dl
18 mars 2018, par user3108268E.g. example.com/1 has a video hosted, you run
youtube-dl example.com/1
and it all works fine, the video gets downloaded.E.g. example.com/2 also has a video, but it also has a YouTube trailer. If you run
youtube-dl example.com/2
the hosted video gets completely ignored and only YouTube trailer gets downloaded.From what I see in the log is that the wanted local video playlist gets downloaded first and then ignored by getting overwritten by embedded YouTube playlist download.
You can’t even get the url with
--get-url
or get format with--list-formats
. It always prints the googlevideos URL for the YouTube trailer and lists only the YouTube trailer formats.I did manage to pull out the local video URL via
--dump-pages
and decoding the base64 encoded source. But the problem is that the URL contains a unique token each time the page example.com/2 is called, so passing the unique one-time video URL like e.g. example.com/2/video.php ?token=asdf to youtube-dl won’t download the video.So I figured somehow I need to bypass the YouTube trailer source and playlist when calling
youtube-dl example.com/2
and trying to download local video and not the YouTube trailer.