
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" (...)
Sur d’autres sites (17620)
-
Nomenclature #4626 : Renommer le menu "Squelettes"
30 avril 2021Ça me fait d’ailleurs très penser à un sketch de "La stratégie de l’échec", où il faut apprendre à mal ranger : "Je classe les factures débiteurs dans le dossier Antilope"
Ya un mot inconnu de la plupart des users, qui ne correspond à rien pour elleux, et on leur demande se souvenir que tel config est dedans, juste par mémoire, et non parce que c’est compréhensible en soi.Tiens, bonne analogie :)
Oui mon impression c’est également que celles et ceux qui s’y retrouvent y arrivent malgré le terme utilisé : on finit par associer « squelettes » avec ces entrées de menu... Parceque c’est comme ça, on a pas le choix.
Ça ne dispense pas de trouver quelque chose de plus approprié.
Difficile de trouver un terme court qui recouvre tout ce qu’on peut trouver dans ce menu, mais en tout cas les 2 propositions sont déjà bien plus parlantes (moi toujours une préférence pour « mise en page » pour l’instant). -
ffprobe File not fournd error due long path BUT windows long path enabled
10 novembre 2020, par nonaymeI have a python program which run ffprobe on some videos on my win10 computer, and its working fine for most of them. The buggy ones have pretty long path, which seems to be the issue despite a "No Such file or Directory" message from ffprobe, this because :


- 

- I checked the path and it exists
- In cmd when I mannualy cd to the directory and start
ffprobe -i
autocompletion complete with the right name - Windows Sub-system Linux achieve to run ffprobe from my copy pasted path extracted from my program








=> the file exist


- 

- I made a copy of my file and renamed it with a longer name than the buggy one (ffprobe doesn't work), and also with a really short name (ffprobe works)




=> path size is the culprit
BUT I have enabled long path on both the registry AND the group policy... any ideas ?


-
Using ffmpeg with not consecutive numbered files
12 septembre 2014, par lbedogniI am using ffmpeg to produce a video starting from a set of png images. However, the images I have are numbered like this :
image_D5_C0_F4.png
image_D10_C0_F4.png
image_D15_C0_F4.png
image_D20_C0_F4.pngand so on. Basically, everything remains the same, but the inner part changes. My ffmpeg command looks like this :
ffmpeg -framerate 8 -start_number 5 -i img/image_%02d_C0_F4.png -c:v libx264 -r 30 -s 1200x900 -pix_fmt yuv420p out.mp4
but obviously it does not work. I looked into the manual to find an option that allow me to specify a starting number (5 in this case) and a standard increment (again, 5), so to catch 5,10,15,20 etc.
Any idea on how to solve this ? I know I can handle everything with a script to rename all the files, but I wanted to check whether ffmpeg has the needed option in the first place.
Thanks