
Recherche avancée
Autres articles (20)
-
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 (5381)
-
Unknown Decoder in ffmpeg
17 mars 2020, par user6782547I have a script, that is called from Plex after the recording of a movie. This script just crops the black borders of the movie.
When I call it directly from the command line, it works flawlessly. But when Plex calls it, it says : "
Unknown decoder
", even if I call it with the key word "auto
" for the decoder.There’s another problem, that might give a hint to solve my problem. It also says : "
WARNING: library configuration mismatch
". (Only when being called from Plex.) This is probably, because I compile ffmpeg from the Debian source package (so that I can add the whole CUDA functionality).
I had a look at the dynamic linker path, but it is empty on the command line.What is so different, when this command is called from Plex, than when I call it manually from the command line ?
Thanks for any help
-
how can i add watermark and compress a batch of video with ffmpeg
27 mai 2021, par The Funstersi am using ffmpeg for video editing


i am adding watermark to a bulk of videos with


for %%a in ("*.mp4") do ffmpeg -i "%%a" -i watermark.jpg -filter_complex "overlay=1000:10" -preset slow -codec:a copy "newfiles%% na.mp4"


now i want to merge


for %%a in ("*.mp4") do ffmpeg -i "%%a" -vcodec libx264 -crf 28 -preset faster -tune film "newfiles%% na.mp4"


so it will add watermark and compress the size of the videos


is there any way to merge them ?????


-
How to merge multiple videos end-to-end with yt-dlp or ffmpeg [closed]
12 juillet 2024, par PenguWe want to download a bunch of small sections of videos then stitch them all together into one big video. How would we go about this ? Is there a way to bulk-stitch together videos from a particular folder ? We're planning to have thousands of clips, so the more automated it can be, the better.


We are already using yt-dlp and ffmpeg for downloading the sections, so we would prefer if the solution was using those as well.


The closest thing we could find was this https://github.com/yt-dlp/yt-dlp/issues/6595 which, when we try it, runs fine but the resulting clip is the same length as the parts used and doesn't seem to join them together.