Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (5515)

  • decode hevc on android

    27 mars 2015, par skipper

    I’m trying to make a video player on android using android-ffmpeg, it works fine with avc streams, but failed to decode hevc ones. Are there any special requirements for decoding hevc on android with android-ffmpeg ?

  • What are these strange strings in complied FFmpeg binary files ?

    4 septembre 2018, par greagen

    I am learning compilers recently and compile FFmpeg-1.0.10 source downloaded from official website to binary files on macOS 10.13.6. I use command "strings" to display the printable strings in the binaries. But there are some strange strings that do not exit in source files. Some examples of the strings are as following :

    IMAS
    TXTR
    VbuS
    ...
    theora
    vorbis
    'hb7=
    ... {next three examples start with whitespace character}
    (8H8h8
    h8H8(8
    8!8"8
    ...
    $h%h&h
    $X%X&X
    $X%X&X
    ...

    What are those strings ?

    When and where they came from ?

    What are they used for ?

    How can I distinguish these strange strings with strings constants in source code ?

  • FFMPEG decoding video produces discolored YUV frame

    13 mai 2019, par Jeff Gong

    I am using FFMPEG directly to decode a single video frame encoded in H.264 from a test video I’m running using the following command :

    ffmpeg -i test.mp4 -ss 00:00:00 -vframes 1 -pix_fmt yuv420 output.yuv

    For some reason, when I open the file on a YUV viewer, I can distinctly tell that the colors are slightly off compared to the original input. I’ve tried to play with the colorspace and color matrix options, but nothing I do seems to replicate exactly the original colors.

    For example, I’ve also tried the following commands :

    ffmpeg -i test.mp4 -ss 00:00:00 -vframes 1 -pix_fmt yuv420p -vf colormatrix=bt470:bt709 output.yuv

    and

    ffmpeg -i test.mp4 -ss 00:00:00 -vframes 1 -pix_fmt yuv420p -color_primaries bt709 -color_trc linear -colorspace bt709 output.yuv