
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (69)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (6935)
-
How to make FFmpeg use output codec and pix_fmt same with input
23 août 2014, par TwilightSunI’m trying to write a batch process shell script resizing videos, that are of unpredictable codecs and containers.
I expected that the resized video should be mostly the same with the original one except image sizes. Which means that a video with png codec in a mov container should output with png codec not h264.But I realized that only keeping the extension names the same are not enough. FFmpeg tends to use default encoder associated with the extension name rather than trying to keep the same with the input.
Is there any magical parameter that will tell FFmpeg to try to use input codec instead of guessing by output file name ?
Running FFmpeg twice to get information in advance would be my last choice, because it will make my script a lot more complicated.
-
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 ?

-
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