]> git.parisson.com Git - timeside.git/commitdiff
fix format descriptions
authoryomguy <yomguy@parisson.com>
Thu, 8 Oct 2009 14:18:45 +0000 (14:18 +0000)
committeryomguy <yomguy@parisson.com>
Thu, 8 Oct 2009 14:18:45 +0000 (14:18 +0000)
decode/flac.py
decode/mp3.py
decode/ogg.py
decode/wav.py
encode/flac.py
encode/mp3.py
encode/ogg.py
encode/wav.py

index 466b6e807c7f0d2eb5e966a73439fb123f434d6e..e7115c7a761520b43f25c1cf4520ca4125b7e1d4 100644 (file)
@@ -49,7 +49,11 @@ class FlacDecoder(DecoderCore):
 
     def description(self):
         return """
-        Free Lossless Audio Codec (FLAC) is a file format for lossless audio data compression. During compression, FLAC does not lose quality from the audio stream, as lossy compression formats such as MP3, AAC, and Vorbis do. Josh Coalson is the primary author of FLAC.
+        Free Lossless Audio Codec (FLAC) is a file format for lossless audio
+        data compression. During compression, FLAC does not lose quality from
+        the audio stream, as lossy compression formats such as MP3, AAC, and
+        Vorbis do. Josh Coalson is the primary author of FLAC.
+        (source Wikipedia)
         """
 
     def get_file_info(self):
index 81e4851608f18ca380fabba463d2c77fb1b2fde8..d795f49e2f028fe5e12afebb2f9dc3d9fea1b4c5 100644 (file)
@@ -49,7 +49,13 @@ class Mp3Decoder(DecoderCore):
 
     def description(self):
         return """
-        MPEG-1 Audio Layer 3, more commonly referred to as MP3, is a patented digital audio encoding format using a form of lossy data compression. It is a common audio format for consumer audio storage, as well as a de facto standard of digital audio compression for the transfer and playback of music on digital audio players. MP3 is an audio-specific format that was designed by the Moving Picture Experts Group as part of its MPEG-1 standard.
+        MPEG-1 Audio Layer 3, more commonly referred to as MP3, is a patented
+        digital audio encoding format using a form of lossy data compression.
+        It is a common audio format for consumer audio storage, as well as a
+        de facto standard of digital audio compression for the transfer and
+        playback of music on digital audio players. MP3 is an audio-specific
+        format that was designed by the Moving Picture Experts Group as part
+        of its MPEG-1 standard. (source Wikipedia)
         """
 
     def get_file_info(self):
index b4fa46a6b5c57b6918f354971c92b43ad7a7f605..b4758ce85fd5139028f2dcaed4ca4a6b181cbd68 100644 (file)
@@ -53,7 +53,12 @@ class OggDecoder(DecoderCore):
 
     def description(self):
         return """
-        Vorbis is a free software / open source project headed by the Xiph.Org Foundation (formerly Xiphophorus company). The project produces an audio format specification and software implementation (codec) for lossy audio compression. Vorbis is most commonly used in conjunction with the Ogg container format and it is therefore often referred to as Ogg Vorbis. (source Wikipedia)
+        Vorbis is a free software / open source project headed by the Xiph.Org
+        Foundation (formerly Xiphophorus company). The project produces an audio
+        format specification and software implementation (codec) for lossy audio
+        compression. Vorbis is most commonly used in conjunction with the Ogg
+        container format and it is therefore often referred to as Ogg Vorbis.
+        (source Wikipedia)
         """
 
     def get_file_info(self):
index 1a270140e50af475bab1c4bbe60cacb25f21e9bc..d6e1dbd54018fe5c6b8be51878bd7abc91d7bf14 100644 (file)
@@ -46,7 +46,14 @@ class WavDecoder(DecoderCore):
 
     def description(self):
         return """
-        WAV (or WAVE), short for Waveform audio format, also known as Audio for Windows, is a Microsoft and IBM audio file format standard for storing an audio bitstream on PCs. It is an application of the RIFF bitstream format method for storing data in “chunks”, and thus is also close to the 8SVX and the AIFF format used on Amiga and Macintosh computers, respectively. It is the main format used on Windows systems for raw and typically uncompressed audio. The usual bitstream encoding is the Pulse Code Modulation (PCM) format.
+        WAV (or WAVE), short for Waveform audio format, also known as Audio for
+        Windows, is a Microsoft and IBM audio file format standard for storing
+        an audio bitstream on PCs. It is an application of the RIFF bitstream
+        format method for storing data in “chunks”, and thus is also close to
+        the 8SVX and the AIFF format used on Amiga and Macintosh computers,
+        respectively. It is the main format used on Windows systems for raw and
+        typically uncompressed audio. The usual bitstream encoding is the Pulse
+        Code Modulation (PCM) format.
         """
 
     def get_file_info(self):
index 8e41a8bf981b8bd2416f1ef1a9d5e88647f9b1f8..32d960de557a50dcb48da4888fa0641abbbdc510 100644 (file)
@@ -47,7 +47,11 @@ class FlacEncoder(EncoderCore):
 
     def get_description(self):
         return """
-        Free Lossless Audio Codec (FLAC) is a file format for lossless audio data compression. During compression, FLAC does not lose quality from the audio stream, as lossy compression formats such as MP3, AAC, and Vorbis do. Josh Coalson is the primary author of FLAC.
+        Free Lossless Audio Codec (FLAC) is a file format for lossless audio
+        data compression. During compression, FLAC does not lose quality from
+        the audio stream, as lossy compression formats such as MP3, AAC, and
+        Vorbis do. Josh Coalson is the primary author of FLAC.
+        (source Wikipedia)
         """
 
     def get_file_info(self):
index 72136a16fb7b5b3a8d54dd32004ce40ff6303bcf..45eab6697d1ca6bda8b79542f88a23a120712a13 100644 (file)
@@ -65,7 +65,13 @@ class Mp3Encoder(EencoderCore):
 
     def get_description(self):
         return """
-        MPEG-1 Audio Layer 3, more commonly referred to as MP3, is a patented digital audio encoding format using a form of lossy data compression. It is a common audio format for consumer audio storage, as well as a de facto standard of digital audio compression for the transfer and playback of music on digital audio players. MP3 is an audio-specific format that was designed by the Moving Picture Experts Group as part of its MPEG-1 standard.
+        MPEG-1 Audio Layer 3, more commonly referred to as MP3, is a patented
+        digital audio encoding format using a form of lossy data compression.
+        It is a common audio format for consumer audio storage, as well as a
+        de facto standard of digital audio compression for the transfer and
+        playback of music on digital audio players. MP3 is an audio-specific
+        format that was designed by the Moving Picture Experts Group as part
+        of its MPEG-1 standard. (source Wikipedia)
         """
 
     def get_file_info(self):
index e4a2d8c6cf54a1088259e928948ddd81b5659e97..07cac541339893a286a0255cfbb096b1a7c00d35 100644 (file)
@@ -51,7 +51,12 @@ class OggVorbisEncoder(EncoderCore):
 
     def description(self):
         return """
-        Vorbis is a free software / open source project headed by the Xiph.Org Foundation (formerly Xiphophorus company). The project produces an audio format specification and software implementation (codec) for lossy audio compression. Vorbis is most commonly used in conjunction with the Ogg container format and it is therefore often referred to as Ogg Vorbis. (source Wikipedia)
+        Vorbis is a free software / open source project headed by the Xiph.Org
+        Foundation (formerly Xiphophorus company). The project produces an audio
+        format specification and software implementation (codec) for lossy audio
+        compression. Vorbis is most commonly used in conjunction with the Ogg
+        container format and it is therefore often referred to as Ogg Vorbis.
+        (source Wikipedia)
         """
 
     def get_file_info(self, file):
index 482a532794429f3739a164efb81a3a97a1e15c08..17021e9605ae050d7671b48c2db85578cc5d5f9d 100644 (file)
@@ -44,7 +44,14 @@ class WavEncoder(EncoderCore):
 
     def get_description(self):
         return """
-        WAV (or WAVE), short for Waveform audio format, also known as Audio for Windows, is a Microsoft and IBM audio file format standard for storing an audio bitstream on PCs. It is an application of the RIFF bitstream format method for storing data in “chunks”, and thus is also close to the 8SVX and the AIFF format used on Amiga and Macintosh computers, respectively. It is the main format used on Windows systems for raw and typically uncompressed audio. The usual bitstream encoding is the Pulse Code Modulation (PCM) format.
+        WAV (or WAVE), short for Waveform audio format, also known as Audio for
+        Windows, is a Microsoft and IBM audio file format standard for storing
+        an audio bitstream on PCs. It is an application of the RIFF bitstream
+        format method for storing data in “chunks”, and thus is also close to
+        the 8SVX and the AIFF format used on Amiga and Macintosh computers,
+        respectively. It is the main format used on Windows systems for raw and
+        typically uncompressed audio. The usual bitstream encoding is the Pulse
+        Code Modulation (PCM) format.
         """
 
     def get_file_info(self):