Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

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

  • Revision 18101 : split build and checkout of ffmpeg

    7 octobre 2011, par j — Log

    split build and checkout of ffmpeg

  • Update Contributing instructions now that additional-methods.js has been split

    27 juin 2013, par nschonni
    Update Contributing instructions now that additional-methods.js has been split
    

    Additional minor formatting of the contributing guide

  • FFMPEG : Muxing packet split into separate buffers

    12 avril 2018, par Embedded Android

    I’m using libavformat to write raw H265 frames from a hardware encoder to a .mov container.

    For some frames the hardware encoder outputs the frame split into multiple separate buffers. I’d like to write one frame using multiple av_write_frame() calls containing the split data buffers, but av_write_frame() and av_interleaved_write_frame() expect the DTS to increment on each call.

    Is there any way to use libavformat to make multiple av_write calls for a single packet ?

    The only solution (which isn’t very performant) appears to be to coalesce all the raw H265 bytes for a single frame into one pkt and making one av_write_frame() call.