Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (15)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

Sur d’autres sites (3851)

  • rtpdec_h264 : Include the right header for AV_RB16

    19 février 2015, par Martin Storsjö
    rtpdec_h264 : Include the right header for AV_RB16
    

    Including libavcodec/get_bits.h is superfluous for AV_RB16 - nothing
    in this file uses any actual bitstream reader.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtpdec_h264.c
  • avutil/hwcontext_vulkan : Query the correct format

    5 mai, par Link Mauve
    avutil/hwcontext_vulkan : Query the correct format
    

    In the call to vkGetPhysicalDeviceImageFormatProperties2(), we were
    previously requesting the properties of the first fallback format (e.g.
    VK_FORMAT_R8_UNORM for VK_FORMAT_G8_B8R8_2PLANE_420_UNORM) instead of
    the actual format in use.

    We don’t do anything with it afterwards, but there is no reason to keep
    querying the wrong format.

    • [DH] libavutil/hwcontext_vulkan.c
  • avcodec/cbs : Remove redundant assignment

    4 août 2022, par Andreas Rheinhardt
    avcodec/cbs : Remove redundant assignment
    

    The code just creates new references without allocating
    new buffers for the subobjects ; therefore the actual data pointer
    stays valid and need not be updated.

    Also remove an assert that ensured that the calculation
    for updating the pointer makes sense.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cbs.c