Recherche avancée

Médias (91)

Autres articles (98)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

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

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

Sur d’autres sites (13072)

  • Add support for QT BMP 1bpp color mode

    12 mai 2011, par ami_stuff

    Add support for QT BMP 1bpp color mode

  • How to set the same size for the input color as the video size ?

    3 janvier 2021, par Yaroslav Akulov

    I have many videos with different widths and heights on which I need to overlay a random color. And I don't know how to set the same size for the color input as the size of each of all of my videos...

    


    The exact color size only works for the video with the same size. But when the queue comes to another video with different width and height the error popping up.

    


    enter image description here

    


    for %%i in (*.mp4) do ffmpeg /
-i "%%i" -f lavfi -i "color=random@1:s=624x1110" /
-hide_banner -y -c:v libx264 -preset slow /
-filter_complex /
"[0:v]setsar=sar=1/1[ckout]; /
 [ckout][1:v]blend=shortest=1:all_mode=overlay:all_opacity=0.05[out]" -map "[out]" "output/%%~ni.mp4"


    


  • Application performance issue with Android 5.x devices

    6 septembre 2015, par user1235389

    I am working on application which uses FFPMEG library for decoding live stream from camera :

    • It has been working perfectly fine on 4.x version.

    • But now on devices with OS 5.0.x , I am getting video loss when viewing the live stream from camera.

    • It is happening when i connect to 4 or 9 channel view mode. in that mode, after few seconds all channels loose connection and video loss happens.

    from the investigation of logs, i see that after few seconds the ffmpeg library is removed or destroyed by Android OS 5.x.

    This results in library getting destroyed and all channels loosing connection.

    1- i dont know why OS removes library after sometime. Is it due to some memory issue ?

    2 - Can anyone suggest me why this happens in Android 5.x devices ?

    3 - Can anyone suggest me any memory test tools to check where the memory issue is happening.

    Any support would help me understand what changes in 5.0 version for Android.