
Recherche avancée
Autres articles (18)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 (...) -
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 (...)
Sur d’autres sites (5896)
-
Cross platform library for converting PCM to mp3 in C# [on hold]
10 août 2016, par Shlomi UzielIs there a portable method for converting PCM audio to mp3 that will work both on Windows and Linux in a simple way ? I found some FFMPEG wrappers for C#, but none are very user friendly. Also, NAudio and Yeti LAME wrapper seem to work only on Windows
-
vf_frei0r : refactor library loading from env variable
27 février 2014, par Vittorio Giovara -
FFmpeg library does not want to images into video
27 avril 2021, par ArtisticBytesI am trying to create image folder with 600 images with file names :
animation_010000.jpg
toanimation_010600.jpg
(soanimation_010000.jpg
,animation_010001.jpg
,animation_010002.jpg
, and all the way toanimation_010600.jpg
) into a video file, but somehow FFmpeg does not see the path right. What I am doing wrong ?
I tried 4 different samples still the same error in the input path.

ffmpeg -r 60 -s 1920x1080 -i "animation_010%03d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



or


ffmpeg -r 60 -s 1920x1080 -i "animation_010%3d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



or


ffmpeg -r 60 -s 1920x1080 -i "animation_%06d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



or


ffmpeg -r 60 -s 1920x1080 -i "animation_%6d.jpg" -vcodec libx264 -crf 25 -pix_fmt yuv420p "test.mp4"



Keep in mind that input path of the folder is
F:/AnimationImages/
but I am not using the full path address instead of I installed all the FFmpeg library into the folder with the images. Also, keep in mind that it converts a single image file as input into a video file as output without any errors. I am pretty sure that answer in input path formatting - so what I am doing wrong ? My OS is Windows 10 and I am usingcmd.exe
with administrator rights. Thanks guys.