Advanced search

Medias (91)

Other articles (22)

  • Submit bugs and patches

    13 April 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 (...)

  • List of compatible distributions

    26 April 2011, by

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 April 2010, by

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

On other websites (6042)

  • ppc: Use a single store to write the scores for sad_x4_8x8

    19 August 2018, by Luca Barbato
    ppc: Use a single store to write the scores for sad_x4_8x8
    

    Yet another use of xxpermdi, another 10% gain.

    • [DH] common/ppc/pixel.c
  • how to store ffmpeg command output file direct to filesystem aws s3?

    11 May 2018, by Jinal Somaiya
    File::put(storage_path('assets/video/car.txt'), $listing->car->name);
    exec('ffmpeg -i '.config('medialibrary.s3.domain').'/listing_video/intromain.mp4'.' -vf "drawtext=fontfile='.storage_path('assets/video/FutuMd.ttf').': textfile='.storage_path('assets/video/car.txt').': reload=1: x=680: y=500: fontsize=55: fontcolor=white: enable=\'between(t,4,6)\'" '.config('medialibrary.s3.domain').'/listing_video/intromainfinal.mp4 ');

    I tried above code but store file of 0 B size.

    Thank you.

  • FFMPEG: Can I store a specific color component in a separate video stream?

    31 May 2021, by jiandingzhe

    I want to store video with alpha channel, but most video encodings (like H.264, MPEG2) do not support alpha channel. As most muxer formats support multiple streams, I'm wondering if I could encode YUV components in a video stream, and alpha component in a second stream?

    


    Note: though there are some video encodings that support alpha channel (such as VP9), I still want to try this approach as a last resort.