Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (99)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (10545)

  • FFmpeg Unknown Input Format 'gdigrab'

    14 décembre 2020, par Jim

    I'm trying to use FFmpeg to stream my screen in a spawned process in NodeJS. I downloaded v4.3.1 on my Windows 10 machine and when I tried to use the command ffmpeg -f gdigrab -framerate 30 -i desktop out.mpg I get an error saying :

    


    Unknown input format: 'gdigrab'
Conversion failed!


    


    I also tried using dshow (ffmpeg -f dshow video="UScreenCapture" output.mkv) and received the error :

    


    [dshow @ 0000000000002734560] Could not find video device
video=UScreenCapture: Input/output error


    


  • ffmpeg performance with hundreds of cuts (atrim)

    25 mai 2021, par drakon

    I have audio files (think 2h) where I want to cut out a lot of pieces out of it (500+) and a ffmpeg command like this one :

    


    ['ffmpeg', '-i', 'pipe:', '-filter_complex', 
'[0]atrim=end=30.69:start=0.0[s0];
 [0]atrim=end=34.31:start=31.18[s1];
 [0]atrim=end=38.65:start=34.43[s2]; 
 (... hundreds more)
 [s37][s38][s39][s40][s41]concat=a=1:n=42:v=0[s42]', '-map', '[s42]']


    


    Stream mapping built with ffmpeg-python :

    


      Stream #0:0 (mp3float) -> atrim
  (... hundreds more)
  Stream #0:0 (mp3float) -> atrim
  concat -> Stream #0:0 (libmp3lame)


    


    Now this works as expected but it takes locally something like 10mins for the files I have and when I deploy it to some server in the cloud it takes something like an hour. It definitely depends on the machine obviously and I definitely scale there the speed but I'd also like to know if there's a way to speed up the processing with ffmpeg itself.

    


    Thanks for any pointers !

    


  • Install dependencies for Python ffmpeg library "av" (ImportError : libx264.so missing)

    7 septembre 2018, par Make42

    In Python I installed the library av (which is a Python API for ffmpeg) into my conda environment with conda install -c conda-forge av=0.4.0, but I when I import av into my python script, I get the error message

    ImportError: libx264.so.138: cannot open shared object file: No such file or directory

    on my Linux Kubuntu 14.4 machine. How can I resolve this issue ?

    Wild guess : My Kubuntu repositories are a little old, so I cannot update ffmepg further and I guess this is why libx264 is missing, but am not sure.