Recherche avancée

Médias (91)

Autres articles (8)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (1965)

  • FFMpeg codec compatible with rgb24 ?

    21 octobre 2013, par Chad Mourning

    I'm trying to turn some RGB data from my OpenGL screen buffer into a video using ffmpeg.

    I have successful output videos of "hand made" data using some of the YUV formats, but I'd like to use an RGB24 pixel format so I can have a 1:1 correspondence between my screen buffer and the output images.

    The codecs I've used so far don't support RGB24, except for CODEC_ID_RAWVIDEO. But when I used RAWVIDEO, the video it created wouldn't play in any of my players (it had a sane size, but appeared empty).

    Any advice on a usable RGB24 compatible codec ?

  • using ffmpeg to stream a live video file, which is continuously being updated

    20 juin 2022, par tamirg

    I have one process that gets a live stream from a source, and can write it to a file. Meaning the file will keep updating with new frames data from the stream.

    


    Is this possible to make this file an input for ffmpeg process, so ill get a live stream from this file ? (i wouldn't want it to stream it in a loop, but only to stream live the "new" data)

    


  • How do I prevent an infinite loop in windows batch file for in do command ?

    24 décembre 2019, par Core

    I have wav files I am normalizing with ffmpeg-normalize (a python program). My batch file is this
    for %%n in (*.wav) do ffmpeg-normalize "%%n" -nt peak -t 0 -o "%%n-norm.wav"

    In my directory of 5 files, I get 5 -norm.wav files. Unfortunately then, the batch file creates 5 -norm.wav-norm.wav files and so on and so on. Why wouldn’t it stop at the original list of 5 files ?