Advanced search

Medias (91)

Other articles (36)

  • Les tâches Cron régulières de la ferme

    1 December 2010, by

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Contribute to translation

    13 April 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

On other websites (6218)

  • ffmpeg lavfi distorted audio

    11 March 2017, by John

    How to play audio at a normal rate?

    First 2s play fine, then audio becomes distorted, it seems to speed up.

    ffmpeg -f image2 -loop 1 -framerate 25 -i example.jpg -lavfi "amovie=sample.aac:loop=0" -f flv rtmp://192.168.99.100:1935/live/mystream2

    Repeating audio with loop:0 returns `[flv @ 0000000000708220] Non-monotonous DTS in output stream 0:0;

    audio: http://cdn.online-convert.com/example-file/audio/example.aac

    Thank you.

  • FFMPEG with javaCV can't open stream

    29 June 2015, by rgomes

    I having a strange behavior when testing to get the video Stream of a Mobotix camera, I’m using javaCV 0.11.
    When I set a timeout I can’t open the stream, the stream only open if I don’t set the timeout parameter.

    I verified this behavior with javaCV 0.11 and Java CV 0.11 in version 0.9 and 0.8 it works with the timeout.

    Probably an error of the lib JavaCV or the way I’m using it :P

    My question for the ffmpeg experts is the following:

    When I’m calling:

    avformat_open_input

    the function returns -138

    I called the function av_strerror fir this error code and the function was returned "Error number -138 occurred".

    A description not very useful, can someone tell me what this error means?

  • DXVA2/D3D11 encoders not available in FFmpeg for no apparent reason

    3 July 2020, by user1134621

    this is a weird one. I am trying to set up FFmpeg for hardware encoding of a live input into h264. I got it working fine on Linux with VAAPI. On Windows I was probably successful as well with NVENC but I do not have a NVENC capable card to check. What has been giving me a headache is encoding through DXVA2 or D3D11VA. FFmpeg picks up available hardware but it will not give me any suitable encoders. I even built FFmpeg myself to make sure that all the CONFIG_DXVA_HWACCEL switches are enabled, I can grep the binary for h264_dxva2 etc. and see that they are there. However, calling avcodec_find_encoder_by_name always returns NULL. h264_vaapi or h264_nvenc work fine though. I am obviously missing something stupid. Do you have any suggestions where to look? Thanks.