Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (15)

  • Les formats acceptés

    28 janvier 2010, par

    Les 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, par

    Pour 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 (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (4881)

  • dcadec : Do not check for overreads in auxiliary data

    22 novembre 2015, par Tim Walker
    dcadec : Do not check for overreads in auxiliary data
    

    The auxiliary data length field is not reliable,
    and incorrect overread errors could be returned
    for valid, real-world bitstreams.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/dcadec.c
  • ffmpeg drawtext on ubuntu : ffmpeg does not change text location [closed]

    10 juin 2024, par Wolf Wolf

    I am designing a video editor bot for Telegram. I want to use ffmpeg&#xA;and I need a text to be placed on the video and change the place of&#xA;the text randomly every few seconds.

    &#xA;

    There is an example on the site itself.

    &#xA;

    I used the following command :

    &#xA;

       ffmpeg -i&#xA;   "/home/editor/downloads/video_2023-07-10_17-53-05_7375753324605210932.mp4"&#xA;   -filter:v drawtext="fontsize=30:fontfile=/usr/share/hellotext=hellotext/share/World&#x27;:&#xA;   x=if(eq(mod(t\,30)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod (t\,30&#xA;   )\, 0)\,rand(0\,(h-text_h))\,y)" -codec:v libx264 -codec:a copy&#xA;   -preset slow -crf 18 -y output.mp4&#xA;

    &#xA;

    This command executes and even the text is placed on the video, now&#xA;the problem is that it doesn't change the location of the text. I&#xA;tested this before and it worked fine, but now it doesn't run&#xA;properly.

    &#xA;

  • Fade out in ffmpeg when creating a video from a still image is wonky ?

    13 juin 2017, par Matt W

    I’m creating a video that :

    • uses a still image as a source
    • has a text overlay
    • fades in and out
    • has a silent stereo audio track.

    So far, I have this, and it (almost) works correctly :

    ffmpeg -f lavfi -i "aevalsrc=0|0" -loop 1 -i turtle-2.jpg  -c:v libx264 -t 5 -r 30 -s 1920x1080 -aspect 16:9 -pix_fmt yuv420p -filter:v drawtext="fontsize=130:fontfile=comic.ttf:text='hello world':x=(w-text_w)*.25:y=(h-text_h)*.75",fade=in:0:60,fade=out:90:60 -acodec aac turtle11.mp4

    The only problem is that the fade out doesn’t seem to be going to black, even tho this is a 150 frame video and I believe I am following the ffmpeg documentation correctly.

    The resulting video is here :

    http://video.blivenyc.com/vid-from-image/turtle11.mp4

    Any thoughts ?