Recherche avancée

Médias (91)

Autres articles (28)

  • 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 : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4293)

  • Encoding video on H.263 to send over RTP

    20 novembre 2012, par Miguel Brito

    I'm developing an application to send video over RTP to a client that can play only H.263 (1996) and H263+ (1998).

    To do this i've encoded the video using libav following these steps : (this is only part of the code)

    av_register_all();
    avformat_network_init();
    Fmt = av_guess_format("rtp", NULL, NULL);
    ...
    st = add_video_stream(FmtCtx, CODEC_ID_H263);
    ...
    avio_open(&FmtCtx->pb, rtp_url, URL_WRONLY)

    To finally enter a loop where i encode the video, the problem is that the stream generated by this program is encoded in H.263-2000 (or H.263++) which the other side cannot undertand, even though i use CODEC_ID_H263 or CODEC_ID_H263P in the initialization the same thing happens.

    Is it possible to encode in those old H.263 versions using libav ? i havent managed to do it not even using ffmpeg commands. The stream is always h.263-2000 (PT=96)

  • Detecting frozen frames in video file using ffmpeg or similar

    16 décembre 2015, par jakkolwiek

    I’m trying to find a way to analyze couple of video files (mov) in order to find files with frozen frames or black screens appearing. I know that using simple command with ffmpeg returns the start/stop point and duration of black screens, unfortunately I can’t find any solution for frozen frames. The video files are rather small and definitely not high quality, but I need to distinguish the broken files apart from good ones. The thing is, it has to be to use as a simple shell command or library in order to use it with Java, Python, Ruby or similar. Any advice is much appreciated !

  • Ffmpeg fade command and perl variable

    19 novembre 2014, par CRAIG

    I am trying to fade out some audio using ffmpeg in a Perl script.

    The command is the following :

    ffmpeg -i short.wav -af "afade=t=out:st=65:d=5" short.mp3

    With the 65 in the afade section being the time point where the fade should begin.

    However, I need to use a variable there, so instead of 65 I need to use $length and not hard code it. Any thing I try i.e. :

    ffmpeg -i short.wav -af "afade=t=out:st=" . $length . ":d=5" short.mp3

    Does not work and breaks the script.

    What would be the proper way to handle this ?