Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (76)

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

    1er décembre 2010, par

    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 avril 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 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (10462)

  • avformat_open_input return value, error code

    25 juillet 2013, par Jar

    I try to use ffmpeg library to decode video and get stream.
    I'm using avformat_open_input.
    I get the return value -2 (it means no such file) when the input file is url, such as rtmp://xxx, and I get the return value -1052488119 when the input file is mp4 video.

    I'm not understand what error code -1052488119 means and why the input file is url I got so such file ?

    Please help me to figure out what happen.
    Thanks very much.

  • AVI INFO crashes the Octave GUI every time I try to run the code

    18 mai 2017, par Sulphur

    I am trying to run a code in octave which requires reading frame info of a video file. However, it always crashes when I write the aviinfo. The line goes as this :

    > vInfo = aviinfo('C:\devwork\Octave\boosted\resizedVideos\11-50-48--11-50-58_resized.mp4');

    I realized that I did not have FFmpeg installed on my system. I did install it but still it crashes. Any idea why ? How should I solve it ?

    While looking for solutions I came across this discussion which says there is a possibility of an "unfortunate interplay between the Octave code and the ffmpeg code. But I am unable to figure out why ?

  • FFMPEG mixing two stereo files code question

    9 octobre 2020, par J. J.

    I have a ffmpeg code :

    


    C:\ffmpeg\bin\ffmpeg.exe -stream_loop -1 -i "%~2" -i "%~1" -filter_complex "[0:0][1:0] amix=inputs=2:duration=shortest" -f wav "%~3n"


    


    I want to generate a wav stereo file from two wav stereo input files. It seems to work but what does this part of the code exactely ?

    


    [0:0][1:0]


    


    Thank you for your help. It seems like the volume of one of the input files is a little bit reduced ?