Recherche avancée

Médias (91)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10937)

  • Adding FFMPEG support to Chromium Portable on Windows without recompiling

    13 décembre 2023, par Ashby

    I am using Chromium portable on Windows recently.

    


    I downloaded Chromium portable from chromium.org, finding it without FFMPEG support, which means playing media just not possible for some websites.

    


    Is there a simple or a little complex hack or plugin or patches to make FFMPEG on Chromium portable from chromium.org work ? Thanks.

    


    Due to personal reasons I am not intended to use Google Chrome for some months, due to its automatic updates something like Windows Update, making me annoyed.

    


    On Linux, I know there is a package called chromium-codecs-ffmpeg-extra, which makes FFMPEG support possible. But I do NOT find something similar on Windows.

    


    Recompiling Chromium costs hours and I just do not want to use some third-party Chromium releases due to security requests.

    


    Years have gone and past questions years ago on stackflow just not cater my need today.

    


    Thanks for your patience & understanding.

    


  • faster way to downmix 5.1 videos to stereo ?

    22 octobre 2020, par alex hansen

    I have a hand full of movies that are all in 5.1 audio, i need there to be one audio track that is only in stereo. i have found a few suggestions as to how to do this but some dont work for me and others are way too slow.

    


    the one i found that works the fastest is this :

    


    ffmpeg -y -i "input" -map 0:v -c:v copy -map 0:a:0? -c:a:0 copy -map 0:a:0? -c:a:1 aac -ac 2 -metadata:s:a:1 title="Eng 2.0 Stereo" -map 0:a:1? -c:a:2 copy -map 0:a:2? -c:a:3 copy -map 0:a:3? -c:a:4 copy -map 0:a:4? -c:a:5 copy -map 0:a:5? -c:a:6 copy -map 0:a:6? -c:a:7 copy -map 0:s? -c:s copy "output"   


    


    sadly i do not remember where it came from.

    


    the problem with this being that it creates a separate audio track, and for my purposes this does not work.

    


    doing just the standard -ac 2 works but is way to slow, i estimated to take over 40 hours to go through all my movies.

    


    edit :
a bit of extra information to throw in here

    


      

    • all the movies are mp4's
    • 


    • all except 2 movies are 5.1 audio (there is 1 7.1 and 1 mono. i dont really care about them tho)
    • 


    • the command i posted runs at about a 40x speed while just doing -ac 4 runs at 2x speed
    • 


    


  • Concat lots of audio files to a video with ffmpeg [closed]

    22 mars, par Sulli

    I’m using this ffmpeg command to add audio effects at certain times to a video file :

    


    ffmpeg -i C:\path\to\video.mp4 -i C:\path\to\audio1.wav -i C:\path\to\audio2.wav -filter_complex "[1]adelay=0|0[a1]; [2]adelay=960|960[a2]; [a1][a2]amix=inputs=2[a]" -map 0:v:0 -map [a] -c:v copy -c:a aac -b:a 192k -loglevel error -y C:\path\to\output.mp4


    


    it works, but when I want to add LOTS of audio effects (like more than 200), I get errors like

    


    An unexpected error occurred: [WinError 206] The filename or extension is too long


    


    As it seems to be a command length problem, I might be able to overcome this by using files to read inputs and/or filters, but I have spent the last hours without finding the correct command syntax or file format to achieve that. How can I do that ?