
Recherche avancée
Autres articles (101)
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (9164)
-
avformat/concatdec : set safe mode to enabled instead of auto
19 janvier 2016, par Michael Niedermayeravformat/concatdec : set safe mode to enabled instead of auto
This is safer, as a selected demuxer could still mean that it was auto-detected
by a user applicationReviewed-previously-by : Nicolas George <george@nsup.org>
Reviewed-previously-by : Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
imagemagick -auto-level in ffmpeg
29 août 2024, par Sagi MannI've been looking for a solution to perform the equivalent of
magick -auto-level
in ffmpeg but am unable to find anything. There are some references stating I should first manually discover the levels using other software like GIMP, however, I'm looking for an automated and simpler solution. Any ideas how to address this ?

I've tried the following - the first enhanced the image which was initially prettry dark, but the second over-exposed it, causing it to become mostly white :


convert img.jpg -auto-level img2.jpg
ffmpeg -i img.jpg -vf "normalize" -y img2.jpg



Note : I apologize I cannot share the image as it is restricted by privacy policy


-
ffmpeg auto split into exact timeframes
27 novembre 2022, par Rey BetI've been trying to autosplit a video into smaller clips of same length using ffmpeg. I know the command :


ffmpeg -i "video.mp4" -c copy -map 0 -segment_time 00:00:05 -f segment -reset_timestamps 1 output%03d.mp4)



But this one splits videos into frames so the time is varying.
I found a command


ffmpeg -i "name" -ss 0 -t 5 p1.mp4
ffmpeg -i "name.mp4" -ss 5 -t 5 p2.mp4
ffmpeg -i "name" -ss 10 -t 5 p3.mp4 



But this would mean i would have to do it manually for whole video. Is there way to automate the process so i can split the video into exact time ? Thank you.


I'm using Windows 10 if it makes any difference