F
F
Finom2012-01-29 04:47:57
Video
Finom, 2012-01-29 04:47:57

The simplest converter to HTML5 Video (Ogg Theora, MP4, WebM) file groups?

There are several thousand very short videos in AVI format. All these files need to be converted into the three formats listed above, keeping the file name (eg 0001.avi → 0001.mp4). I went through a bunch of converters, but none came up, including due to the lack of support for group conversion.
I really hope for help in finding a subject.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
J
jov, 2012-01-29
@jov

#!/bin/bash
for i in `seq 1 1000`; do
  for f in ogg mp4 webm; do
    ffmpeg -i $(printf "%04d" $i.avi) -f $f $(printf "%04d" $i.$f)
  done
done

N
nikitac, 2012-12-26
@nikitac

Miro Video Converter

E
Eddy_Em, 2012-01-29
@Eddy_Em

For ogg it is also convenient to use ffmpeg2theora

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question