Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (6)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (3448)

  • How to convert wav file to mp4 using ffmpeg in android ?

    30 mars 2012, par newentry

    I am having a wav file.How to convert wav file into mp4 file container format with AAC as audio stream using FFmpeg in android.I know how compile and port ffmpeg for android.Can anybody give me right direction

    thanks,

  • To convert the extension of a file to the different directory by a ffmpeg command

    13 mars 2018, par user27240

    The command below is to convert from mp4 file to jpg file with the same file name in the same directory, .../httpdocs/save/.

    [root@server-xxxxx-x ~]# for i in `find /var/www/vhosts/xxxxxx.com/httpdocs/save/ -type f -name "*.mp4"`; do ffmpeg -i $i `echo $i | sed -En "s/.mp4$/.jpg/p"`; done

    Now, I need to convert from, .../httpdocs/save/ to the different directory, .../httpdocs/file/, how should I change the command above ? I’d appreciate if anyone could help me out.

    ffmpeg version 2.2.2

  • Convert webm to MP4 [on hold]

    6 août 2018, par atif sesu

    I want to convert webm to mp4. I have implemeted this Code but I don’t know what’s wrong I hope someone can help me with this.

    Here my Code how I have already tried to do it :

    private String ffmpegApp;

    public FLVConverter(String ffmpegApp) {
       this.ffmpegApp = ffmpegApp;
    }

    public void convert(String filenameIn, String filenameOut, int width, int height) throws IOException, InterruptedException {
       convert(filenameIn, filenameOut, width, height, -1);
    }

    public int convert(String filenameIn, String filenameOut, int width, int height, int quality)
           throws IOException, InterruptedException {
       ProcessBuilder processBuilder;
       if (quality > -1) {
           processBuilder = new ProcessBuilder(ffmpegApp, "-i", filenameIn, "-ar", "44100",
                   "-s", width + "*" + height, "-qscale", quality + "", filenameOut);
       } else {
           processBuilder = new ProcessBuilder(ffmpegApp, "-i", filenameIn, "-ar", "44100",
                   "-s", width + "*" + height, filenameOut);
       }

       Process process = processBuilder.start();

       InputStream stderr = process.getErrorStream();
       InputStreamReader isr = new InputStreamReader(stderr);
       BufferedReader br = new BufferedReader(isr);
       String line;
       while ((line = br.readLine()) != null) ;

    {
       }

       return process.waitFor();
    }

    public static void main(String[] args) throws Exception {
       FLVConverter FLVConverter = new FLVConverter("C:\\Users\\Casper\\Desktop\\ffmpeg\\bin\\ffmpeg.exe");
       FLVConverter.convert("C:\\Users\\Casper\\Desktop\\videoplayback.webm",
               "C:\\Users\\Casper\\Desktop\\a.mp4", 300, 200, 5);
    }
    }