
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (15)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (3238)
-
Possible to change progress output interval in ffmpeg ?
12 septembre 2021, par ThortsExample output :


frame= 1234 fps= 25 q= 0.0 size= 10321 time = 00:02:12:31 bitrate= 301.1kbits/s speed=7.21x



This output is updated around 4-5 times per second in the terminal.


Is it possible to to change the interval for this status update ? Like once per second or once every 10 seconds.


Reason being better overview when queueing several ffmpeg-jobs in a row.
Searched for 'interval' in the documentation but didn't find anything relevant.


-
Redact parts of an audio file using python (FFMPEG)
18 août 2020, par K3rn3l5I have a use case where I need to dynamically redact parts of an audio file using python. For example sometimes I may have to remove between timestamps 10 to 15 and other times between 5 to 7, 12 to 16 and 21 to 26 . I have tried looking at FFMPEG and think it may be possible with filters or chaining filters, but I am having trouble figuring out which ones to use and the combination. Any help or pointers will be highly appreciated. TIA !


-
ffmpeg generate video from images timestamped
11 février 2020, par user3262532I have a set of timestamped image as input and I want to generate a output video from it.
My command is :
ffmpeg -f image2 -ts_from_file 1 -i './%*.jpeg' './video.avi'
As output I get many errors :
....
[mjpeg @ 0x5591f1d5f100] bits 121 is invalid
Error while decoding stream #0:0: Invalid data found when processing input
[mjpeg @ 0x5591f1d5f100] mjpeg: unsupported coding type (c5)
frame= 983 fps=130 q=31.0 size= 3078kB time=00:00:49.15 bitrate= 512.9kbits/[mjpeg @ 0x5591f1d5f100] EOI missing, emulating
Last message repeated 4 times
frame= 1048 fps=130 q=31.0 size= 3334kB time=00:00:52.40 bitrate= 521.2kbits/[mjpeg @ 0x5591f1d5f100] mjpeg: unsupported coding type (c8)
frame= 1118 fps=130 q=31.0 size= 3590kB time=00:00:55.90 bitrate= 526.0kbits/[mjpeg @ 0x5591f1d5f100] bits 178 is invalid
Error while decoding stream #0:0: Invalid data found when processing input
[mjpeg @ 0x5591f1d5f100] mjpeg: unsupported coding type (c7)
[mjpeg @ 0x5591f1d5f100] EOI missing, emulating
Last message repeated 5 times
frame= 1165 fps=130 q=24.8 Lsize= 3904kB time=00:00:58.25 bitrate= 549.0kbits/s speed=6.52x
video:3870kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.864412%The output video is not properly generates, the video file has the good framerate but visually the video is run too quick.
I try many commands to get proper output but I can get it.