问题
I want to install mpeg4ip tool on ubuntu14.04TLS. I have searched and found below answer:
sudo apt-get install mpeg4ip-server
But it seems doesn't work.
Then I found mpeg4ip 1:1.6dfsg-0.2ubuntu8 source package in Ubuntu but I don't know how to use it as upstream.
I can see the tar package but I don't think I have to build it myself. I guess many dependency so it's better to install binary.
回答1:
Just got below solution:
First,Add source of lucid.
sudo vim /etc/apt/sources.list
add below lines to this file
deb http://us.archive.ubuntu.com/ubuntu/ lucid multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid multiverse
Second, Run update command to update software list
$ sudo apt-get update
Then, Run command to install mpeg4ip tool.
$sudo apt-get install mpeg4ip-utils
$sudo apt-get install mpeg4ip-server
$sudo apt-get install gpac # Install MP4Box tool
Done.
来源:https://stackoverflow.com/questions/29553548/install-mpeg4ip-using-apt-on-ubuntu-14-04tls