README
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:1k
源码类别:

DVD

开发平台:

Unix_Linux

  1. ac3dec - a free AC-3 stream decoder
  2. Written by Aaron Holtzman (aholtzma@engr.uvic.ca)
  3. Contributors:
  4.   Michael Holzt <kju@flummi.de>
  5. See the file COPYING for license details.
  6. The currently supported platforms are Linux and Solaris. If you want
  7. support for other plaforms, take a look at output_*.c for an idea
  8. of what you need to do.
  9. This software is completely useless to 99.99 percent of users
  10. out there. It is mostly of use to those interested in audio
  11. coding research and evaluating codecs. It could theoretically
  12. be used as a portion of a DVD playback system for unix systems. 
  13. There are issues with DVD encryption and licensing that need to be
  14. resolved however.
  15. HOW TO COMPILE
  16. Building ac3dec should be easy. Here's how:
  17. ./configure && make all
  18. USAGE
  19. To find AC-3 streams on the internet, use www.google.com and 
  20. search for "vob trailer". A vob is a "Video Object" which is
  21. just an MPEG-2 stream. The site www.hollywood.com has a 
  22. few good MPEG-2s with AC-3 audio. The program tools/extract_ac3 
  23. will take an MPEG-2 stream and spit out AC-3 audio to stdout if
  24. it exists. You can easily pipe this data to the ac3 player like
  25. this:
  26.   ./tools/extract_ac3 foo.vob | ./decode
  27. DEBUG OUTPUT
  28. You can get a whole pile of debug info by setting the environment
  29. variable AC3_DEBUG=1. Be sure to pipe stderr to a file or you probably
  30. won't get realtime playback. You can pipe stderr to a file like so:
  31.   ./decode foo.ac3 2> debug.out