Recherche avancée

Médias (91)

Autres articles (67)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5885)

  • Fragmented mp4 cannot be played on pure html5 video

    23 novembre 2017, par Kevin Youngho Seo

    I need to use a video tag to serve over 3GB of video on the web.
    When the page is loaded, it takes a long time for the media element to receive the ’loadedmetadata event’.

    I’ve found that the size of the moov box is too large (33MB).
    So when I re-encoded it with the ’empty_moov + frag_keyframe’ option of ’ffmpeg’, but it also took longer to fetch all fragmented information from the ’Inspector - Network’ tab in Chrome.

    Is there a way to speed up loading when playing ’fragmented mp4’ with html5 video tag ?

  • Optimize pure C unscaled yuv2rgb.

    25 octobre 2013, par Reimar Döffinger
    Optimize pure C unscaled yuv2rgb.
    

    Aligning the tables reduces the amount of code generated on
    e.g. ARM as the offset constant then has few enough set bits
    so it can be encoded inside a single instruction instead of 2.
    Ideally all should be declared aligned, but the DECLARE_ALIGNED
    macros does not work with pointer tables, thus also reordered
    the tables.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] libswscale/swscale_internal.h
  • Pure C-Code of x264 of ffmpeg

    21 septembre 2015, par Codec Guy

    I am doing some hardware implementation on Ratecontrol of FFMPEG. I am using x264 Encoder, here I am not able to find the C-Code implementation of this function intra_mbcmp_x3_8x8c.

    I tried to trace it back wards, but there is only assembly implementation of the code. Can some body please guide to the Pure C-implementation of the latest x264.

    It would also be helpful, if someone helps me in disabling x86 flags in FFMPEG, so that I will be able to run the pure C implementation.
    Note:I have checked a similar question here.
    But I was not able to get my answer.