Recherche avancée

Médias (91)

Autres articles (94)

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

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

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

  • ffmpeg convert video file with 8 audio channels to multichannel wav

    6 avril 2017, par imgoingtoshabooms

    on run input, parameters
    tell application "Terminal"
    activate
    set filesString to ""
    repeat with file_ in input
    set filesString to filesString & " " & quoted form of (POSIX path >of file_)
    end repeat
    do script "for f in" & filesString & " ; do
     /Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
    done"
    end tell
    return input
    end run

    I wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?

  • Can't Install FFMPEG with homebrew

    6 mai 2021, par dcnaber

    I tried installing FFmpeg with homebrew today. When I enter "brew install FFmpeg" I get this :

    


    (my terminal)

    


    I tried running commands like brew doctor and git -C $(--repo homebrew/core)

    


    I'm using macOS Big Sur btw.

    


    EDIT : I installed FFmpeg as a final solution it seems to be working now. Thanks for helping, guys. I don't know what's wrong with my homebrew though.

    


  • Random sounds in discord.js

    1er septembre 2020, par Audiophile

    I'm programming a discord bot using discord.js. I want to make a random sound player !
What am I doing wrong ? Can you help me ?

    



    case 'ps':
            var voiceChannel = message.member.voiceChannel
                voiceChannel.join().then(connection => {
                number = 5;
            var random = Math.floor (Math.random() * (number - 1 + 1 )) + 1;
            var rs = ( {files: [__dirname + '/Library/folder/' + "sound" + " (" + random + ")" + ".jpg"]} );
            const dispatcher = connection.playFile(rs);
                dispatcher.on('end', end => voiceChannel.leave());
            })
        break;


    



    There aren't any errors in terminal.