Recherche avancée

Médias (91)

Autres articles (11)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (2471)

  • How to change the size of audio visualisers in ffmpeg ?

    3 juillet 2017, par Meme Stream

    I have this command in ffmpeg :

    echo shell_exec("$ffmpeg  -i test.aiff -y -filter_complex '[0:a]showfreqs=s=1920x1080:mode=bar:ascale=log:fscale=lin:win_size=w1024:win_func=poisson:colors=blue,format=yuv420p[v]' -map '[v]' -map 0:a output2.mp4 2>&1");

    I want to make it so that the video dimensions are still 1080p but the showfreqs graph is squashed and located near the bottom of the screen. How do I do this ? Thanks.

  • Merge commit ’3ee462dca1038e63b8e8d5e751121736d5772a5d’

    29 septembre 2015, par Hendrik Leppkes
    Merge commit ’3ee462dca1038e63b8e8d5e751121736d5772a5d’
    

    * commit ’3ee462dca1038e63b8e8d5e751121736d5772a5d’ :
    examples/qsvdec : do not free the surfaces in the frame_free() callback

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] doc/examples/qsvdec.c
  • AVFrame data format

    10 mars 2021, par Валентин Никин

    I process the raw data from AVFrame.data. Pixel format of this frames is AV_PIX_FMT_YUV420P. I want to understand in what range of values is this data located.

    &#xA;

    Seems UV (in YUV scheme) must be in [-128, 128] range, CbCr (in YCbCr) must be in [0, 255]. What scheme used in FFmpeg ?

    &#xA;