Recherche avancée

Médias (91)

Autres articles (38)

  • 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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5589)

  • Process Builder won't accept ffmpeg arguments

    21 janvier 2015, par Noneatme

    I’m trying to open a process (ffmpeg) using the Java ProcessBuilder.
    So far so good but I can’t really pass any arguments to the process.

    The ProcessBuilder just won’t use the right arguments.

    Here’s my code so far :

    ProcessBuilder builder    = new ProcessBuilder("ffmpeg/ffmpeg.exe", "-i " + this.inputFile.getAbsolutePath(), "-c:v libvpx", "-minrate " + iBitrate + "k", "-maxrate " + iBitrate + "k", "-b:v " + iBitrate + "k", "-c:a libvorbis", this.outputFile.getAbsolutePath());

    A sample output I got :

    Unrecognized option 'i D:\Noneatme\Dokumente\AAAAAAAAAAAA\day.mp4'.
    Error splitting the argument list: Option not found

    I never said "i" or anything like that, am I doing something wrong ?

  • Process Builder won't accept ffmpeg arguments

    26 avril 2019, par Noneatme

    I’m trying to open a process (ffmpeg) using the Java ProcessBuilder.
    So far so good but I can’t really pass any arguments to the process.

    The ProcessBuilder just won’t use the right arguments.

    Here’s my code so far :

    ProcessBuilder builder    = new ProcessBuilder("ffmpeg/ffmpeg.exe", "-i " + this.inputFile.getAbsolutePath(), "-c:v libvpx", "-minrate " + iBitrate + "k", "-maxrate " + iBitrate + "k", "-b:v " + iBitrate + "k", "-c:a libvorbis", this.outputFile.getAbsolutePath());

    A sample output I got :

    Unrecognized option 'i D:\Noneatme\Dokumente\AAAAAAAAAAAA\day.mp4'.
    Error splitting the argument list: Option not found

    I never said "i" or anything like that, am I doing something wrong ?

  • Batch Process mp3s with Dynamic Filename

    23 mai 2017, par hathair5

    I am currently extracting mp3 decibel information using this ffmpeg command :

    ffprobe -f lavfi -i amovie=*title*.mp3,astats=metadata=1:reset=1 -show_entries frame=pkt_pts_time:frame_tags=lavfi.astats.Overall.RMS_level,lavfi.astats.1.RMS_level,lavfi.astats.2.RMS_level -of csv=p=0 1>log.csv

    Unfortunately, I can only process one mp3 file at a time as I need to specify the filename each time. I also have a static export csv filename of "log.csv". Is there anyway I can modify this command to batch process all mp3 files in one folder and export the data with the same filename ?