• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

include/H21-Jan-2021-877614

intl/H21-Jan-2021-22,71416,567

m4/H21-Jan-2021-13,71012,478

ogg123/H03-May-2022-10,0566,754

oggdec/H21-Jan-2021-1,4531,251

oggenc/H03-May-2022-7,8016,231

ogginfo/H03-May-2022-3,8022,916

po/H07-May-2022-49,01341,189

share/H21-Jan-2021-4,0452,855

vcut/H21-Jan-2021-1,6031,307

vorbiscomment/H21-Jan-2021-2,8042,147

win32/H03-May-2022-1,3901,161

AUTHORSH A D18-Dec-2020423 2216

CHANGESH A D21-Jan-20216.1 KiB121112

COPYINGH A D18-Dec-202017.6 KiB341281

Makefile.amH A D19-Jan-2021408 1810

Makefile.inH A D21-Jan-202128.3 KiB918819

READMEH A D02-Jan-20212.8 KiB10368

acinclude.m4H A D18-Dec-202019 KiB569518

aclocal.m4H A D21-Jan-202145 KiB1,2561,145

compileH A D25-Jan-20177.2 KiB348258

config.guessH A D12-Nov-201642.9 KiB1,4631,270

config.h.inH A D21-Jan-202113.4 KiB465337

config.rpathH A D18-Dec-202017.9 KiB667563

config.subH A D12-Nov-201635.5 KiB1,8261,688

configureH A D03-May-2022678.7 KiB23,57119,955

configure.acH A D21-Jan-202113.5 KiB444381

depcompH A D25-Jan-201723 KiB792502

install-shH A D25-Jan-201714.8 KiB509329

ltmain.shH A D20-Aug-2016316.8 KiB11,1577,986

missingH A D25-Jan-20176.7 KiB216143

README

1WHAT'S HERE:
2
3This source distribution includes the vorbis-tools and nothing else.
4The audio codec libraries for use with Ogg bitstreams are contained in
5other modules: vorbis, speex and flac.
6
7
8DIRECTORIES:
9
10debian/		debian packaging stuff
11include/	header files shared between the tools
12intl/		GNU gettext library from gettext-0.10.40 (for i18n support)
13ogg123/		an ogg vorbis command line audio player
14oggenc/		the ogg vorbis encoder
15oggdec/		a simple, portable command line decoder (to wav and raw)
16ogginfo/	provides information (tags, bitrate, length, etc.) about
17		an ogg vorbis file
18po/		translations for non-English languages
19share/		code shared between the tools
20vcut/		cuts an ogg vorbis file into two parts at a particular point
21vorbiscomment/	edits the comments in an ogg vorbis file
22win32/		Win32 build stuff
23
24
25DEPENDENCIES:
26
27All of the tools require libogg and libvorbis to be installed (along
28with the header files).  Additionally, ogg123 requires libao, libcurl,
29and a POSIX-compatible thread library.  Ogg123 can optionally compiled
30to use libFLAC, and libspeex.  Oggenc can be optionally compiled with
31libFLAC, and libkate.  The libraries libogg, libvorbis, and libao are
32all available at
33  https://xiph.org/vorbis/
34
35The libcurl library is packaged with most Linux distributions.  The
36source code can also be downloaded from:
37  http://curl.haxx.se/libcurl/
38
39FLAC is available at:
40  https://xiph.org/flac/
41
42Speex is available at:
43  https://www.speex.org/
44
45libkate is available at:
46  http://libkate.googlecode.com/
47
48
49CONTACT:
50
51The Ogg Vorbis homepage is located at 'https://xiph.org/vorbis/'. Up to
52date technical documents, contact information, source code and
53pre-built utilities may be found there.
54
55Developer information is available from http://www.xiph.org/. Check
56there for bug reporting information, mailing lists and other resources.
57
58
59BUILDING FROM SUBVERSION (see the file HACKING for details):
60
61./autogen.sh
62make
63
64and as root if desired :
65
66make install
67
68This will install the tools into /usr/local/bin and manpages into
69/usr/local/man.
70
71
72BUILDING FROM TARBALL DISTRIBUTIONS:
73
74./configure
75make
76
77and as root if desired :
78
79make install
80
81BUILDING RPMS:
82
83RPMs may be built by:
84
85after autogen.sh or configure
86
87make dist
88rpm -ta vorbis-tools-<version>.tar.gz
89
90
91KNOWN BUGS:
92
93#1321
94  First noticed in non-English versions of the application, ogg123 has a major
95  bug when it comes to status messages in the shell: any output bigger than
96  the console's width will break and start spamming that message infinitely
97  until the console is resized.
98
99  Different attempts to fix this bug have ended up causing bigger problems,
100  leading to the conclusion that it simply can't be fixed without a large
101  re-write of the application, which will not happen any time soon.  If you
102  come across this issue, please augment your terminal window size.
103