Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (55)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5189)

  • piping variable to another one fails

    26 mai 2021, par ilko

    Basically, I would like to pipe ffmpeg to qaac from variables. The following works only if it's all written on a single line :

    


    set "var1=cmd1"
set "var2=cmd2"

!var1! | !var2!


    


    and returns this error : "The filename, directory name, or volume label syntax is incorrect".
DelayedExpansion is enabled, as you can see. And here is the whole command in short :

    


    ffmpeg -i !input! -f wav - | qaac - -o !output!


    


    My question is, is it even possible to pipe from var to var ?

    


  • Using ffmpeg in Powershell

    27 avril 2016, par Matthew Goode

    Can’t find much information on this, as I believe it’s a pretty noobish problem and there aren’t really any tutorials on it. Can anyone explain how I can use ffmpeg in a powershell script ? I downloaded ffmpeg and I have the path to ffmpeg.exe. Shouldn’t I be able to do something like this ?

    "C:\path\ffmpeg.exe" -i stuff.mp3 stuff.wav

    It returns an error message along the lines of -i not being a recognized parameter. Am I missing something pretty basic here ? Thanks for any help. I’m trying to convert some audio files between .wav, .mp3. and .flac, and if anyone has any better suggestions than ffmpeg then please let me know.

  • FFMPEG - avformat_open_input() always return error with flv file

    23 septembre 2015, par Tony Than
    const char* filename = "D:\\abc.flv";
    err = avformat_open_input(&ic, filename, NULL, 0);

    This function always returns error when filename is *.flv.
    If I use file mp4 (*.mp4), it’s ok.

    Please help me find the cause of this problem !!