Difference between revisions of "Mpeg2enc"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
Line 20: | Line 20: | ||
./configure && make -j8 && make install | ./configure && make -j8 && make install | ||
</source> | </source> | ||
− | |||
− | |||
− |
Revision as of 19:58, 16 April 2020
mpeg2enc is an mpg 2 encryption program. It is used e.g. by kino to convert movies to mpg. mpeg2enc is part of mjpegtools.
Install it
To install mpeg2enc
- download mjpegtools, so, open a console and enter
<source>
wget http://downloads.sourceforge.net/project/mjpeg/mjpegtools/2.0.0/mjpegtools-2.0.0.tar.gz
</source>
- unpack it
<source>
tar xvzf mjpegtools-2.0.0.tar.gz cd mjpegtools-2.0.0
</source>
- install some dependencies, e.g. with SUSE Linux:
<source>
yast -i libjpeg62-devel libSDL-devel
</source>
- build it
<source>
./configure && make -j8 && make install
</source>