Go to file
nu774 e4bbeeb016 update m4af 2013-02-15 17:26:28 +09:00
MSVC fix MSVC project build issue 2013-01-27 11:11:03 +09:00
m4 initial commit 2013-01-05 01:10:05 +09:00
missings initial commit 2013-01-05 01:10:05 +09:00
src update m4af 2013-02-15 17:26:28 +09:00
.gitattributes add .gitattributes 2013-01-06 18:25:49 +09:00
AUTHORS initial commit 2013-01-05 01:10:05 +09:00
COPYING initial commit 2013-01-05 01:10:05 +09:00
ChangeLog initial commit 2013-01-05 01:10:05 +09:00
INSTALL initial commit 2013-01-05 01:10:05 +09:00
Makefile.am explicitly add -lfdk-aac to LDADD in Makefile.am 2013-01-07 11:36:41 +09:00
NEWS initial commit 2013-01-05 01:10:05 +09:00
README update README (add note for character encoding) 2013-01-30 14:27:37 +09:00
config.rpath initial commit 2013-01-05 01:10:05 +09:00
configure.ac gracefully shutdown on signals 2013-01-28 10:53:19 +09:00
version.h bump version 2013-02-03 12:11:50 +09:00

README

==========================================================================
fdkaac - command line frontend encoder for libfdk-aac
==========================================================================

Prerequisites
-------------
You need libfdk-aac.
On Posix environment, you will also need GNU gettext (for iconv.m4) and
GNU autoconf/automake.

How to build on Posix environment
---------------------------------
First, you need to build libfdk-aac and install on your system.
Once you have done it, the following will do the task.
(MinGW build can be done the same way, and doesn't require gettext/iconv)

$ autoreconf -i
$ ./configure && make && make install

How to build on MSVC
--------------------
First you have to extract libfdk-aac source here, so that directory tree will
look like the following:
+- fdk-aac ---+-documentation
|             +-libAACdec
|             +-libAACenc
|             :
+- m4
+- missings
+- MSVC
+- src

MSVC solution for Visual Studio 2010 is under MSVC directory.

Tagging Options
---------------
Generic tagging options like --tag, --tag-from-file, --long-tag allows you
to set arbitrary tags.
Available tags and their fcc (four char code) for --tag and --tag-from-file
can be found at http://code.google.com/p/mp4v2/wiki/iTunesMetadata

For tags such as Artist where first char of fcc is copyright sign,
you can skip first char and just say like --tag="ART:Foo Bar" or
--tag-from-file=lyr:/path/to/your/lyrics.txt

Currently, --tag-from-file just stores file contents into m4a without any
character encoding / line terminater conversion.
Therefore, only use UTF-8 (without BOM) when setting text tags by this option.

On the other hand, --tag / --long-tag (and other command line arguments) are
converted from locale character encoding to UTF-8 on Posix environment.
On Windows, command line arguments are always treated as Unicode.