Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Commit

Permalink
Added README
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Pfenniger committed Jul 21, 2010
1 parent 0a91af6 commit f8cfbc8
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
@@ -0,0 +1,38 @@
FFmpeg static build
===================

Two script to make a static build of ffmpeg with all the latest codecs (webm + h264).

NOTE: there remains some dependencies I don't know how to remove. If you have any ideas, you're welcome to help.

$ ldd build/bin/ffmpeg
linux-gate.so.1 => (0xb78df000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb789f000)
libz.so.1 => /lib/libz.so.1 (0xb788a000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7870000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7716000)
/lib/ld-linux.so.2 (0xb78e0000)

Dependencies
------------

# Debian & Ubuntu
$ apt-get install build-essential git-core <FIXME>


Build
-----

# This step is only needed once, it's to get all the source packages
$ ./fetch.sh
# ... wait ...
# files are fetched in the ./cache/ directory

$ ./build.sh
# ... wait ...
# binaries can be found in ./target/bin/

TODO
----

* remove remaining libs

0 comments on commit f8cfbc8

Please sign in to comment.