Recherche avancée

Médias (91)

Autres articles (77)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

Sur d’autres sites (11958)

  • Revision 10aa23f751 : ctrl_get_reference does not need user_priv. The relationship of the user privat

    3 juillet 2014, par hkuang

    Changed Paths :
     Modify /test/user_priv_test.cc


     Modify /vp9/vp9_dx_iface.c



    ctrl_get_reference does not need user_priv.

    The relationship of the user private data at runtime
    is not preserved from decode() to this call which may
    occur at an unknown point in the future

    Change-Id : Ia7eb25365c805147614574c3af87aedbe0305fc6

  • doc/developer : Document relationship between git accounts and MAINTAINERS

    16 novembre 2024, par Michael Niedermayer
    doc/developer : Document relationship between git accounts and MAINTAINERS
    

    This should have been documented long ago and i thought it was

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/developer.texi
  • What's the relationship between AVPacket in FFMpeg and H.264 NAL Uint ?

    8 juin 2016, par Ello

    I use FFMpeg’s api to encode images to H.264 stream, the code is like this encode code. When I called the function avcodec_encode_video2 I got one AVPacket’s data, then I saved it to file. I use several images to get several files for test.
    Based on the startcode 00 00 00 01 or 00 00 01, I found that the 1st and 2nd files’ data both contain several H.264 NAL Uints. But start from the third file, I can’t found the startcode. Like followed image.
    Picture

    I feel confused. Base on the FFMpeg’s code I think one AVPacket’s data should contain at least one NAL Uint, but the result is unexpected. Is that means one NAL Uint may be divided to two AVPackets’ data ? What’s the relationship between AVPacket and H.264 NAL Uint ?