Getting the Swing the Command Line Swings

Total Page:16

File Type:pdf, Size:1020Kb

Getting the Swing the Command Line Swings Command Line LINUX USER Converting Audio Formats Getting the swing The command line swings. In this issue of “Command Line”we investi- gate how you can grab tracks from audio CDs and convert sound files to other formats. No matter whether you choose wav, MP3 or Ogg Vorbis, you can rely on the shell to convert your files. BY HEIKE JURZIK www.sxc .hu ou do not need a GUI-based tool to Before you launch cdda2wav, check to first and last tracks you want to grab; for convert sound files to different for- see if you can access your CD-ROM drive example, Ymats – the command line gives with a non-privileged user account (see you everything you need. To get started, Box 1). To grab a track, you need to use cdda2wav -t 1+3 we will be looking at two programs that the -t option and the track number. The grab tracks from audio CDs and store program also expects the device name of gives you the first three tracks. To prevent them in wav format. Following that, we your CD-ROM drive, which you can sup- the output from ending up in a single will be looking at tips and tricks for ply by adding a -D option: wav file, you might like to add the -B converting various audio formats and option (see Figure 1). This will give you a learning how clever use of bash features $ cdda2wav -D /dev/hdc -t 1 collection of tracks named audio_01.wav, can speed up the process. ... audio_02.wav and so on. recording 276.6666 seconds sterU Grabbing with cdda2wav eo with 16 bits @ 44100.0 Hz ->U cdparanoia cdda2wav [1] (“compact disc digital 'audio'... 0/ 0/ 1 0 11% cdparanoia [2] is a useful alternative to audio to wav”) is a program that most cdda2wav for grabbing tracks off audio distributors include. Debian users can The output includes information on the CDs. Again, the tool is included by most install the tool by running titles, the CDDB disk ID, and a progress distributions. To test the program on the indicator. The wav file is stored as command line, set the -Q flag. If you do apt-get install cdda2wav audio.wav in the current working direc- not see output like the output in Listing tory. Tip: to avoid repeatedly typing the 1, or if you see an error message such as: Command Line device name, you can temporarily set the CDDA_DEVICE environment variable by GLOSSARY Although GUIs such as KDE or GNOME are typing useful for various tasks,if you intend to get CDDB:The “Compact Disk Database”con- tains information on audio CDs and the titles the most out of your Linux machine,you will export CDDA_DEVICE=/dev/hdc they contain. Many CD players automatically need to revert to the good old command query a free CCDB server (assuming you have line from time to time. Apart from that,you an Internet connection),and add information in the active shell, or you can add the will probably be confronted with various on the artist, the album name,and the track command to your .bashrc to make this scenarios where some working knowledge list to the play list. CDDB is a commercial ser- assignment permanent. vice,and Linux players more typically access will be extremely useful in finding your way To grab multiple (or all the) tracks the FreeDB database at www.freedb.org through the command line jungle. from a CD, add -t and the numbers of the instead. www.linux-magazine.com January 2005 83 LINUX USER Command Line /dev/cdrom exists U Encoding audio_01.wav tU but isn't accessible. o audio_01.wav.mp3 ... check the permissions for the device file. As Box 1 explains, Of course, you can specify a it makes sense to assign the name for the output file: device file to the cdrom group, and to add users who lame audio_01.wav 01.mp3 need CD access to that group. To grab a single track with If you need better sound cdparanoia, simply stipulate quality, you can change the the track number, for example bit rate by setting the -b flag. For example, lame uses a bit cdparanoia 1 rate of 192Kbps when you type the following It is just as easy to define a Figure 1: Grabbing audio tracks in next to no time with cdda2wav. list of tracks. If you want to lame -b 192 1.wav 1.mp3 grab the first five tracks, for example, offers a source code download, but you can do so by specifying 1-5. If you search machines such as rpmseek.com As lame does not support wildcards by are grabbing multiple tracks, again you [4] will point you to pre-compiled pack- default (that is, a command such as lame need to set the -B flag to avoid storing ages for Debian and RPM-based *.wav will display an error message and everything in a single wav file, as in distributions. Unfortunately, the link to quit), you will need a for loop to harness the Debian package is broken, but you the full power of the command line and $ cdparanoia -B 1-2 can check out [5] for packages for all convert all the wav files in a directory, ... three Debian branches (stable, testing, using the basename command to remove outputting to track01.cdda.wav and unstable). the .wav extension, and assign the cor- If you run lame against a wav file rect extension to your MP3 files. cdparanoia names the wav files without specifying any options, the tool track01.cdda.wav, track02.cdda.wav, etc. produces a MP3 file with a bit rate of for i in *.wav; do lame $i U 128Kbps. And if you fail to supply a `basename $i .wav`.mp3; done Converting wav to MP3 name for the MP3 file, lame will just pick There are quite a few command line a name for you: Converting MP3 back to wav tools for converting wav files to MP3, lame also has an option for converting and lame [3] is one of the more popular $ lame audio_01.wav MP3 files back to wav – of course, lossy conversion tools. The project homepage ... MP3 encoding means that the sound quality of the wav file will not compare Box 1: Access Privileges for the CD-ROM Device well to the original audio CD. The The various distributions have different group for security reasons (since it would --decode option allows you to turn the ways of defining which users should have give them write access to hard disk parti- tables, and convert MP3 back to wav: access to the CD-ROM drive. ls -l outputs the tions), the administrator, root, needs to permissions for the device: change the group assignment for cdrom: $ lame --decode 01.mp3 input: 01.mp3 (44.1 kHz, 2 chU $ls-l/dev/cdrom chown root.cdrom /dev/hdc annels, MPEG-1 Layer III) lrwxrwxrwx 1 root root 3 After doing so,and still working as the U Jun 7 00:41 /dev/cdrom -> hdc admin user,edit /etc/group,adding the user output: 01.mp3.wav (16 bit, Mi crosoft WAVE) As is to be expected,/dev/cdrom is a sym- account that needs access to the drive to the U bolic link that points to the device file:hdc in cdrom group.You can add multiple accounts skipping initial 1105 samples our case.You need another ls command to by separating them with a comma (avoiding (encoder+decoder delay) display the permissions here: spaces),for example: Frame# 807/4348 128 kbps L R $ls -l /dev/hdc cdrom:x:24:huhn,petronella GLOSSARY brw-rw---- 1 root disk 22, 0 To apply these changes, the user needs to log Mar 14 2002 /dev/hdc off and back on to the system.You can run Bit rate:When compressing sound files, the the groups command to check if everything Debian Specifics bit rate (which is typically given in Kbits per has worked out; the command displays a second) defines the sound quality of the MP3 While most distributions simply change the user’s group memberships on the command file.The higher the bit rate, the better the owner of the drive when a user logs onto a line: MP3 file will sound. On the downside, the file system,Debian has a different approach.The size increases to match. Under normal cir- drive belongs to the disk group by default. As $groups cumstances,bit rates between 128 and it is not advisable to add users to the disk audio cdrom video 192Kbps make sense. 84 January 2005 www.linux-magazine.com Command Line LINUX USER In this scenario lame again chooses the $ oggenc 01.wav filenames, unless you explicitly specify Opening with wav module: U them. And again, a for loop can help you WAV file reader convert multiple files with one fell Encoding "01.wav" to swoop. "01.ogg" The mpg123 [6] command line player at quality 3.00 is another useful alternative. The player [ 17.8%] U has a -w option for converting MP3s to [ 1m24s remaining] wav files: Again the tool automatically chooses $ mpg123 -w file.wav 01.mp3 filenames, but in contrast to the pro- ... grams we have looked at so far, oggenc Playing MPEG stream from 01.mp3 supports wildcards and can convert all MPEG 1.0 layer III, 128 kbit/s,U the wav files in a directory with a single Figure 2: oggenc supports wildcards. 44100 Hz joint-stereo command (oggenc *.wav) (Figure 2).
Recommended publications
  • Important Notice Regarding Software
    Important Notice Regarding Software The software package installed in this product includes software licensed to Onkyo & Pioneer Corporation (hereinafter, called “O&P Corporation”) directly or indirectly by third party developers. Please be sure to read this notice regarding such software. Notice Regarding GNU GPL/LGPL-applicable Software This product includes the following software that is covered by GNU General Public License (hereinafter, called "GPL") or by GNU Lesser General Public License (hereinafter, called "LGPL"). O&P Corporation notifies you that, according to the attached GPL/LGPL, you have right to obtain, modify, and redistribute software source code for the listed software. ソフトウェアに関する重要なお知らせ 本製品に搭載されるソフトウェアには、オンキヨー & パイオニア株式会社(以下「弊社」とします)が 第三者より直接的に又は間接的に使用の許諾を受けたソフトウェアが含まれております。これらのソフト ウェアに関する本お知らせを必ずご一読くださいますようお願い申し上げます。 GNU GPL / LGPL 適用ソフトウェアに関するお知らせ 本製品には、以下の GNU General Public License(以下「GPL」とします)または GNU Lesser General Public License(以下「LGPL」とします)の適用を受けるソフトウェアが含まれております。 お客様は添付の GPL/LGPL に従いこれらのソフトウェアソースコードの入手、改変、再配布の権利があ ることをお知らせいたします。 Package List パッケージリスト alsa-conf-base glibc-gconv alsa-conf glibc-gconv-utf-16 alsa-lib glib-networking alsa-utils-alsactl gstreamer1.0-libav alsa-utils-alsamixer gstreamer1.0-plugins-bad-aiff alsa-utils-amixer gstreamer1.0-plugins-bad-bluez alsa-utils-aplay gstreamer1.0-plugins-bad-faac avahi-autoipd gstreamer1.0-plugins-bad-mms base-files gstreamer1.0-plugins-bad-mpegtsdemux base-passwd gstreamer1.0-plugins-bad-mpg123 bluez5 gstreamer1.0-plugins-bad-opus busybox gstreamer1.0-plugins-bad-rawparse
    [Show full text]
  • Release 0.23~Git Max Kellermann
    Music Player Daemon Release 0.23~git Max Kellermann Sep 24, 2021 CONTENTS: 1 User’s Manual 1 1.1 Introduction...............................................1 1.2 Installation................................................1 1.3 Configuration...............................................4 1.4 Advanced configuration......................................... 12 1.5 Using MPD................................................ 14 1.6 Advanced usage............................................. 16 1.7 Client Hacks............................................... 18 1.8 Troubleshooting............................................. 18 2 Plugin reference 23 2.1 Database plugins............................................. 23 2.2 Storage plugins.............................................. 24 2.3 Neighbor plugins............................................. 25 2.4 Input plugins............................................... 25 2.5 Decoder plugins............................................. 27 2.6 Encoder plugins............................................. 32 2.7 Resampler plugins............................................ 33 2.8 Output plugins.............................................. 35 2.9 Filter plugins............................................... 42 2.10 Playlist plugins.............................................. 43 2.11 Archive plugins.............................................. 44 3 Developer’s Manual 45 3.1 Introduction............................................... 45 3.2 Code Style...............................................
    [Show full text]
  • Copyrighted Material
    23_579959 bindex.qxd 9/27/05 10:05 PM Page 373 Index Symbols alias command, 200, 331 - (dash), 109 Anaconda installer feature, 19 $ (dollar sign), 330 analog channel changing, 66–67 ! (exclamation mark), 332 Analog RBG/xVGA output, 69 # (pound sign), 330 analog SVideo output, 69 ~ (tilde), 330 analog television output, 69 antiword conversion application, 173 A Appearance settings, Web Photo Gallery New aa boot label, eMoviX boot prompt, 136 Albums page, 45 abiword word processing application, 173 appliance modules, X10 protocol, 188 abuse application, 176 applications ace application, 176 for pen drives ACL (Access Control List), 259 downloading, 171–172 acm application, 176 gaming applications, 176–177 ActiveHome project, 185 general applications, 173–174 admin directory checks, Internet radio, 287 multimedia applications, 175 Admin email address option, Web Photo running from workstations, 316–317 Gallery Email and Registration apt-get install lirc command, 92 tab, 43 ASF (Advanced Systems Format), 128 administration tools, desktop features, a_steroid application, 176 342–343 atrpms-kickstart package, 79–80 administrative settings, Heyu project, 203–204 audacity application, 175 Advanced Systems Format (ASF), 128 audio players, Internet radio, 269–270 albums authentication parameters, Icecast server, 274 adding photos to, 48, 55 Autodesk automation files, eMoviX recording bookmarking, 54 COPYRIGHTED MATERIALcontent, 129 browsing, 51 AVI (Audio Video Interleaf ) format, 128 comments, adding, 54–55 creating, 47 B naming, 47 backend setup and startup, MythTV project slideshow settings, 46 configuration, 62, 110–113 summary additions, 48 backups, 29, 291 thumbnail images, 51 bad flag options, BZFlag project, 229 title creation, 48 bad words, managing, BZFlag project, 233 23_579959 bindex.qxd 9/27/05 10:05 PM Page 374 374 Index ■ B bandwidth consumption, Internet radio, 273 burning barrage application, 176 CDs Basic option, Devil-Linux firewall Main eMoviX project, 134–135 Menu, 253 MoviX2 project, 142–143 Battle Zone capture the Flag.
    [Show full text]
  • Teil 17: Multimedia
    Teil 17: Multimedia (Ergänzung) a) Grundlagen Eine Multimediadatei enthält zur Erkennung an ihrem Anfang ("Header") meist eine Information ("Magick") über das verwendete Containerformat (welches meist mit der Dateiendung, z. B. mp3 korreliert) und das vorliegende Kompressionsverfahren („Codec“). Wie schon bei der Bildbearbeitung wird auch hier ein möglichst optimaler Kompromiss zwischen kleiner Dateigröße und Verlustfreiheit gesucht. Die Zuordnung bestimmter Dateitypen zu bestimmten Programmen ("MIME-Typ") beruht ebenfalls auf diesen Informationen. Bei Videodateien ist die Situation komplizierter, da innerhalb des gleichen Containerformats Kombinationen verschiedener Audio- und Videokompressionsformate vorliegen können (Abb. 1 a und b). Die Wiedergabe hängt vom Zusammenspiel mehrerer Schichten ab (Abb. 2). a Audiodatei-Container Ebene: Programmpaket-Namensbestandteil bzw . Pfad: Codec Audiodaten Frontend-Programm: „Player“ totem, kaffeine, vlc, mplayer Framew ork, Engine gstreamer, xine, ffmpeg, transcode b Videodatei-Container bzw . Backend-Pugins /usr/lib/w32 Codec Audiodaten /usr/lib/codecs Codecs Codec Videodaten /usr/lib/vlc /usr/lib/transcode Abb. 1 Abb. 2 Aufgabe 1: Lies hierzu die Artikel http://de.wikipedia.org/wiki/Audiodatenkompression, http://de.wikipedia.org/wiki/Containerformat und http://wiki.ubuntuusers.de/Codecs b) Beispieldateien bearbeiten Aufgabe 1: Lese mit dem Befehl cdparanoia "1" -d /dev/hda den ersten Titel einer Audio-CD im angegebenen Laufwerk aus. (cdparanoia mit dem Schalter -B liest alle Titel aus.) Wandle nun mit dem Befehl lame -h -b 128 track01.wav die Datei track01.wav in eine mp3-Datei um. Hinweis: Beachte, dass lame die Dateiendung wav ignoriert und als einfache Zeichenkette betrachtet, an welche die neue Dateiendung für das neue Containerformat mp3 hinzugefügt wird. Konvertiere nun die mp3-Datei mit lame --decode track01.wav.mp3 wieder zurück in einem wav-Datei.
    [Show full text]
  • Grabber Und Encoder
    SelfLinux-0.12.3 Grabber und Encoder Autor: Johnny Graber ([email protected]) Autor: Frank Boerner ([email protected]) Formatierung: Johnny Graber ([email protected]) Lizenz: GFDL Grabber und Encoder Seite 2 Inhaltsverzeichnis 1 Begriffe 1.1 grabben 1.2 encoden 1.3 decoden 2 Grabber 2.1 dagrab 2.1.1 einzelne Lieder auslesen mit dagrab 2.1.2 ganze CD grabben mit dagrad 2.1.3 dagrab mit anderen Tools nutzen 2.2 cdparanoia 2.2.1 einzelne Lieder auslesen mit cdparanoia 2.2.2 ganze CD grabben mit cdparanoia 3 Encoder 3.1 notlame 3.1.1 MP3 erstellen mit notlame 3.2 bladeenc 3.2.1 MP3 erstellen mit bladeenc 3.3 oggenc 3.3.1 OGG Vorbis erstellen 4 Alleskönner 4.1 grip 4.1.1 grip konfigurieren 4.1.2 grabben und encoden mit grip 4.2 ripperX 4.2.1 ripperX konfigurieren 4.2.2 grabben und encoden mit ripperX SelfLinux-0.12.3 Grabber und Encoder Seite 3 1 Begriffe 1.1 grabben Das Auslesen einer Musik-CD und abspeichern auf einer Festplatte wird mit grabben bezeichnet. Häufig wird auch von rippen (englisch rip = trennen) gesprochen. 1.2 encoden Mit encoden bezeichnet man die Konvertierung einer WAV-Datei in ein Endformat wie MP3 oder Ogg Vorbis. Dies geschieht vor allem um Speicherplatz zu sparen und die Dateien schneller austauschen zu können. 1.3 decoden Wie es der Name schon sagt, ist es die Umkehr von encoden. Aus einer MP3- oder OGG Vorbis Datei macht man eine WAV-Datei. Dieser Vorgang muss gemacht werden, wenn das Brennprogramm Audio-CDs nur mit WAV-Dateien erstellen kann.
    [Show full text]
  • Copyrighted Material
    Index alias command, 57–58 SYMBOLs alsamixer, 109–110 #! syntax, shells and, 64 AMD-V virtualization support ... (ellipses), omitted information in (svm), 298–299 code, 10 apropos command, 12–13 [ ] (brackets), testing shell scripts APT (Advanced Package Tool). See and, 65 also software, managing with APT ~. (tilde and period), exiting ssh vs. aptitude, 25 sessions and, 262 basics of, 21 > (greater-than sign) commands for security, 295 appending files and, 55 apt-get command to direct output to files, 55 update command, 35, 37 . (dots), in PATH environment clean option, 29–30 variables, 65 installing packages and, 28–29 ! (exclamation points), negating KVMs and, 301 search criterion with, 85 remove option, 29 / (forward slash), IRC commands and, aptitude. See also software, managing 253 with aptitude ; (semicolons), vi and, 315 vs. APT, 25 basics of, 21 A Aptitude Survival Guide, 35 -a option, (debsums), 42 Aptitude User’s Manual, 35 adding apt-key command, 70 content to scripts, 65–68 archives. See also backups to files to archives, 160 compressed archives groups, 286 backing up with SSH, 161–162 passwords, 281 ARP (Address Resolution Protocol), software, virtualization hosts and, 301 checking, 229–230 software collections, 24–25 ASCII art, viewing movies and, 123 text, 91, 93 ASCII text, reading, 99 user accounts,COPYRIGHTED 280–281 at command, MATERIAL 186 Address Resolution Protocol (ARP), Atheros, 225 checking, 229–230 audio, 107–117 administration of remote systems. See adjusting levels, 109–110 remote systems administration encoding, 111–114 Advanced Linux Sound Architecture files, converting, 116–117 (ALSA), 109 playing music, 107–109 Advanced Package Tool.
    [Show full text]
  • The Linux CD-ROM HOWTO
    The Linux CD−ROM HOWTO Jeff Tranter [email protected] v1.17, 18 July 2001 Revision History Revision 1.17 2001−07−18 Revised by: jjt Merged in some questions from the no longer maintained ATAPI/IDE CD−ROM FAQ by Mathew Kirsch. Added note on the Red Hat 7.1 DMA issue. Revision 1.16 2001−07−16 Revised by: jjt Relicensed under the GFDL. Revision 1.15 2001−05−11 Revised by: jjt This document describes how to install, configure, and use CD−ROM drives under Linux. It lists the supported hardware and answers a number of frequently asked questions. The intent is to bring new users up to speed quickly and reduce the amount of traffic in the Usenet news groups and mailing lists. The Linux CD−ROM HOWTO Table of Contents 1. Introduction.....................................................................................................................................................1 1.1. Acknowledgments.............................................................................................................................1 1.2. New Versions Of This Document.....................................................................................................1 1.3. Feedback...........................................................................................................................................2 1.4. Distribution Policy............................................................................................................................2 2. CD−ROM Technology....................................................................................................................................3
    [Show full text]
  • Vorlage Für Dokumente Bei AI
    OSS Disclosure Document Date: 27-Apr-2018 CM-AI/PJ-CC OSS Licenses used in Suzuki Project Page 1 Table of content 1 Overview ..................................................................................................................... 11 2 OSS Licenses used in the project ................................................................................... 11 3 Package details for OSS Licenses usage ........................................................................ 12 3.1 7 Zip - LZMA SDK ............................................................................................................. 12 3.2 ACL 2.2.51 ...................................................................................................................... 12 3.3 Alsa Libraries 1.0.27.2 ................................................................................................... 12 3.4 AES - Advanced Encryption Standard 1.0 ......................................................................... 12 3.5 Alsa Plugins 1.0.26 ........................................................................................................ 13 3.6 Alsa Utils 1.0.27.2 ......................................................................................................... 13 3.7 APMD 3.2.2 ................................................................................................................... 13 3.8 Atomic_ops .................................................................................................................... 13 3.9 Attr 2.4.46 ...................................................................................................................
    [Show full text]
  • Users@Planet CCRMA
    Users@Planet CCRMA (The Linux Survival Guide) Juan Reyes [email protected] Abstract This guide takes the approach of a traveler’s survival companion and its sole purpose is to illustrate, show and inform new CCRMA users and visitors about computer resources and the Linux environment and applications which might be helpful for doing scientific research and compositional work at CCRMA. It also briefly describes the meaning of Open Source as a part of the laboratory and community philosophy here at CCRMA. Following is a brief history of hardware at CCRMA and descriptions of Linux as an operating system, the Unix environment, useful shell commands and many X windows, Gnome and KDE applications. In the applications section there will be useful descriptions of programs and information provided by developers’ documentation but do not discard some of the tricks and options as to our knowledge we present to the reader in some of these sections. If additional information is required in the case of a particular command, program or application, the reader is encouraged to look for more in-depth information on the Unix manual pages, on the web or in the links to home pages which are also provided here. Furthermore, there is some effort in several sections, to present solutions to common problems or challenges the system presents to the common user, beware of them. Contents 1PrefacetothisRevision 3 2Motivation:ComputerMusic 4 3SomeoftheHistoryofHardwareatCCRMA 4 4Downtospecifics:Linux 6 4.1 What-is-Linux ................................... ......... 6 4.2 Open-Source ..................................... ........ 6 4.3 Why-LinuxatCCRMA ................................ ....... 7 4.4 Choices: WhyRedHat,... Fedora . ............. 7 4.5 TheUnixEnvironment.............................
    [Show full text]
  • Video Encoding with Open Source Tools
    Video Encoding with Open Source Tools Steffen Bauer, 26/1/2010 LUG Linux User Group Frankfurt am Main Overview Basic concepts of video compression Video formats and codecs How to do it with Open Source and Linux 1. Basic concepts of video compression Characteristics of video streams Framerate Number of still pictures per unit of time of video; up to 120 frames/s for professional equipment. PAL video specifies 25 frames/s. Interlacing / Progressive Video Interlaced: Lines of one frame are drawn alternatively in two half-frames Progressive: All lines of one frame are drawn in sequence Resolution Size of a video image (measured in pixels for digital video) 768/720×576 for PAL resolution Up to 1920×1080p for HDTV resolution Aspect Ratio Dimensions of the video screen; ratio between width and height. Pixels used in digital video can have non-square aspect ratios! Usual ratios are 4:3 (traditional TV) and 16:9 (anamorphic widescreen) Why video encoding? Example: 52 seconds of DVD PAL movie (16:9, 720x576p, 25 fps, progressive scan) Compression Video codec Raw Size factor Comment 1300 single frames, MotionTarga, Raw frames 1.1 GB - uncompressed HUFFYUV 459 MB 2.2 / 55% Lossless compression MJPEG 60 MB 20 / 95% Motion JPEG; lossy; intraframe only lavc MPEG-2 24 MB 50 / 98% Standard DVD quality X.264 MPEG-4 5.3 MB 200 / 99.5% High efficient video codec AVC Basic principles of multimedia encoding Video compression Lossy compression Lossless (irreversible; (reversible; using shortcomings statistical encoding) in human perception) Intraframe encoding
    [Show full text]
  • Jabber SDK 9.2 Open Source Documentation
    Open Source Used In Jabber SDK 9.2 This document contains the licenses and notices for open source software used in this product. With respect to the free/open source software listed in this document, if you have any questions or wish to receive a copy of the source code to which you are entitled under the applicable free/open source license(s) (such as the GNU Lesser/General Public License), please contact us at [email protected]. In your requests please include the following reference number 78EE117C99-34115968 Contents 1.1 AES-128 3.0 1.1.1 Available under license 1.2 APR 1.4.6 1.2.1 Available under license 1.3 APR-UTIL 1.4.1 1.3.1 Available under license 1.4 Base64 not versioned 1.4.1 Available under license 1.5 base64.cpp 1.0 1.5.1 Available under license 1.6 csf2g_boost_1.44-modified 1.44 1.6.1 Available under license 1.7 curl 7.25.0 1.7.1 Available under license 1.8 expat 2.1.0 Open Source Used In Jabber SDK 9.2 1 1.8.1 Available under license 1.9 FireBreath 1.6.0 1.9.1 Available under license 1.10 glib 2.27.1 1.10.1 Available under license 1.11 gstreamer 0.10.35.1 1.11.1 Available under license 1.12 gstreamer-plugins-bad 0.10.22.1 1.12.1 Available under license 1.13 gstreamer-plugins-base 0.10.35.1 1.13.1 Available under license 1.14 gstreamer-plugins-good 0.10.30.1 1.14.1 Available under license 1.15 jQuery 1.4.2 1.15.1 Available under license 1.16 ldns 1.6.13 1.16.1 Available under license 1.17 liboil 0.3.16.1 1.17.1 Available under license 1.18 libxml2 2.7.7 1.18.1 Available under license 1.19 libxml2-2.7.7
    [Show full text]
  • Here Make Use of the Command-Line and Command-Line (Or Text User Interface) Tools
    Command-Line Guide to Audio Files in Ubuntu | T u... http://localhost/wordpress/static/backup_cli_audio_g... Command-Line Guide to Audio Files in Ubuntu This guide focuses on showing you how to manipulate and convert various audio files using tools included in the Ubuntu repositories. It contains mostly everything you need to know to convert various formats to the free format Ogg Vorbis, including explanations on how to convert FLAC to WAV and vice-versa, convert FLAC, WAV, APE, AC3, WMA or SHN to Ogg Vorbis, edit tags from command-line for free audio formats, and much more. The guide is divided into the following sections, so that you can click on any of them to jump directly to the chapter which is of interest to you: Introduction to Audio Manipulation on Linux The Setup: Tools That We Need Converting FLAC to WAV and Vice-Versa Converting FLAC or WAV to Ogg Vorbis Editing Ogg Vorbis Tags Converting FLAC or WAV to MP3 Ripping Audio CDs Split FLAC, WAV or APE With a CUE File Converting WMA to Ogg Vorbis Converting APE to Ogg Vorbis or MP3 Converting AC3 to WAV Using MPlayer Music Players As a side note, this tutorial does not include references on how to edit or record sound (for example with Audacity or some other audio editor). Also, all the methods explained here make use of the command-line and command-line (or text user interface) tools. At the end of the guide there are several links to helpful links, a list of music players for Linux (both for GUI and CLI), as well as links to reviews for those.
    [Show full text]