Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (54)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5443)

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