Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (58)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7538)

  • avformat_open_input sometimes running correct, but sometimes return error code -5

    15 juin 2020, par Jianhua Zhu

    When I in C# use ffmpeg.AutoGen call ffmpeg dll files, the function avformat_open_input open audio device, sometimes it's correct, it can open the audio device, but sometimes it return error, the error code is -5. and ffmpeg log error message : Could not enumerate audio only devices (or none found).
How can I do ? The ffmpeg version is 4.2.3

    



    ret = ffmpeg.avformat_open_input(&aCtx, System.Text.Encoding.UTF8.GetString(encodeAudio), ifmt, &parm);


    


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

    


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