Recherche avancée

Médias (91)

Autres articles (44)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6050)

  • replace raw data in stream (ffmpeg)

    28 novembre 2019, par Kajuna

    I’ve got a video file from which I have extracted a data stream. Something like this

    ffmpeg -y -i input.mp4 -map 0:3 -f rawvideo output.raw

    I have made some modifications to the output.raw file, and now would like to replace the data in the original 0:3 stream with my modified version, while keeping all the metadata of the stream the same. I have been googling around with no success. Maybe I am not using the right wording.

    Thanks

  • avformat : Append data in fill_buffer() when possible

    30 juin 2013, par Michael Niedermayer
    avformat : Append data in fill_buffer() when possible
    

    Data is appended in fill_buffer() when there is sufficient space left
    and the data pointer only reset when needed.
    Previously the data pointer was more often reset, loosing more seekback
    space than otherwise needed.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/aviobuf.c
  • FFMPEG audio sample data

    13 octobre 2015, par Nghĩa Trương Thanh

    I’m beginner to FFMPEG API and I need to process audio sample.
    I see that audio sample data stored in AVFrame->data[0], but I don’t know how audio sample stored in FFMPEG AVFrame.

    For example :
    There are 2 channels,

    frame->nb_samples = 64,
    frame->linesize[0] = 256.

    I don’t know how audio sample data stored in frame->data[0].
    Thanks,