
Recherche avancée
Autres articles (30)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 : (...)
Sur d’autres sites (7647)
-
Filter "showpalette" of FFmpeg always returns the default palette
19 mai 2017, par VejI want to extract palette of GIF files with FFmpeg, and learned from the document that filter "showpalette" can do that. But FFmpeg always returns the same default palette instead of the custom palette.
FFmpeg returns the same palette even for the two examples in pkh.me’s Post. Here’s my code :
ffmpeg -i bbb-trans.gif -vf "showpalette" -y a%03d.png
ffmpeg -i bbb-nodither.gif -vf "showpalette" -y b%03d.pngDid I use the wrong command ? Or it’s a just bug of FFmpeg.
-
FFmpeg returns' Output must be specified' when it has been acknowledged
28 juillet 2019, par Syed ShahHere’s my command in python :
ffmpeg -i concat:803.ts|804.ts|805.ts -c copy output.ts
When I run the command it opens the output but it doesn’t save the file to the directory.
I run the command in FFmpeg and it gave the same result - it opened the output but it gave me this error at the end :At least one output file must be specified
I don’t understand what I did wrong as I specified the output clearly, I already checked for solutions but most of them are suited to OP’s needs
-
How to transcode a video using python and ffmpeg library (no commandline call)
25 mars 2014, par mojovskiI would like to transcode a video using python and ffmpeg. But I dont want to use a command line call like
call(ffmpeg -i ....")I will need to deploy the resulting application using py2exe, thus cannot use call method.
Thanks in advance !