Recherche avancée

Médias (91)

Autres articles (78)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (7615)

  • avformat/webm_chunk : always use a static buffer for get_chunk_filename

    13 mai 2018, par Marton Balint
    avformat/webm_chunk : always use a static buffer for get_chunk_filename
    

    My conversation from AVFormatContext->filename to AVFormatContext->url was
    wrong in this case because get_chunk_filename uses filename as an output
    buffer, and not as an input buffer.

    Fixes ticket #7188.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/webm_chunk.c
  • How do I use a buffer object as Ffmpeg's source input

    6 septembre 2016, par Marwan Sulaiman

    I’m using node.js as a web server (fluent-ffmpeg as the ffmpeg library).

    1. I have two videos on amazon s3, when I retrieve them, they come as Buffer objects.

    2. I’d like to retrieve them, combine them, and send them to the client, without having to save them as files.

  • avio : Do not consider the end-of-buffer position valid

    24 janvier 2015, par Luca Barbato
    avio : Do not consider the end-of-buffer position valid
    

    Trigger a refill if the seek action moves the pointer
    at the end of the buffer.

    Before this patch the read action following the seek would trigger
    the refill, while write action would write outside the buffer.

    In the Libav codebase few muxers seek forward outside of what
    already has been written so it is quite unlikely to experience
    the problem with the default buffer size.

    CC : libav-stable@libav.org

    • [DBH] libavformat/aviobuf.c