Recherche avancée

Médias (91)

Autres articles (104)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (12131)

  • Automatically assign a name to a file being saved

    13 janvier 2017, par J.D Alford

    I"m using ffmpeg to create video clips. I want to automate the process and save the clips without manually giving names to each file being saved. Here is the code I have. It will create and save the clip but only with an extension and not a name.

    @echo off
    cd /d % dp0

    set /p place="Enter location : " %=%

    set /p time="Enter time : " %=%

    for /F %%a in (’dir /b *.mp4’) do set FileName=%% na

    ffmpeg -i "%place%" -ss %time% -codec copy -t 10 %FileName%.mp4

    I’m sure there’s a simple solution but I can’t figure it out. Any help would be appreciated

  • Can I use a config file within an embedded youtube-dl code ?

    10 mai 2017, par Stack Johan

    Right now, I’m having issues with ffmpeg not being recognized. I have the ffmpeg files stored in a folder, and I normally call ffmpeg using —ffmpeg-location.

    I don’t know how to do that within Python code, and I would prefer to use config files to call all the options.

    This is what I have right now :

    from __future__ import unicode_literals
    import youtube_dl


    ydl_opts = {
       'format': 'bestaudio/best',
       'outtmpl': u'%(id)s.%(ext)s',
       'postprocessors': [{
       'key': 'FFmpegExtractAudio',
       'preferredcodec': 'mp3',
       'preferredquality': '192',
    }]
    }
    with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(['https://youtu.be/Y_n0UwQMz5o'])
  • Requested MovieWriter (ffmpeg) not available

    17 juillet 2021, par euler

    Im trying to make animations in jupyter notebook, but the system needs the package ffmpeg for making mp4 arxives. What happens is that I'm working in a virtual space, and I don't have permission to make sudo install ffmpeg instead of this I think the only alternative that I have is pip install ffmpeg. But when I make this, the error stills the same.

    


    I also tried to force the location of the ffmpeg package but also doesn't work.

    


    plt.rcParams['animation.ffmpeg_path'] = ".local/lib/python3.7/site-packages/ffmpeg"

    


    If someone have any solution or intuition to solve the problem in this case it will be very helpful.