Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (23)

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

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (5306)

  • configure : require pkg-config for libvorbis

    4 juillet 2017, par Ricardo Constantino
    configure : require pkg-config for libvorbis
    

    libvorbis comes with pkg-config files since at least v1.0.1, way back in 2003.

    We need the two checks for vorbis and vorbisenc because we use functions from
    both and Xiph considers them separate libraries.

    The check is inverted (vorbis first then vorbisenc) because add_extralibs()
    prepends to EXTRALIBS instead of appending. For both shared and static linking
    the order didn't seem to matter anyway, testing with MinGW.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] configure
  • ffplay v3.4.1 : Could not initialize SDL - No available video device

    21 juin 2021, par iorih0304

    My linux distribution is Ubuntu 20.04 server, and ffplay is compiled from ffmpeg v3.4.1 source code.

    &#xA;

    I use the command

    &#xA;

    ffplay -f rawvideo -video_size 1920x1080 -i BasketballDrive_1920x1080_50.yuv&#xA;

    &#xA;

    or

    &#xA;

    Display=:0 ffplay -f rawvideo -video_size 1920x1080 -i BasketballDrive_1920x1080_50.yuv&#xA;

    &#xA;

    But it displays failed, the message shows :

    &#xA;

    ffplay version 3.4.1 Copyright (c) 2003-2017 the FFmpeg developers&#xA;  built with gcc 9 (Ubuntu 9.3.0-17ubuntu1~20.04)&#xA;  configuration: --enable-shared --enable-nonfree --enable-ffplay&#xA;  libavutil      55. 78.100 / 55. 78.100&#xA;  libavcodec     57.107.100 / 57.107.100&#xA;  libavformat    57. 83.100 / 57. 83.100&#xA;  libavdevice    57. 10.100 / 57. 10.100&#xA;  libavfilter     6.107.100 /  6.107.100&#xA;  libswscale      4.  8.100 /  4.  8.100&#xA;  libswresample   2.  9.100 /  2.  9.100&#xA;&#xA;Could not initialize SDL - No available video device&#xA;(Did you set the DISPLAY variable?)&#xA;

    &#xA;

    Follow some website's suggestions, I try to install apt-get install libx11-dev xorg-dev, compile and install SDL2-2.0.14 from source code and recompile ffmpeg and ffplay.&#xA;But the result is the same.

    &#xA;

    How can I let it display successfully ?

    &#xA;

    Thanks !

    &#xA;

  • How can low frame rate video be made to look more smooth ?

    14 décembre 2016, par d3pd

    I am trying to clean up a video that was recorded in 2003 in low-light conditions on what was possibly a cameraphone. The video has been cleaned up somewhat (cropped, logos removed and stabilized), but it remains quite jerky, due in large part to its low frame rate. What are some tricks that might clean up the video in this regard ? I feel that I am asking for something a bit like tweening in flash animations, but for pixels, whereby additional frames are generated using nearby frames of the video. Does such a trick exist ? Is there another way to approach this problem ?

    To reproduce the video processing so far, take the following steps :

    # get video
    wget http://www.anwarweb.net/saddamdown.wmv
    # crop
    ffmpeg -i saddamdown.wmv -filter:v "crop=292:221:14:10" -c:a copy saddamdown_crop.wmv
    # remove logo 1
    ffmpeg -i saddamdown_crop.wmv -vf delogo=x=17:y=77:w=8:h=54 -c:a copy saddamdown_crop_delogo_1.wmv
    # remove logo 2
    ffmpeg -i saddamdown_crop_delogo_1.wmv -vf delogo=x=190:y=174:w=54:h=8 -c:a copy saddamdown_crop_delogo_1_delogo_2.wmv
    # stabilize
    ffmpeg -i saddamdown_crop_delogo_1_delogo_2.wmv -vf deshake saddamdown_crop_delogo_1_delogo_2_deshake.wmv

    Note : The video is of the Saddam Hussein execution.