
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (107)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (7010)
-
Contrast normalization of several videos with ffmpeg
4 octobre 2016, par Alan_AII have some video sequences that I need to concatenate, some of them have bad contrast (so dark) and some are just fine. What is the best method to automatically normalize contrast levels among of these videos automatically without manual tweaking ? Preferably using the ffmpeg script
Thank you
-
Concatenating different rotated videos with ffmpeg
14 avril 2017, par acilanderI am trying to concatenate two videos with ffmpeg having different rotation metadata tags. The first one has
rotation=180
the other one has no tag at all.There are two methods that can be used in ffmpeg : concat demuxer / concat protocol. Protocol is working as expected but demuxer method is not. When I use
concat demuxer
option in ffmpeg withcopy
option to avoid re-encoding the following happens :First video with
rotation = 180
will be rotated correctly. But the second video without rotation flag will also be rotated and will be presented upside down in output video.I know about the options to remove rotation metadata or the possiblility to use filters to rotate the videos. But my question is if someone knows if this is expected behaviour of ffmpeg or not. For me it seems like ffmpeg uses rotation metadata from first video and uses it for all other concatenated videos. Is this assumption correct and intended ?
Thank you for any feedback and explanations.
-
How do you combine videos at specific X and Y positions with FFMPEG ?
21 mai 2020, par Adrian ElderIf I have multiple video files, and I want to combine videos at specific x/y coordinates, how would I go about doing that ?



I know that the
xstack
filter allows you to position videos using a column/row notation.


Say I have multiple different size rectangle frames, and I knew the x/y coordinate of the top left corner, how could I position these using that value ?