
Recherche avancée
Autres articles (70)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (3920)
-
FFMPEG says "No such file or directory" when trying to convert image sequence
29 janvier 2014, par James MorrisFrom the shell, when I specify a sequence of images via
%d
in the input filename, FFMPEG insists "No such file or directory", despite evidence to the contrary. Looking online, I haven't managed to find any references to generating video from a sequence of images using FFMPEG where%d
is not used, yet it seems to fail here.My images should be identified by FFMPEG from
img%06d.gif
. Issuingls img[0-9][0-9][0-9][0-9][0-9][0-9].gif
succeeds in the very same directory I issue the FFMPEG command.The command I use is :
ffmpeg -i img%06d.gif -c:v libx264 -r 30 -pix_fmt yuv720p test.mp4
What could possibly be going wrong ???
-
Random Weird HLS generation with ffmpeg
16 août 2022, par user15006279I am doing some live streaming setup for my personal project and I noticed that sometime ffmpeg will not generate any hls auto it was running. I copied the same command and run in shell and it was generating HLS files successfully but somehow it was not generating with nginx.


Enter image description here




The more weird thing is that if i restart nginx for like a couple of times, it will regenerate. I am only playing youtube video from browser somehow ffmpeg process is not generating hls. Even after a couple of restarts, it will generate sometimes but its random. Mostly not generating at all. Can you guys help me with it ?


image




-
FFmpeg Batch extracting frames from multiple videos on Windows
23 décembre 2022, par ujjallyI want to extract frames/images per video that will import from a directory and then save those frames into a new folder and the folder name as import video filename.


I tried the below code on Linux and it works perfectly but i can't convert the code to Windows


for i in *.mp4; do mkdir -p "${i%.*}" && ffmpeg -i "$i" -vf fps=1/1 "${i%.*}/%d.jpg"; done



I tried the Linux bash shell on windows and it's worked.

Does have any other options/formats to properly write or convert the code for Windows OS ?