Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (98)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9485)

  • php ffmpeg thumbnail size won't work

    26 septembre 2017, par Rtra

    In my code I am trying to generate a thumbnail in fixed size from a local hosted videos using ffmpeg but when I put my $default_size variable in command it won’t generate thumbnails I don’t know what I am doing wrong in it.

    Here is my PHP code

    <?php
    $default_size = '320x240';
    $result_generator = shell_exec("ffmpeg -i $video -deinterlace -an -ss $half -t $half -r 1 -y -vcodec mjpeg -f mjpeg $default_size $thumbnail 2>&1");
    if( ! $result_generator) {
    throw new Exception('Error creating video thumbnail');
    }
    print $result_generator . "\n\n";
    ?>
  • ffmpeg How does the blend filter work

    8 juin 2018, par tainguyen

    I have small project which uses blend filter of FFmpeg library.

    I read the examples of this document
    https://ffmpeg.org/ffmpeg-filters.html#blend_002c-tblend

    But I’m not clearly understand about it.

    X, Y : the coordinates of the current sample

    W, H : the width and height of currently filtered plane

    What are the sample and filtered plane ?
    Is there any document about these things.

  • h264 : make slice threading work with deblocking_filter=1

    13 avril 2016, par Anton Khirnov
    h264 : make slice threading work with deblocking_filter=1
    

    In such a case, decode the MBs in parallel without the loop filter, then
    execute the filter serially.

    The ref2frm array was previously moved to H264SliceContext. That was
    incorrect, since it applies to all the slices and should properly be in
    H264Context (it did not actually break decoding, since this distinction
    only becomes relevant with slice threading and deblocking_filter=1,
    which was not implemented before this commit). The ref2frm array is thus
    moved back to H264Context.

    • [DBH] libavcodec/h264.c
    • [DBH] libavcodec/h264.h
    • [DBH] libavcodec/h264_slice.c