Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (73)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

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

  • Revision 83cbe22623 : Speed up non-rd mode decision search This commit makes the encoder to explicitl

    18 mars 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_pickmode.c



    Speed up non-rd mode decision search

    This commit makes the encoder to explicitly calculate the SAD
    associated with the LAST_FRAME motion vector and compare it to
    that of the GOLDEN_FRAME given by integral projection motion
    estimation. It skips the expensive sub-pixel motion search over
    GOLDEN_FRAME when the LAST_FRAME can provide fairly good motion
    compensated prediction quality.

    For dark720p speed -6 single thread goes from
    33304 b/f, 40.070 dB, 18156 ms ->
    33319 b/f, 40.061 dB, 17611 ms

    Change-Id : I01bc94b9b598075567a392111046b97a9bc30efe

  • Convert video into individual frames using Python without ffmpeg ?

    20 février 2015, par Mridula Madhusudan

    I need to compare 2 videos to check whether they are the same.

    So I am planning to do the following :

    1. Split both the videos into individual frames
    2. Compare each frame with the corresponding frame of the ref video using Python Image Lib
    3. Count the number of different frames to decide whether they are same.

    I would like to know whether there is any function in Python to help me with the first step, i.e., to split the video into individual frames. I do not want to use ffmpeg to do the splitting.

    Thanks in advance for the help

  • mplayer can't read udp video stream

    23 avril 2014, par Bruno Marques

    Im trying to compare latency between different video codecs using ffmpeg and mplayer’s benchmark.

    I am using this command line to generate and send the stream :

    ffmpeg -s 1280x720 -r 100 -f x11grab -i :0.0 -vcodec mpeg2video -b:v 8000 -f mpegts udp://localhost:4242

    And I’m successfully using ffplay to receive and read it in real time :

    ffplay -an -sn -i -fflags nobuffer udp://localhost:4242?listen

    Now instead of playing the stream with ffplay, i’d like to use the mplayer benchmark to get some information on the latency :

    mplayer -msglevel all=6 -benchmark udp://localhost:4242

    But I get this output instead :

    Playing udp://localhost:4242.
    get_path('sub/') -> '/home/XXXXX/.mplayer/sub/'
    STREAM_UDP, URL: udp://localhost:4242
    Filename for url is now udp://localhost:4242
    Listening for traffic on localhost:4242 ...
    Timeout! No data from host localhost
    udp_streaming_start failed
    No stream found to handle url udp://localhost:4242

    I tried with rtp protocol instead, didn’t work either...

    Does anyone have an idea what i’m doing wrong ?