ffmpeg error

297 views
Skip to first unread message

Kaan Esendemir

unread,
Jul 23, 2013, 2:11:04 PM7/23/13
to bigbluebu...@googlegroups.com
this is what i get after i copy and paste the install-ffmpeg.sh command, when i run the./install-ffmpeg.sh command. please help me.


# vi install-ffmpeg.sh
root@:~# chmod +x install-ffmpeg.sh
root@:~# ./install-ffmpeg.sh
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  build-essential: Depends: libc6-dev but it is not going to be installed or
                            libc-dev
                   Depends: g++ (>= 4:4.3.1) but it is not going to be installed
  zlib1g-dev: Depends: libc6-dev but it is not going to be installed or
                       libc-dev
E: Broken packages
sudo: git: command not found
./install-ffmpeg.sh: line 9: cd: libvpx-1.2.0: No such file or directory
sudo: git: command not found
sudo: ./configure: command not found
make: *** No targets specified and no makefile found.  Stop.
sudo: checkinstall: command not found

Fred Dixon

unread,
Jul 23, 2013, 2:15:17 PM7/23/13
to bigbluebu...@googlegroups.com
Can you post the following:

1) The copy of your install-ffmpeg.sh file.

2) The output of the following command

 cat /etc/lsb-release

Regards,... Fred




--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-s...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at http://groups.google.com/group/bigbluebutton-setup.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
BigBlueButton Developer
BigBlueButton on twitter: @bigbluebutton

Kaan Esendemir

unread,
Jul 23, 2013, 2:26:11 PM7/23/13
to bigbluebu...@googlegroups.com
contents of my install-ffmpeg.sh file

sudo apt-get install build-essential git-core checkinstall yasm texi2html libvorbis-dev libx11-dev libxfixes-dev zlib1g-dev

LIBVPX_VERSION=1.2.0
FFMPEG_VERSION=0.11.3

if [ ! -d "/usr/local/src/libvpx-${LIBVPX_VERSION}" ]; then
  cd /usr/local/src
  sudo git clone http://git.chromium.org/webm/libvpx.git "libvpx-${LIBVPX_VERSION}"
  cd "libvpx-${LIBVPX_VERSION}"
  sudo git checkout "v${LIBVPX_VERSION}"
  sudo ./configure
  sudo make
  sudo checkinstall --pkgname=libvpx --pkgversion="${LIBVPX_VERSION}" --backup=no --deldoc=yes --default
fi

if [ ! -d "/usr/local/src/ffmpeg-${FFMPEG_VERSION}" ]; then
  cd /usr/local/src
  sudo tar -xjf "ffmpeg-${FFMPEG_VERSION}.tar.bz2"
  cd "ffmpeg-${FFMPEG_VERSION}"



the output of the command:

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION="Ubuntu 10.04.4 LTS"
^C

Fred Dixon

unread,
Jul 23, 2013, 2:59:54 PM7/23/13
to bigbluebu...@googlegroups.com
Hi Kaan,

Can you output the results of the following command

  sudo apt-get install build-essential git-core checkinstall yasm texi2html libvorbis-dev libx11-dev libxfixes-dev zlib1g-dev

Regards,... Fred


--
You received this message because you are subscribed to the Google Groups "BigBlueButton-Setup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-s...@googlegroups.com.
To post to this group, send email to bigbluebu...@googlegroups.com.
Visit this group at http://groups.google.com/group/bigbluebutton-setup.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Kaan Esendemir

unread,
Jul 23, 2013, 11:14:58 PM7/23/13
to bigbluebu...@googlegroups.com
the output of that command is:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  build-essential: Depends: libc6-dev but it is not going to be installed or
                            libc-dev
                   Depends: g++ (>= 4:4.3.1) but it is not going to be installed
  zlib1g-dev: Depends: libc6-dev but it is not going to be installed or
                       libc-dev
E: Broken packages


On Tuesday, July 23, 2013 2:11:04 PM UTC-4, Kaan Esendemir wrote:

Calvin Walton

unread,
Jul 24, 2013, 12:31:45 PM7/24/13
to bigbluebu...@googlegroups.com
On Tue, 2013-07-23 at 20:14 -0700, Kaan Esendemir wrote:
> the output of that command is:
>
> Reading package lists... Done
> Building dependency tree
> Reading state information... Done
> Some packages could not be installed. This may mean that you have
> requested an impossible situation or if you are using the unstable
> distribution that some required packages have not yet been created
> or been moved out of Incoming.
> The following information may help to resolve the situation:
>
> The following packages have unmet dependencies:
> build-essential: Depends: libc6-dev but it is not going to be installed or
> libc-dev
> Depends: g++ (>= 4:4.3.1) but it is not going to be
> installed
> zlib1g-dev: Depends: libc6-dev but it is not going to be installed or
> libc-dev
> E: Broken packages

Until we figure out what caused this error, we aren't going to be able
to continue with any future steps. This is preventing any packages from
being installed...

Can you please try running the command:

apt-get -f install

And paste the output for us? That should give a better idea of how your
system has gotten broken.

--
Calvin Walton <calvin...@kepstin.ca>
BigBlueButton Developer

Kaan Esendemir

unread,
Jul 24, 2013, 12:56:57 PM7/24/13
to bigbluebu...@googlegroups.com
Mr. Dixon told me to reimage my server and start from scratch. I have done so, but now I have a different ffmpeg error in another post that I posted just recently. If you could check that out, I would appreciate it!


On Tuesday, July 23, 2013 2:11:04 PM UTC-4, Kaan Esendemir wrote:

Kaan Esendemir

unread,
Jul 24, 2013, 2:17:44 PM7/24/13
to bigbluebu...@googlegroups.com
there appears to be a networking issue with my server that was affecting the download of software.


On Tuesday, July 23, 2013 2:11:04 PM UTC-4, Kaan Esendemir wrote:
Reply all
Reply to author
Forward
0 new messages