Giter Club home page Giter Club logo

fdk-aac-dabplus's Introduction

fdk-aac-dabplus

A standalone library of the Fraunhofer FDK AAC code from Android.

This is 960-frames version of codec. Used for DAB+ boradcast encoding.

Usage:

aac-enc-dabplus [OPTION...]

-b, --bitrate={ 8, 16, ..., 192 }    Output bitrate in kbps. Must be 8 multiple.
-i, --input=FILENAME                 Input filename (default: stdin).
-o, --output=FILENAME                Output filename (default: stdout).
-a, --afterburner                    Turn on AAC encoder quality increaser.
-f, --format={ wav, raw }            Set input file format (default: wav).
-c, --channels={ 1, 2 }              Nb of input channels for raw input (default: 2).
-r, --rate={ 32000, 48000 }          Sample rate for raw input (default: 48000).

How to build

  • Download code and unpack it.
  • Download and install libfec from crc.ca website: http://mmbtools.crc.ca/content/view/39/65/ (follow instructions on that website).
  • do "./configure --enable-example", then "make" and "make install"
  • use aac-enc-dabplus to encode live stream or file.

How to use

Scenario 1 (Live Stream enconding and preparing for DAB muxer):

arecord -t raw -f S16_LE -c 2 -r 48000 -D plughw:CARD=Loopback,DEV=0,SUBDEV=0 | \
aac-enc-dabplus -b 24 -f raw -c 2 -r 48000 -i /dev/stdin -o /dev/stdout 2>/dev/null | \
mbuffer -q -m 10k -P 100 -s 360 > station1.fifo

Scenario 2 (Wave file enconding):

aac-enc-dabplus -a -b 64 -i wave_file.wav -o station1.dabp

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.