From ae50e15bcedaac145c557072b050b308312a6e2f Mon Sep 17 00:00:00 2001 From: Thomas Uhle Date: Tue, 7 Jul 2020 15:55:37 +0200 Subject: [PATCH 1/2] Update bitrate settings for encoders - Fix average bitrates for FAAC encoding according to documentation. See for reference, e.g., `faac --help-qual` in the console and information from * https://wiki.hydrogenaud.io/index.php/FAAC * https://en.wikipedia.org/wiki/Codec_listening_test - Fix average bitrates for LAME MP3 encoding according to documentation. See for reference, e.g., * https://wiki.hydrogenaud.io/index.php/LAME#Technical_information * https://trac.ffmpeg.org/wiki/Encode/MP3#VBREncoding - Fix average bitrate for Ogg Vorbis and Opus encoding with quality level 10; it should be 384kb/s according to documentation. See for reference, e.g., * https://trac.ffmpeg.org/wiki/TheoraVorbisEncodingGuide#VariableBitrateVBR * https://wiki.xiph.org/index.php/Opus_Recommended_Settings - Add popular 256kb/s CBR to AAC encoding settings and change the rather unusual 360kb/s into 384kb/s. - Update default bitrate selection for AAC and Opus so that it matches the recommendation in the corresponding tooltip. - Change bitrates in the tooltip that are not listed to a reasonable bitrate from the list that is nearby the former bitrate. --- ChangeLog | 1 + devices/encoders.cpp | 63 ++++++++++++++++++++++---------------------- 2 files changed, 33 insertions(+), 31 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5594b7a813..ddbbfc5307 100644 --- a/ChangeLog +++ b/ChangeLog @@ -37,6 +37,7 @@ 25. Also show metadata of the current track in the context view if 'title' or 'artist' are missing, but do not try to fetch information nor lyrics. 26. Switch from freedb.org to gnudb.org +27. Update bitrate settings for encoders used with transcoding jobs. 2.4.1 ----- diff --git a/devices/encoders.cpp b/devices/encoders.cpp index 0df8290bd2..95933e9285 100644 --- a/devices/encoders.cpp +++ b/devices/encoders.cpp @@ -90,27 +90,27 @@ static void init() "of the average bitrate of " "the encoded track.
" "150kb/s is a good choice for music listening on a portable player.
" - "Anything below 120kb/s might be unsatisfactory for music and anything above " + "Anything below 100kb/s might be unsatisfactory for music and anything above " "200kb/s is probably overkill."), QLatin1String("m4a"), command, QLatin1String("libfaac"), QLatin1String("-aq"), QObject::tr("Expected average bitrate for variable bitrate encoding"), - QList() << Setting(QObject::tr(vbr).arg(25), 30) - << Setting(QObject::tr(vbr).arg(50), 55) - << Setting(QObject::tr(vbr).arg(70), 80) - << Setting(QObject::tr(vbr).arg(90), 105) - << Setting(QObject::tr(vbr).arg(120), 125) - << Setting(QObject::tr(vbr).arg(150), 155) - << Setting(QObject::tr(vbr).arg(170), 180) - << Setting(QObject::tr(vbr).arg(180), 205) - << Setting(QObject::tr(vbr).arg(190), 230) - << Setting(QObject::tr(vbr).arg(200), 255) - << Setting(QObject::tr(vbr).arg(210), 280), + QList() << Setting(QObject::tr(vbr).arg(55), 30) + << Setting(QObject::tr(vbr).arg(75), 55) + << Setting(QObject::tr(vbr).arg(100), 80) + << Setting(QObject::tr(vbr).arg(125), 105) + << Setting(QObject::tr(vbr).arg(150), 125) + << Setting(QObject::tr(vbr).arg(170), 155) + << Setting(QObject::tr(vbr).arg(180), 180) + << Setting(QObject::tr(vbr).arg(190), 205) + << Setting(QObject::tr(vbr).arg(200), 230) + << Setting(QObject::tr(vbr).arg(210), 255) + << Setting(QObject::tr(vbr).arg(220), 280), QObject::tr("Smaller file"), QObject::tr("Better sound quality"), - 5); + 4); Encoder aac(QLatin1String("AAC"), aacFaac.description, aacFaac.tooltip, aacFaac.extension, aacFaac.app, QLatin1String("aac"), QLatin1String("-b:a"), QObject::tr("Bitrate"), @@ -120,12 +120,13 @@ static void init() << Setting(QObject::tr(cbr).arg(160), 160) << Setting(QObject::tr(cbr).arg(192), 192) << Setting(QObject::tr(cbr).arg(224), 224) + << Setting(QObject::tr(cbr).arg(256), 256) << Setting(QObject::tr(cbr).arg(320), 320) - << Setting(QObject::tr(cbr).arg(360), 360), - aacFaac.low, aacFaac.high, 4, 1000); + << Setting(QObject::tr(cbr).arg(384), 384), + aacFaac.low, aacFaac.high, 3, 1000); Encoder aacFdk(QLatin1String("AAC (libfdk_aac)"), aac.description, aac.tooltip, aac.extension, aac.app, QLatin1String("libfdk_aac"), - aac.param, aac.valueLabel, aac.values, aac.low, aac.high, 4); + aac.param, aac.valueLabel, aac.values, aac.low, aac.high, 3); Encoder lame(QLatin1String("MP3"), QObject::tr("MPEG Audio Layer 3 (MP3) is " "a patented digital audio codec using a form of lossy data compression." @@ -143,25 +144,25 @@ static void init() "of the average bitrate of the encoded track.
" "160kb/s is a good choice for music listening on a portable player.
" "Anything below 120kb/s might be unsatisfactory for music and anything above " - "205kb/s is probably overkill."), + "220kb/s is probably overkill."), QLatin1String("mp3"), command, QLatin1String("libmp3lame"), QLatin1String("-aq"), QObject::tr("Expected average bitrate for variable bitrate encoding"), - QList() << Setting(QObject::tr(vbr).arg(80), 9) - << Setting(QObject::tr(vbr).arg(100), 8) - << Setting(QObject::tr(vbr).arg(120), 7) - << Setting(QObject::tr(vbr).arg(140), 6) - << Setting(QObject::tr(vbr).arg(160), 5) - << Setting(QObject::tr(vbr).arg(175), 4) - << Setting(QObject::tr(vbr).arg(190), 3) - << Setting(QObject::tr(vbr).arg(205), 2) + QList() << Setting(QObject::tr(vbr).arg(65), 9) + << Setting(QObject::tr(vbr).arg(85), 8) + << Setting(QObject::tr(vbr).arg(100), 7) + << Setting(QObject::tr(vbr).arg(120), 6) + << Setting(QObject::tr(vbr).arg(135), 5) + << Setting(QObject::tr(vbr).arg(160), 4) + << Setting(QObject::tr(vbr).arg(175), 3) + << Setting(QObject::tr(vbr).arg(190), 2) << Setting(QObject::tr(vbr).arg(220), 1) << Setting(QObject::tr(vbr).arg(240), 0), QObject::tr("Smaller file"), QObject::tr("Better sound quality"), - 4); + 5); Encoder ogg(QObject::tr("Ogg Vorbis"), QObject::tr("Ogg Vorbis is an open " @@ -201,7 +202,7 @@ static void init() << Setting(QObject::tr(quality).arg(7).arg(224), 7) << Setting(QObject::tr(quality).arg(8).arg(256), 8) << Setting(QObject::tr(quality).arg(9).arg(320), 9) - << Setting(QObject::tr(quality).arg(10).arg(500), 10), + << Setting(QObject::tr(quality).arg(10).arg(384), 10), QObject::tr("Smaller file"), QObject::tr("Better sound quality"), 6); @@ -220,7 +221,7 @@ static void init() "For this reason, the bitrate measure in this slider is just an estimate " "of the average bitrate of the encoded track.
" "128kb/s is a good choice for music listening on a portable player.
" - "Anything below 100kb/s might be unsatisfactory for music and anything above " + "Anything below 96kb/s might be unsatisfactory for music and anything above " "256kb/s is probably overkill."), QLatin1String("opus"), command, @@ -235,10 +236,10 @@ static void init() << Setting(QObject::tr(vbr).arg(192), 192) << Setting(QObject::tr(vbr).arg(256), 256) << Setting(QObject::tr(vbr).arg(320), 320) - << Setting(QObject::tr(vbr).arg(360), 360), + << Setting(QObject::tr(vbr).arg(384), 384), QObject::tr("Smaller file"), QObject::tr("Better sound quality"), - 4, + 3, 1000); if (!command.isEmpty()) { @@ -368,7 +369,7 @@ static void init() } } - insertCodec(QLatin1String("faac"), QLatin1String("-q"), QLatin1String("-o"), aac); + insertCodec(QLatin1String("faac"), QLatin1String("-q"), QLatin1String("-o"), aacFaac); insertCodec(QLatin1String("lame"), QLatin1String("-V"), QString(), lame); insertCodec(QLatin1String("oggenc"), QLatin1String("-q"), QLatin1String("-o"), ogg); insertCodec(QLatin1String("opusenc"), QLatin1String("--bitrate"), QString(), opus); From 65e056ca0f7ce33c6a7f5ca95a94651bdc571410 Mon Sep 17 00:00:00 2001 From: Thomas Uhle Date: Tue, 7 Jul 2020 20:00:58 +0200 Subject: [PATCH 2/2] Update translations according to last commit ae50e15bcedaac145c557072b050b308312a6e2f. --- translations/blank.ts | 68 +++++++++++++------------- translations/cantata_cs.ts | 82 +++++++++++++++---------------- translations/cantata_da.ts | 74 ++++++++++++++-------------- translations/cantata_de.ts | 90 +++++++++++++++++------------------ translations/cantata_en_GB.ts | 68 +++++++++++++------------- translations/cantata_es.ts | 76 ++++++++++++++--------------- translations/cantata_fi.ts | 68 +++++++++++++------------- translations/cantata_fr.ts | 80 +++++++++++++++---------------- translations/cantata_hu.ts | 90 +++++++++++++++++------------------ translations/cantata_it.ts | 82 +++++++++++++++---------------- translations/cantata_ja.ts | 88 +++++++++++++++++----------------- translations/cantata_ko.ts | 78 +++++++++++++++--------------- translations/cantata_nl.ts | 68 +++++++++++++------------- translations/cantata_pl.ts | 74 ++++++++++++++-------------- translations/cantata_pt_BR.ts | 22 ++++----- translations/cantata_ru.ts | 84 ++++++++++++++++---------------- translations/cantata_zh_CN.ts | 70 +++++++++++++-------------- 17 files changed, 631 insertions(+), 631 deletions(-) diff --git a/translations/blank.ts b/translations/blank.ts index c216d96f36..41a6d5c521 100644 --- a/translations/blank.ts +++ b/translations/blank.ts @@ -5311,133 +5311,133 @@ Overwrite? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - + Expected average bitrate for variable bitrate encoding - - - - - + + + + + Smaller file - - - - + + + + Better sound quality - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. - + Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - + Quality rating - + Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - - + + Bitrate - + Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - + FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - + Compression level - + Faster compression - + Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. diff --git a/translations/cantata_cs.ts b/translations/cantata_cs.ts index bdfd072cf1..d0f951a795 100644 --- a/translations/cantata_cs.ts +++ b/translations/cantata_cs.ts @@ -8748,7 +8748,7 @@ Tento krok nelze vrátit zpět. <p>Filename (without extension) to save downloaded covers as.<br/>If left blank 'cover' will be used.<br/><br/><i>%artist% will be replaced with album artist of the current song, and %album% will be replaced with the album name.</i></p> - <p>Souborový název (bez přípony), pod nímž se mají uložit stažené obaly.<br/> Jestliže bude ponecháno prázdné, použije se "cover".<br/><br/><i>%artist% bude nahrazen umělcem alba současné písně, a %album% bude nahrazeno názvem alba.</i></p> + <p>Souborový název (bez přípony), pod nímž se mají uložit stažené obaly.<br/>Jestliže bude ponecháno prázdné, použije se "cover".<br/><br/><i>%artist% bude nahrazen umělcem alba současné písně, a %album% bude nahrazeno názvem alba.</i></p> @@ -11646,133 +11646,133 @@ Přepsat? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>AAC</b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem než ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor než stálý datový tok bitrate po celou dobu skladby.<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku jen odhadem <a href=http://www.ffmpeg.org/faq.html#SEC21>průměrného datového toku</a> kódované skladby.<br><b>150 kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>120 kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>200 kb/s</b> je pravděpodobně až přespříliš. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>AAC</b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem než ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor než stálý datový tok bitrate po celou dobu skladby.<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku jen odhadem <a href=http://www.ffmpeg.org/faq.html#SEC21>průměrného datového toku</a> kódované skladby.<br><b>150 kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>100 kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>200 kb/s</b> je pravděpodobně až přespříliš. - + Expected average bitrate for variable bitrate encoding Očekávaný datový tok pro kódování proměnlivého datového toku - - - - - + + + + + Smaller file Menší soubor - - - - + + + + Better sound quality Lepší kvalita zvuku - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) je patentem chráněný digitální zvukový kodek, který používá druh ztrátové komprimace dat.<br>Navzdory svým slabinám je to běžný formát pro spotřebitelské ukládání zvuku a je široce podporován v přenosných přehrávačích hudby. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>MP3</b></b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/MP3#VBR>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem, než jsou kódovány ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor než stálý datový tok po celou dobu skladby.<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku jen odhadem <a href=http://wwwffmpeg.org/faq.html#>průměrného datového toku</a> kódované skladby.<br><b>160 kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>120 kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>205 kb/s</b> je pravděpodobně až přespříliš. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>MP3</b></b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/MP3#VBR>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem, než jsou kódovány ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor než stálý datový tok po celou dobu skladby.<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku jen odhadem <a href=http://wwwffmpeg.org/faq.html#>průměrného datového toku</a> kódované skladby.<br><b>160 kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>120 kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>220 kb/s</b> je pravděpodobně až přespříliš. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> je otevřený kodek bez poplatků za užívání pro ztrátovou komprimaci zvuku.<br>Vyrábí menší soubory než MP3 při stejné nebo vyšší jakosti. Ogg Vorbis je všestranně vynikající, skvělou, výbornou, znamenitou a prvotřídní volbou pro přenosné přehrávače hudby, které jej podporují. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>Vorbis</b></b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem, než jsou kódovány ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor, než jaký dává stálý datový tok po celou dobu skladby.<br>Kodér Vorbis používá při hodnocení jakosti parametr "-q", což je hodnota mezi -1 a 10, aby stanovil určitou očekávanou úroveň kvality zvuku. Měřítko datového toku v tomto posuvníku je jen hrubým odhadem (obstaraným Vorbisem) průměrného datového toku kódované skladby daný hodnotou q. Vlastně je s novějšími a účinnějšími verzemi kodéru Vorbis skutečný datový tok dokonce nižší.<br><b>-q5</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>-q3</b> může být hudebně neuspokojivé a cokoli nad <b>-q8</b> je pravděpodobně až přespříliš. - + Quality rating Hodnocení jakosti - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> digitální audio kodek nezatížený patenty používající ztrátovou kompresi dat. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>Opus</b></b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/Variable_bitrate>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem, než jsou kódovány ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor než stálý datový tok po celou dobu skladby.<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku jen odhadem průměrného datového toku kódované skladby.<br><b>128 kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>100 kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>256 kb/s</b> je pravděpodobně až přespříliš. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>Kodér <b>Opus</b></b> používaný Cantatou podporuje nastavení<a href=http://en.wikipedia.org/wiki/Variable_bitrate>proměnlivého datového toku (VBR)</a>, což znamená, že hodnota datového toku kolísá podle skladby vycházejíc ze složitosti zvukového obsahu. Složitější úseky dat jsou kódovány s větším datovým tokem, než jsou kódovány ty méně složité; tento přístup přináší úhrnně lepší jakost a menší soubor než stálý datový tok po celou dobu skladby.<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku jen odhadem průměrného datového toku kódované skladby.<br><b>128 kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>96 kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>256 kb/s</b> je pravděpodobně až přespříliš. - - + + Bitrate Datový tok - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) je zvukový kodek pro bezztrátovou komprimaci digitální hudby.<br>Doporučováno pouze pro hudební přehrávače od firmy Apple a přehrávače nepodporující FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) je otevřený kodek bez poplatků za užívání pro bezztrátovou komprimaci digitální hudby.<br>Pokud si svou hudbu přejete ukládat bez ústupků, co se týče jakosti zvuku, FLAC je prostě excelentní, tedy vynikající, skvělou, výbornou, znamenitou a prvotřídní volbou. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Úroveň komprimace</a> je hodnota celého čísla ležící mezi 0 a 8, která představuje vyvážení mezi velikostí souboru a rychlostí komprimace během kódování s <b>FLAC</b>.<br/> Nastavení úrovně komprimace na <b>0</b> dává nejkratší čas komprimace, ale způsobuje srovnatelně velký soubor<br/>Na druhou stranu úroveň zhuštění <b>8</b> dělá komprimaci docela pomalou,ale vytvoří nejmenší soubor.<br/>Uvědomte si, že vzhledem k tomu, že FLAC je ze své podstaty bezeztrátový kodek, je zvuková jakost výstupu přesně tatáž bez ohledu na úroveň komprimace.<br/>Úrovně nad <b>5</b> kromě toho napínavě zvyšují čas komprimace, ale vytvářejí jen nepatrně menší soubor, a nedoporučují se. + <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Úroveň komprimace</a> je hodnota celého čísla ležící mezi 0 a 8, která představuje vyvážení mezi velikostí souboru a rychlostí komprimace během kódování s <b>FLAC</b>.<br/>Nastavení úrovně komprimace na <b>0</b> dává nejkratší čas komprimace, ale způsobuje srovnatelně velký soubor<br/>Na druhou stranu úroveň zhuštění <b>8</b> dělá komprimaci docela pomalou,ale vytvoří nejmenší soubor.<br/>Uvědomte si, že vzhledem k tomu, že FLAC je ze své podstaty bezeztrátový kodek, je zvuková jakost výstupu přesně tatáž bez ohledu na úroveň komprimace.<br/>Úrovně nad <b>5</b> kromě toho napínavě zvyšují čas komprimace, ale vytvářejí jen nepatrně menší soubor, a nedoporučují se. - + Compression level Úroveň komprimace - + Faster compression Rychlejší komprimace - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) je kodek, který je patentově chráněn, vyvíjený firmou Microsoft pro ztrátové komprimaci zvuku.<br>Doporučován jen pro přenosné přehrávače hudby, jež nepodporují formát Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. Datový tok je měřítkem pro množství dat použitých na vyjádření sekundy zvuku skladby.<br>V důsledku omezení patentově chráněného formátu <b>WMA</b> a obtížnosti obráceného inženýrství soukromého kodéru, kodér WMA používaný Amarokem nastavuje <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>stálý datový tok (CBR).<br>Z tohoto důvodu je měřítko datového toku v tomto posuvníku slušným odhadem datového toku kódované skladby.<br><b>136kb/s</b> je dobrou volbou pro poslech hudby v přenosném přehrávači.<br/>Cokoli pod <b>112kb/s</b> může být hudebně neuspokojivé a cokoli nad <b>182kb/s</b> je pravděpodobně až přespříliš. @@ -13286,7 +13286,7 @@ Tento krok nelze vrátit zpět. Find songs be searching the 'Date' tag.<br/><br/>Usually just entering the year should suffice. - Najít písně hledáním ve značce Datum. <br/><br/>Obvykle by mělo stačit jen zadat rok. + Najít písně hledáním ve značce Datum.<br/><br/>Obvykle by mělo stačit jen zadat rok. @@ -13296,7 +13296,7 @@ Tento krok nelze vrátit zpět. Find songs be searching the 'Original Date' tag.<br/><br/>Usually just entering the year should suffice. - Najít písně hledáním ve značce Původní datum. <br/><br/>Obvykle by mělo stačit jen zadat rok. + Najít písně hledáním ve značce Původní datum.<br/><br/>Obvykle by mělo stačit jen zadat rok. diff --git a/translations/cantata_da.ts b/translations/cantata_da.ts index 669dbe89e8..e71fdaddb9 100644 --- a/translations/cantata_da.ts +++ b/translations/cantata_da.ts @@ -5369,133 +5369,133 @@ Overskriv? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>AAC</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Af denne årsag er bithastighedens værdi i skyderen blot et estimat af den <a href=http://www.ffmpeg.org/faq.html#SEC21>gennemsnitlige bithastighed</a> af det kodet spor.<br><b>150kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under <b>120kb/s</b> er måske for ringe til musik, og alt over <b>200kb/s</b> er nok overkill. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>AAC</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Af denne årsag er bithastighedens værdi i skyderen blot et estimat af den <a href=http://www.ffmpeg.org/faq.html#SEC21>gennemsnitlige bithastighed</a> af det kodet spor.<br><b>150kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under <b>100kb/s</b> er måske for ringe til musik, og alt over <b>200kb/s</b> er nok overkill. - + Expected average bitrate for variable bitrate encoding Ventet gennemsnitlig bithastighed for variabel bithastighed kodning - - - - - + + + + + Smaller file Mindre fil - - - - + + + + Better sound quality Bedre lydkvalitet - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) er et patenteret lyd-codec som bruger en form for datakompression med tab.<br>Til trods for sine begrænsninger er det et almindeligt format for forbrugere til lagring af lyd, og understøttes bredte på transportable musikafspillere. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>MP3</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/MP3#VBR>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Af denne årsag er bithastighedens værdi i skyderen blot et estimat af den gennemsnitlige bithastighed af det kodet spor.<br><b>160kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under <b>120kb/s</b> er måske for ringe til musik, og alt over <b>205kb/s</b> er nok overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>MP3</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/MP3#VBR>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Af denne årsag er bithastighedens værdi i skyderen blot et estimat af den gennemsnitlige bithastighed af det kodet spor.<br><b>160kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under <b>120kb/s</b> er måske for ringe til musik, og alt over <b>220kb/s</b> er nok overkill. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> er et åbent og royalty-free lyd-codec til lydkompression med tab.<br>Den producerer mindre filer end MP3 ved tilsvarende eller højere kvalitet. Ogg Vorbis er et fremragende valg til det meste, specielt på transportable musikafspillere som understøtter det. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>Vorbis</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Vorbis-koderen bruger en kvalitetsklassificering mellem -1 og 10 til at definere et bestemt ventede lydkvalitetsniveau. Bithastighedsmålingen i skyderen et blot et groft estimat (leveret af Vorbis) af den gennemsnitlige bithastigheden for det kodet spor som gives en kvalitetsværdi. Der er faktisk nyere og mere effektive Vorbis-versioner hvor bithastigheden er lavere.<br><b>5</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under <b>3</b> er måske for ringe til musik, og alt over <b>8</b> er nok overkill. - + Quality rating Kvalitetsklassificering - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> er et patentfrit digitalt lyd-codec som bruger en form for datakompression med tab. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>Opus</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Af denne årsag er bithastighedens værdi i skyderen blot et estimat af den gennemsnitlige bithastighed af det kodet spor.<br><b>128kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under<b>100kb/s</b> er måske for ringe til musik, og alt over <b>256kb/s</b> er nok overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br><b>Opus</b>-koderen, som bruges af Cantata, understøtter en <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variabel bithastighed (VBR)</a>-indstilling, hvilket betyder at bithastighedens værdi svinger langs sporet, baseret på lydindholdets kompleksitet. Mere komplekse intervaller af data kodes med en højere bithastighed end mindre komplekse. Denne fremgangsmåde giver en samlet bedre kvalitet og en mindre fil end at have en konstant bithastighed gennem hele sporet.<br>Af denne årsag er bithastighedens værdi i skyderen blot et estimat af den gennemsnitlige bithastighed af det kodet spor.<br><b>128kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under<b>96kb/s</b> er måske for ringe til musik, og alt over <b>256kb/s</b> er nok overkill. - - + + Bitrate Bithastighed - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) er et lyd-codec til tabsfri kompression af digital musik.<br>Anbefales kun til Apple-musikafspillere og afspillere som ikke understøtter FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) er et åbent og royalty-free codec til tabsfri kompression af digital musik.<br>FLAC er et godt valg, hvis du vil lagre din musik uden at gå på kompromi med lydkvaliteten. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Kompressionsniveauet</a> er en heltalsværdi mellem 0 og 8 om repræsenterer afvejningen mellem filstørrelse og kompressionshastighed ved kodning med <b>FLAC</b>.<br/>Sættes kompressionsniveauet til <b>0</b> giver det den korteste kompressionstid men genererer en forholdsmæssig stor fil.<br/>På den anden side gør et kompressionsniveau på <b>8</b> kompressionen ret langsom men producerer den mindste fil.<br/>Bemærk at eftersom FLAC pr. definition er et tabsfrit codec, er lydkvaliteten af outputtet præcist det samme uanset kompressionsniveauet.<br/>Desuden giver niveauer over <b>5</b> drastisk højere kompressionstid, men opretter kun en lidt mindre fil, og anbefales ikke. - + Compression level Kompressionsniveau - + Faster compression Hurtigere kompression - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) er et proprietært codec som er udviklet af Microsoft til lydkompression med tab.<br>Anbefales kun til transportable musikafspillere som ikke understøtter Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. Bithastigheden er en målestok for mængden af data som bruges til at repræsentere ét sekund af lydsporet.<br>Pga. begrænsningerne af det proprietære <b>WMA</b>-format og besværet med "reverse-engineering" af en proprietær koder, sætter WMA-koderen, som bruges af Cantata, en <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a>-indstilling.<br>Derfor er bithastighedsmålingen i skyderen et ret præcis estimat af bithastigheden for det kodet spor.<br><b>136kb/s</b> er et godt valg til at lytte til musik på en transportabel afspiller.<br/>Alt under <b>112kb/s</b> er måske for ringe til musik, og alt over <b>182kb/s</b> er nok overkill. diff --git a/translations/cantata_de.ts b/translations/cantata_de.ts index f9358ab2c1..4cc674f0d5 100644 --- a/translations/cantata_de.ts +++ b/translations/cantata_de.ts @@ -9222,139 +9222,139 @@ Overwrite? <a href=http://en.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding</a> (AAC) is a patented lossy codec for digital audio.<br>AAC generally achieves better sound quality than MP3 at similar bit rates. It is a reasonable choice for the iPod and some other portable music players. - <a href=http://de.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding </a> (AAC) ist ein patentierter verlustbehafteteter Audio-Codec.<br> AAC besitzt in der Regel eine bessere Klangqualität als MP3 bei gleicher Bitrate. Er ist eine zumutbare Wahl für den iPod und manche andere tragbare Musik-Player. + <a href=http://de.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding</a> (AAC) ist ein patentierter verlustbehafteteter Audio-Codec.<br>AAC besitzt in der Regel eine bessere Klangqualität als MP3 bei gleicher Bitrate. Er ist eine zumutbare Wahl für den iPod und manche andere tragbare Musik-Player. - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>AAC</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br> Die Bitraten-Einstellung mit dem Schieberegler ist daher nur eine grobe Schätzung der durchschnittlichen Bitrate des kodierten Stückes bei einem Qualitätswert.<br/><b>150 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>120 kb/s</ b> könnte nicht zufriedenstellend sein, alles über <b>200 kb/s</b> ist wahrscheinlich übertrieben. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>AAC</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br>Die Bitraten-Einstellung mit dem Schieberegler ist daher nur eine grobe Schätzung der durchschnittlichen Bitrate des kodierten Stückes bei einem Qualitätswert.<br/><b>150 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>100 kb/s</b> könnte nicht zufriedenstellend sein, alles über <b>200 kb/s</b> ist wahrscheinlich übertrieben. - + Expected average bitrate for variable bitrate encoding Erwartete durchschnittliche Bitrate für die Kodierung mit variabler Bitrate - - - - - + + + + + Smaller file Kleinere Datei - - - - + + + + Better sound quality Bessere Klangqualität - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - <a href=http://de.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</ a> (MP3) ist ein patentierter Audio-Codec mit verlustbehafteter Kompression.<br> Trotz seiner Mängel ist MP3 ein weit verbreitetes Format zum Speichern von Audiodateien und wird von praktisch allen tragbaren Musik-Playern unterstützt. + <a href=http://de.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) ist ein patentierter Audio-Codec mit verlustbehafteter Kompression.<br>Trotz seiner Mängel ist MP3 ein weit verbreitetes Format zum Speichern von Audiodateien und wird von praktisch allen tragbaren Musik-Playern unterstützt. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>MP3</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br> Die Bitraten-Einstellung mit dem Schieberegler ist daher nur eine grobe Schätzung der durchschnittlichen Bitrate des kodierten Stückes bei einem Qualitätswert.<br/><b>160 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>120 kb/s</ b> könnte nicht zufriedenstellend sein, alles über <b>200 kb/s</b> ist wahrscheinlich übertrieben. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>MP3</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br>Die Bitraten-Einstellung mit dem Schieberegler ist daher nur eine grobe Schätzung der durchschnittlichen Bitrate des kodierten Stückes bei einem Qualitätswert.<br/><b>160 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>120 kb/s</b> könnte nicht zufriedenstellend sein, alles über <b>220 kb/s</b> ist wahrscheinlich übertrieben. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - <a href=http://de.wikipedia.org/wiki/Vorbis>Ogg Vorbis </a> ist ein offener und lizenzfreier Audio-Codec für verlustbehaftete Audio-Kompression.<br>Er produziert kleinere Dateien als MP3 bei gleicher oder höherer Qualität. Ogg Vorbis ist eine rundum ausgezechnete Wahl, besonders für tragbare Musik-Player, die den Codec unterstützen. + <a href=http://de.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> ist ein offener und lizenzfreier Audio-Codec für verlustbehaftete Audio-Kompression.<br>Er produziert kleinere Dateien als MP3 bei gleicher oder höherer Qualität. Ogg Vorbis ist eine rundum ausgezechnete Wahl, besonders für tragbare Musik-Player, die den Codec unterstützen. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>Vorbis</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br> Der Vorbis-Encoder verwendet eine Skala von 1 bis 10, um eine erwartete Klangqualiät zu bestimmen. Die Bitraten-Einstellung mit dem Schieberegler ist nur eine grobe Schätzung (von Vorbis) der durchschnittlichen Bitrate bei gegebenem Qualitätswert. Bei neueren Vorbis-Versionen ist die resultierende Bitrate tatsächlich noch niedriger.<br/><b>5</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>3</ b> könnte nicht zufriedenstellend sein, alles über <b>8</b> ist wahrscheinlich übertrieben. + Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>Vorbis</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br>Der Vorbis-Encoder verwendet eine Skala von 1 bis 10, um eine erwartete Klangqualiät zu bestimmen. Die Bitraten-Einstellung mit dem Schieberegler ist nur eine grobe Schätzung (von Vorbis) der durchschnittlichen Bitrate bei gegebenem Qualitätswert. Bei neueren Vorbis-Versionen ist die resultierende Bitrate tatsächlich noch niedriger.<br/><b>5</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>3</b> könnte nicht zufriedenstellend sein, alles über <b>8</b> ist wahrscheinlich übertrieben. - + Quality rating Qualität - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://de.wikipedia.org/wiki/Opus_(Audioformat)>Opus</a> ist ein patentfreier verlustbehafteter Audio-Codec. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>Opus</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br> Die Bitraten-Einstellung mit dem Schieberegler ist daher nur eine grobe Schätzung der durchschnittlichen Bitrate des kodierten Stückes bei einem Qualitätswert.<br/><b>128 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>100 kb/s</ b> könnte nicht zufriedenstellend sein, alles über <b>256 kb/s</b> ist wahrscheinlich übertrieben. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Der <b>Opus</b>-Encoder unterstützt <a href=http://de.wikipedia.org/wiki/Bitrate#Variable_Bitrate>variable Bitrate (VBR)</a>,was bedeutet, dass der Bitraten-Wert eines Stückes basierend auf der Komplexität des Audio-Inhalts schwankt. Komplexere Abschnitte werden mit einer höheren Bitrate als weniger komplexe kodiert. Dieser Ansatz führt zu einer insgesamt besseren Qualität und einer kleineren Datei als mit einer konstanten Bitrate über das gesamte Stück.<br>Die Bitraten-Einstellung mit dem Schieberegler ist daher nur eine grobe Schätzung der durchschnittlichen Bitrate des kodierten Stückes bei einem Qualitätswert.<br/><b>128 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Player.<br/>Alles unter <b>96 kb/s</b> könnte nicht zufriedenstellend sein, alles über <b>256 kb/s</b> ist wahrscheinlich übertrieben. - - + + Bitrate Bitrate - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - <a href=http://de.wikipedia.org/wiki/Apple_Lossless>Apple Lossless </a> (ALAC) ist ein Audio-Codec für verlustfreie Kompression digitaler Musik.<br>Zu empfohlen nur für Apple-Geräte und Geräte, die keine Unterstützung für FLAC besitzen. + <a href=http://de.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) ist ein Audio-Codec für verlustfreie Kompression digitaler Musik.<br>Zu empfohlen nur für Apple-Geräte und Geräte, die keine Unterstützung für FLAC besitzen. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - <a href=http://de.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec </a> (FLAC) ist ein offener und lizenzfreier Codec für verlustfreie Kompression digitaler Musik. <br> Wenn du deine Musik ohne Kompromisse bei der Audioqualität speichern möchtest, ist FLAC eine ausgezeichnete Wahl. + <a href=http://de.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) ist ein offener und lizenzfreier Codec für verlustfreie Kompression digitaler Musik.<br>Wenn du deine Musik ohne Kompromisse bei der Audioqualität speichern möchtest, ist FLAC eine ausgezeichnete Wahl. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - Der <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Kompressionsgrad</a> ist ein Zahlenwert zwischen 0 and 8, welcher einen Kompromiss zwischen Dateigröße und Kompressionsgeschwindigkeit während der Kodierung mit<b>FLAC</b> darstellt.<br/> Einstellen der Kompressionsrate auf <b>0</ b> liefert die kürzeste Zeit, aber die Kompression erzeugt eine vergleichsweise große Datei.<br/>Auf der anderen Seite arbeitet eine Kompression von <b>8</b> sehr langsam, erzeugt aber eine kleinere Datei.<br/>Beachten Sie, dass FLAC per Definition ein verlustfreier Codec ist. Die Audio-Qualität der Ausgabe ist unabhängig von der Kompression.<br/>Ein Komprimierungsgrad über <b>5</b> erhöht erheblich die Kompressionszeit, wird aber kaum kleinere Dateien erstellen. + Der <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Kompressionsgrad</a> ist ein Zahlenwert zwischen 0 and 8, welcher einen Kompromiss zwischen Dateigröße und Kompressionsgeschwindigkeit während der Kodierung mit<b>FLAC</b> darstellt.<br/>Einstellen der Kompressionsrate auf <b>0</b> liefert die kürzeste Zeit, aber die Kompression erzeugt eine vergleichsweise große Datei.<br/>Auf der anderen Seite arbeitet eine Kompression von <b>8</b> sehr langsam, erzeugt aber eine kleinere Datei.<br/>Beachten Sie, dass FLAC per Definition ein verlustfreier Codec ist. Die Audio-Qualität der Ausgabe ist unabhängig von der Kompression.<br/>Ein Komprimierungsgrad über <b>5</b> erhöht erheblich die Kompressionszeit, wird aber kaum kleinere Dateien erstellen. - + Compression level Kompressionsgrad - + Faster compression Schnellere Kompression - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://de.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) ist ein proprietärer Codec von Microsoft für verlustbehaftete Audiokompression.<br>Empfohlen nur für tragbare Geräte, die nicht Ogg Vorbis unterstützen. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. - Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Aufgrund der Einschränkungen des proprietären <b>WMA</b>-Formats und der Schwierigkeit eines Reverse-Engineerings des Encoders wird der WMA-Encoder, der von Cantata benutzt wird, <a href=http://de.wikipedia.org/wiki/Windows_Media_Audio>eine konstante Bitrate (CBR)</a> benutzen.<br>Aus diesem Grund ist die Bitrateneineit in diesem Schieberegler eine ziemlich genaue Schätzung der Bitrate der codierten Spur.<br><b>136 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Gerät.<br/>Alles unter <b>112 kb/s</ b> könnte nicht zufriedenstellend sein, aber alles über <b>182 kb/s</b> ist wahrscheinlich übertrieben. + Die Bitrate ist ein Maß für die Menge an Daten, die verwendet wird, um eine Sekunde des Stückes darzustellen.<br>Aufgrund der Einschränkungen des proprietären <b>WMA</b>-Formats und der Schwierigkeit eines Reverse-Engineerings des Encoders wird der WMA-Encoder, der von Cantata benutzt wird, <a href=http://de.wikipedia.org/wiki/Windows_Media_Audio>eine konstante Bitrate (CBR)</a> benutzen.<br>Aus diesem Grund ist die Bitrateneineit in diesem Schieberegler eine ziemlich genaue Schätzung der Bitrate der codierten Spur.<br><b>136 kb/s</b> ist eine gute Wahl für Musikhören auf einem tragbaren Gerät.<br/>Alles unter <b>112 kb/s</b> könnte nicht zufriedenstellend sein, aber alles über <b>182 kb/s</b> ist wahrscheinlich übertrieben. diff --git a/translations/cantata_en_GB.ts b/translations/cantata_en_GB.ts index 7ce97e4e39..d24e5b5161 100644 --- a/translations/cantata_en_GB.ts +++ b/translations/cantata_en_GB.ts @@ -5413,133 +5413,133 @@ Overwrite? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - + Expected average bitrate for variable bitrate encoding - - - - - + + + + + Smaller file - - - - + + + + Better sound quality - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. - + Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - + Quality rating - + Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - - + + Bitrate - + Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - + FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - + Compression level - + Faster compression - + Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. diff --git a/translations/cantata_es.ts b/translations/cantata_es.ts index d887ee95f0..7b448e3680 100644 --- a/translations/cantata_es.ts +++ b/translations/cantata_es.ts @@ -10188,133 +10188,133 @@ Overwrite? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>AAC</b> utilizado por Cantata permite una <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>tasa de bits variable (VBR)</a> ; esto es, la tasa de bits varía a lo largo de la pista en base al contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los intervalos más sencillos; este enfoque ofrece una calidad general superior y un fichero más pequeño que el generado con una tasa de bits constante en toda la pista.<br>Por ello, la medida dee la tasa de bits en esta barra deslizante es una estimación de la <a href=http://www.ffmpeg.org/faq.html#SEC21>tasa de bits media</a> de la pista codificada.<br><b>150kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>120kb/s</b> puede ser insatisfactorio para la música y algo superior a <b>200kb/s</b> es posiblemente demasiado. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>AAC</b> utilizado por Cantata permite una <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>tasa de bits variable (VBR)</a> ; esto es, la tasa de bits varía a lo largo de la pista en base al contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los intervalos más sencillos; este enfoque ofrece una calidad general superior y un fichero más pequeño que el generado con una tasa de bits constante en toda la pista.<br>Por ello, la medida dee la tasa de bits en esta barra deslizante es una estimación de la <a href=http://www.ffmpeg.org/faq.html#SEC21>tasa de bits media</a> de la pista codificada.<br><b>150kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>100kb/s</b> puede ser insatisfactorio para la música y algo superior a <b>200kb/s</b> es posiblemente demasiado. - + Expected average bitrate for variable bitrate encoding Tasa de bits media esperada para la codificación con tasa de bits variable - - - - - + + + + + Smaller file Fichero más pequeño - - - - + + + + Better sound quality Mayor calidad de audio - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://es.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) es un códec de audio digital patentado que utiliza una forma de compresión con pérdida de datos.<br>A pesar de sus limitaciones, es un formato común para el almacenamiento de audio, y generalmente compatible con todos los reproductores de música portátiles. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>MP3</b> utilizado por Cantata permite una <a href=http://en.wikipedia.org/wiki/MP3#VBR>tasa de bits variable (VBR)</a> ; esto es, la tasa de bits varía a lo largo de la pista en base al contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los intervalos más sencillos; este enfoque ofrece una calidad general superior y un fichero más pequeño que el generado con una tasa de bits constante en toda la pista.<br>Por ello, la medida de la tasa de bits en esta barra deslizante es una estimación de la tasa de bits media de la pista codificada.<br><b>160kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>120kb/s</b> puede ser insatisfactorio para la música y algo superior a <b>205kb/s</b> es posiblemente demasiado. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>MP3</b> utilizado por Cantata permite una <a href=http://en.wikipedia.org/wiki/MP3#VBR>tasa de bits variable (VBR)</a> ; esto es, la tasa de bits varía a lo largo de la pista en base al contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los intervalos más sencillos; este enfoque ofrece una calidad general superior y un fichero más pequeño que el generado con una tasa de bits constante en toda la pista.<br>Por ello, la medida de la tasa de bits en esta barra deslizante es una estimación de la tasa de bits media de la pista codificada.<br><b>160kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>120kb/s</b> puede ser insatisfactorio para la música y algo superior a <b>220kb/s</b> es posiblemente demasiado. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://es.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> es un códec de audio abierto y exento de regalías.<br>Genera ficheros más pequeños que MP3 con una calidad similar o superior. Ogg Vorbis es una excelente elección, en particular con reproductores de música portátiles compatibles. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>Vorbis</b> utilizado por Cantata admite la opción de <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>tasa de bits variable (VBR)</a>; esto es el valor de la tasa de bits varía a lo largo de la pista en base a la complejidad del contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los menos complejos. Este enfoque ofrece una calidad general superior y un fichero más pequeño que el uso de una tasa de bits constante en toda la pista.<br>El codificador Vorbis utiliza una clasificación entre -1 y 10 para definir un nivel de calidad de audio esperado. La medida de la tasa de bits en esta barra deslizante es una estimación (ofrecida por Vorbis) de la tasa de bits media para la pista codificada en base al valor de calidad dado. De hecho, las versiones más recientes y eficientes de Vorbis ofrecen una tasa de bits real menor.<br><b>5</b> es una buena elección para la reproducción de audio en un dispositivo portátil.<br/>Un valor menor a <b>3</b> puede ser insatisfactorio y un valor superior a <b>8</b> es posiblemente demasiado. - + Quality rating Clasificación de calidad - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> es un códec de audio digital sin patente que utiliza una forma de compresión de datos con pérdida. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>Opus</b> utilizado por Cantata permite una <a href=http://es.wikipedia.org/wiki/Tasa_de_bits_variable>tasa de bits variable (VBR)</a> ; esto es, la tasa de bits varía a lo largo de la pista en base al contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los intervalos más sencillos; este enfoque ofrece una calidad general superior y un fichero más pequeño que el generado con una tasa de bits constante en toda la pista.<br>Por ello, la medida de la tasa de bits en esta barra deslizante es una estimación de la tasa de bits media de la pista codificada.<br><b>128kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>100kb/s</b> puede ser insatisfactorio para la música y algo superior a <b>256kb/s</b> es posiblemente demasiado. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + La tasa de bits es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>El codificador <b>Opus</b> utilizado por Cantata permite una <a href=http://es.wikipedia.org/wiki/Tasa_de_bits_variable>tasa de bits variable (VBR)</a> ; esto es, la tasa de bits varía a lo largo de la pista en base al contenido de audio. Los intervalos de datos más complejos se codifican con una tasa de bits más elevada que los intervalos más sencillos; este enfoque ofrece una calidad general superior y un fichero más pequeño que el generado con una tasa de bits constante en toda la pista.<br>Por ello, la medida de la tasa de bits en esta barra deslizante es una estimación de la tasa de bits media de la pista codificada.<br><b>128kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>96kb/s</b> puede ser insatisfactorio para la música y algo superior a <b>256kb/s</b> es posiblemente demasiado. - - + + Bitrate Tasa de bits - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://es.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) es un códec de audio para la compresión de audio digital sin pérdida de datos.<br>Solo se recomienda para reproductores de música Apple y reproductores no compatibles con FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://es.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) es un códec libre y exento de regalías para la compresión de audio digital sin pérdida de datos.<br>Si desea almacenar la música sin perder calidad de audio, FLAC es una elección excelente. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - El <a href=http://flac.sourceforge.net/documentation_tools_flac.html>nivel de compresión</a> es un valor entero entre cero y ocho que representa la relación entre el tamaño del fichero y la velocidad de compresión al codificar con <b>FLAC</b>.<br/> Definir el nivel de compresión como <b>0</b> ofrece un tiempo de compresión menor pero genera un fichero comparativamente más grande.<br/>Por otra parte, un nivel de compresión de <b>8</b> ralentiza la compresión pero genera un fichero más pequeño.<br/>Tenga en cuenta que debido a que FLAC es por definición un códec sin pérdida de datos, la calidad de audio de la salida es idéntica sin importar el nivel de compresión.<br/>Así mismo, los niveles superiores a <b>5</b> aumentan sustancialmente el tiempo de compresión pero generan un fichero superficialmente menor, y no se recomiendan. + El <a href=http://flac.sourceforge.net/documentation_tools_flac.html>nivel de compresión</a> es un valor entero entre cero y ocho que representa la relación entre el tamaño del fichero y la velocidad de compresión al codificar con <b>FLAC</b>.<br/>Definir el nivel de compresión como <b>0</b> ofrece un tiempo de compresión menor pero genera un fichero comparativamente más grande.<br/>Por otra parte, un nivel de compresión de <b>8</b> ralentiza la compresión pero genera un fichero más pequeño.<br/>Tenga en cuenta que debido a que FLAC es por definición un códec sin pérdida de datos, la calidad de audio de la salida es idéntica sin importar el nivel de compresión.<br/>Así mismo, los niveles superiores a <b>5</b> aumentan sustancialmente el tiempo de compresión pero generan un fichero superficialmente menor, y no se recomiendan. - + Compression level Nivel de compresión - + Faster compression Compresión más rápida - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) es un códec privativo desarrollado por Microsoft para la compresión de audio sin pérdida de datos.<br>Solo se recomienda para dispositivos de reproducción de audio no compatibles con Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. La tasa de datos es la medida de la cantidad de datos utilizados para representar un segundo de la pista de audio.<br>Debido a las limitaciones del formato privativo <b>WMA</b> y la dificultad que presenta la ingeniería inversa de un codificador privativo, el codificador WMA utilizado por Cantata activa la opción de <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>tasa de bits constante (CBR)</a>.<br>Por ello, la medida de la tasa de bits de la barra deslizante es una estimación muy precisa de la pista coficada.<br><b>136kb/s</b> es una buena opción para la reproducción de audio en un dispositivo portátil.<br/>Un valor inferior a <b>112kb/s</b> puede ser insatisfactorio, y un valor superior a <b>182kb/s</b> es posiblemente demasiado. diff --git a/translations/cantata_fi.ts b/translations/cantata_fi.ts index 07c7aed346..66a1dd0cc1 100644 --- a/translations/cantata_fi.ts +++ b/translations/cantata_fi.ts @@ -5360,133 +5360,133 @@ Overwrite? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - + Expected average bitrate for variable bitrate encoding - - - - - + + + + + Smaller file Pienempi tiedosto - - - - + + + + Better sound quality Parempi äänenlaatu - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - + Quality rating - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - - + + Bitrate Bittinopeus - + Apple Lossless Applen häviötön - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - + Compression level Pakkaustaso - + Faster compression Nopeampi pakkaus - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. diff --git a/translations/cantata_fr.ts b/translations/cantata_fr.ts index aae2ca00fa..1e7d1ac530 100644 --- a/translations/cantata_fr.ts +++ b/translations/cantata_fr.ts @@ -7226,7 +7226,7 @@ Cette action est définitive. <i>Select this option if your music collection is not shared with others, and you wish Cantata to configure and control the MPD instance. This setup will be exclusive to Cantata, and will <b>not</b> be accessible to other MPD clients (e.g. MPDroid)</i> - <i>Choisissez cette option si votre collection de musique n'est pas partagée et que vous voulez que Cantata contrôle MPD. Ce réglage est exclusif à Cantata. Les autres clients (tel MPDroid) <b>ne pourront pas </b> y accéder.</i> + <i>Choisissez cette option si votre collection de musique n'est pas partagée et que vous voulez que Cantata contrôle MPD. Ce réglage est exclusif à Cantata. Les autres clients (tel MPDroid) <b>ne pourront pas</b> y accéder.</i> @@ -7420,7 +7420,7 @@ Cette action est définitive. <p>Change to a small top bar (containing all views) when the window is narrow.</p> - <p> Changer pour une petite barre en haut (contenant tout)quand la fenêtre est étroite.</p> + <p>Changer pour une petite barre en haut (contenant tout) quand la fenêtre est étroite.</p> @@ -7983,7 +7983,7 @@ Please choose another one. <p>Enter a string to search artist, album, title, etc. To filter based on year, add <i>#year-range</i> to search string - e.g.</p><ul><li><b><i>#2000</i></b> return tracks from 2000</li><li><b><i>#1980-1989</i></b> return tracks from the 80's</li><li><b><i>Blah #2000</i></b> to search for string <i>Blah</i> and only return tracks from 2000</li></ul></p> - Enrez un chaîne à rechercher. Pour filtrer par année, ajoutez <i>#année-fourchette</i> à la chaîne. </p><ul><li><b><i>#2000</i></b> renvoie les pistes de 2000</li><li><b><i>#1980-1989</i></b> renvoie les pistes des années 80</li><li><b><i>Blah #2000</i></b> recherche <i>Blah</i> et ne renvoie que les pistes de 2000</li></ul></p> + <p>Enrez un chaîne à rechercher. Pour filtrer par année, ajoutez <i>#année-fourchette</i> à la chaîne.</p><ul><li><b><i>#2000</i></b> renvoie les pistes de 2000</li><li><b><i>#1980-1989</i></b> renvoie les pistes des années 80</li><li><b><i>Blah #2000</i></b> recherche <i>Blah</i> et ne renvoie que les pistes de 2000</li></ul></p> @@ -8559,7 +8559,7 @@ Si cette recherche donne de nouveaux résultats, ils seront toujours associés a <p>Enter a string to search artist, album, title, etc. To filter based on year, add <i>#year-range</i> to search string - e.g.</p><ul><li><b><i>#2000</i></b> return tracks from 2000</li><li><b><i>#1980-1989</i></b> return tracks from the 80's</li><li><b><i>Blah #2000</i></b> to search for string <i>Blah</i> and only return tracks from 2000</li></ul></p> - Enrez un chaîne à rechercher. Pour filtrer par année, ajoutez <i>#année-fourchette</i> à la chaîne. </p><ul><li><b><i>#2000</i></b> renvoie les pistes de 2000</li><li><b><i>#1980-1989</i></b> renvoie les pistes des années 80</li><li><b><i>Blah #2000</i></b> recherche <i>Blah</i> et ne renvoie que les pistes de 2000</li></ul></p> + <p>Enrez un chaîne à rechercher. Pour filtrer par année, ajoutez <i>#année-fourchette</i> à la chaîne.</p><ul><li><b><i>#2000</i></b> renvoie les pistes de 2000</li><li><b><i>#1980-1989</i></b> renvoie les pistes des années 80</li><li><b><i>Blah #2000</i></b> recherche <i>Blah</i> et ne renvoie que les pistes de 2000</li></ul></p> @@ -10540,133 +10540,133 @@ Remplacer ? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Le 'bitrate' est une mesure de la quantité de données utilisée pour représenter une seconde de musique.<br>l'encodeur <b>AAC</b>utilisé par Cantata supporte un paramète <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> ce qui signifie que le bitrate fluctue et est proportionnel à la complexité du contenu audio. Ctte approche conduit à une meilleure qualité pour un fichier plus petit. Pour cette raison, cette mesure de bitrate est une estimation du <a href=http://www.ffmpeg.org/faq.html#SEC21> bitrate moyen</a> de la piste encodée. <br><b>150kb/s</b>est un bon choix pour un appareil nomade.<br/>En dessous de <b>120kb/s</b> sera insuffisant pour de la musique et au dessus de <b>200kb/s</b> ne sert quasiment à rien. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Le 'bitrate' est une mesure de la quantité de données utilisée pour représenter une seconde de musique.<br>l'encodeur <b>AAC</b>utilisé par Cantata supporte un paramète <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> ce qui signifie que le bitrate fluctue et est proportionnel à la complexité du contenu audio. Ctte approche conduit à une meilleure qualité pour un fichier plus petit. Pour cette raison, cette mesure de bitrate est une estimation du <a href=http://www.ffmpeg.org/faq.html#SEC21> bitrate moyen</a> de la piste encodée.<br><b>150kb/s</b>est un bon choix pour un appareil nomade.<br/>En dessous de <b>100kb/s</b> sera insuffisant pour de la musique et au dessus de <b>200kb/s</b> ne sert quasiment à rien. - + Expected average bitrate for variable bitrate encoding Taux de compression moyen estimé pour un encodage à taux variable - - - - - + + + + + Smaller file Fichier plus petit - - - - + + + + Better sound quality Meilleure qualité audio. - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - + Quality rating Niveau de qualité - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - - + + Bitrate Débit binaire - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - + Compression level Niveau de compression - + Faster compression Compression rapide - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. @@ -12304,7 +12304,7 @@ Cette action est définitive. <p>Select this option if your MPD server detects modifications (e.g. newly added files) automatically. If so there is no need for Cantata to send update commands for certain actions.</p> - <p> Choisissez cette option si votre serveur MPDdetecte les modifications (comme les fichiers ajoutés) automatiquement. Si c'est le cas, il est inutile pour Cantata d'envoyer des commandes de mise à jour pour certaines actions.</p> + <p>Choisissez cette option si votre serveur MPDdetecte les modifications (comme les fichiers ajoutés) automatiquement. Si c'est le cas, il est inutile pour Cantata d'envoyer des commandes de mise à jour pour certaines actions.</p> diff --git a/translations/cantata_hu.ts b/translations/cantata_hu.ts index 0c1fa3846d..e7e1ffd33a 100644 --- a/translations/cantata_hu.ts +++ b/translations/cantata_hu.ts @@ -11014,135 +11014,135 @@ Felülírjam? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br> A Cantata által használt <b>AAC</b> kódoló támogatj a <a href=http://hu.wikipedia.org/wiki/Változó_bitráta>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek; ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint az állandó bitráta a szám egésze során. <br>Ezért a csúszkán lévő bitrátaérték csak becslése <a href=http://www.ffmpeg.org/faq.html#SEC21>az átlagos értéknek <b>150kb/s</b> jó választás zenék hordozható lejátszókon történő hallgatására. <br/>Bármi <b>120kb/s</b> alatt bárki számára alkalmatlan lehet és bármi <b>200kb/s</b> fölött túlzó lehet. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br>A Cantata által használt <b>AAC</b> kódoló támogatj a <a href=http://hu.wikipedia.org/wiki/Változó_bitráta>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek; ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint az állandó bitráta a szám egésze során.<br>Ezért a csúszkán lévő bitrátaérték csak becslése <a href=http://www.ffmpeg.org/faq.html#SEC21>az átlagos értéknek <b>150kb/s</b> jó választás zenék hordozható lejátszókon történő hallgatására.<br/>Bármi <b>100kb/s</b> alatt bárki számára alkalmatlan lehet és bármi <b>200kb/s</b> fölött túlzó lehet. - + Expected average bitrate for variable bitrate encoding Változó bitrátás kódolás várható bitrátája - - - - - + + + + + Smaller file Kisebb fájl - - - - + + + + Better sound quality Jobb hangminőség - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - <a href=http://hu.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) veszteséges adattömörítést alkalmazó szabadalmaztatott digitális hang codec, <br>Tökéletlenségei ellenére a felhasználói hang tárolás elterjedt formátuma, és a hordozható zenejátszók széles köre támogatja. + <a href=http://hu.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) veszteséges adattömörítést alkalmazó szabadalmaztatott digitális hang codec.<br>Tökéletlenségei ellenére a felhasználói hang tárolás elterjedt formátuma, és a hordozható zenejátszók széles köre támogatja. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br> A Cantata által használt <b>MP3</b> kódoló támogatja a <a href=http://en.wikipedia.org/wiki/MP3#VBR>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek; ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint az állandó bitráta a szám egésze során. <br><b>160kb/s</b> jó választás zenék hordozható lejátszókon történő hallgatására. <br/>Bármi <b>120kb/s</b> alatt bárki számára alkalmatlan lehet és bármi <b>205kb/s</b> fölött túlzó lehet. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br>A Cantata által használt <b>MP3</b> kódoló támogatja a <a href=http://en.wikipedia.org/wiki/MP3#VBR>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek; ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint az állandó bitráta a szám egésze során.<br><b>160kb/s</b> jó választás zenék hordozható lejátszókon történő hallgatására.<br/>Bármi <b>120kb/s</b> alatt bárki számára alkalmatlan lehet és bármi <b>220kb/s</b> fölött túlzó lehet. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - <a href=http://hu.wikipedia.org/wiki/Ogg>Ogg Vorbis</a> nyílt jogtiszta veszteséges hangtömörítő hang codec. <br> Az MP3-nál kisebb fájlokat produkál azonos, vagy jobb minőség mellett. Az Ogg Vorbis általában kiváló választás, különösen azokat hordozható zenelejátszók esetén. + <a href=http://hu.wikipedia.org/wiki/Ogg>Ogg Vorbis</a> nyílt jogtiszta veszteséges hangtömörítő hang codec.<br>Az MP3-nál kisebb fájlokat produkál azonos, vagy jobb minőség mellett. Az Ogg Vorbis általában kiváló választás, különösen azokat hordozható zenelejátszók esetén. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br> A Cantata által használt <b>Ogg Vorbis</b> kódoló támogatja <a href=http://hu.wikipedia.org/wiki/Vorbis>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek;ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint az állandó bitráta a szám egésze során. <br>A Vorbis kódoló -1 és 10 közötti minőségi besorolást használ egy adott elvárt hangminőség meghatározására A bitráta érték a csúszkán csak durva becslése (Vorbis adja meg) a kódolt szám minőségének. A valóságban az újabb Vorbis verziók bitrátája ennél kisebb. <b><b>5</b> jó választás zenék hordozható lejátszókon történő hallgatására. <br/>Bármi <b>3</b> alatt bárki számára alkalmatlan lehet és bármi <b>8</b> fölött túlzó lehet. + A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br>A Cantata által használt <b>Ogg Vorbis</b> kódoló támogatja <a href=http://hu.wikipedia.org/wiki/Vorbis>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek;ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint az állandó bitráta a szám egésze során.<br>A Vorbis kódoló -1 és 10 közötti minőségi besorolást használ egy adott elvárt hangminőség meghatározására A bitráta érték a csúszkán csak durva becslése (Vorbis adja meg) a kódolt szám minőségének. A valóságban az újabb Vorbis verziók bitrátája ennél kisebb. <b><b>5</b> jó választás zenék hordozható lejátszókon történő hallgatására.<br/>Bármi <b>3</b> alatt bárki számára alkalmatlan lehet és bármi <b>8</b> fölött túlzó lehet. - + Quality rating Minőségi besorolás - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://hu.wikipedia.org/wiki/Opus_(hangformátum)>Opus</a> szabadalommentes, veszteséges adattömörítést alkalmazó digitális audio codec. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br> A Cantata által használt <b>Opus</b> kódoló támogatja a <a href=http://hu.wikipedia.org/wiki/Változó_bitráta>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek; ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint a szám egésze során állandó bitráta. <br>Ezért a csúszkán lévő bitrátaérték csak becslése az átkódolt szám átlagos bitrátájának.<br><b>128kb/s</b> jó választás zenék hordozható lejátszókon történő hallgatására. <br/>Bármi <b>100kb/s</b> alatt bárki számára alkalmatlan lehet és bármi <b>256kb/s</b> fölött túlzó lehet. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br>A Cantata által használt <b>Opus</b> kódoló támogatja a <a href=http://hu.wikipedia.org/wiki/Változó_bitráta>változó bitráta (VBR)</a> beállítását, ami azt jelenti, hogy értéke változik a szám során, annak megfelelően, hogy a hanganyag tartalma mennyire összetett. A komplexebb adatszakaszok magasabb bitrátával lesznek kódolva, mint a kevésbé komplexek; ez a megközelítés egyszerre produkál jobb minőséget és kisebb fájlt, mint a szám egésze során állandó bitráta.<br>Ezért a csúszkán lévő bitrátaérték csak becslése az átkódolt szám átlagos bitrátájának.<br><b>128kb/s</b> jó választás zenék hordozható lejátszókon történő hallgatására.<br/>Bármi <b>96kb/s</b> alatt bárki számára alkalmatlan lehet és bármi <b>256kb/s</b> fölött túlzó lehet. - - + + Bitrate Bitráta - + Apple Lossless Apple veszteségmentes - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) veszteségmentes digitális zenetömörítő audio codec. <br>Csak a FLAC-ot nem támogató Apple zenelejátszók és lejátszók számára javasolt + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) veszteségmentes digitális zenetömörítő audio codec.<br>Csak a FLAC-ot nem támogató Apple zenelejátszók és lejátszók számára javasolt - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - <a href=http://hu.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) egy veszteségmentes, nyílt és jogdíjmentes digitális zenetömörítő codec. <br>Ha a zenédet hangminőség-romlás nélkül akarod tárolni, FLAC kitűnő választás. + <a href=http://hu.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) egy veszteségmentes, nyílt és jogdíjmentes digitális zenetömörítő codec.<br>Ha a zenédet hangminőség-romlás nélkül akarod tárolni, FLAC kitűnő választás. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - A FLAC <a href=http://flac.sourceforge.net/documentation_tools_flac.html>tömörítési szintjét</a> 0 és 8 közötti egész érték jelzi a <b>FLAC</b> általi a kódolás során a fájl mérete és a tömörítés sebessége közötti kompromisszumot. <br/>A tömörítés szintjét <b>0</b>-ra állítva a tömörítési idő rövid lesz, de viszonylag nagy fájlt eredményez. <br/>Más részről ha a tömörítés szintje <b>8<b>, a tömörítés nagyon lassú lesz, de a legkisebb mérete adja. <br/> Mellesleg, mivel definíciója szerint a FLAC veszteségmentes kódoló, a kimeneti hangfájl minősége a tömörítés értékétől függetlenül azonos lesz.</br>Minden <b>5<b> fölötti érték miközben drámaian növeli a tömörítési időt, a fájlméret csak kicsit lesz kisebb és nem ajánlott. + A FLAC <a href=http://flac.sourceforge.net/documentation_tools_flac.html>tömörítési szintjét</a> 0 és 8 közötti egész érték jelzi a <b>FLAC</b> általi a kódolás során a fájl mérete és a tömörítés sebessége közötti kompromisszumot.<br/>A tömörítés szintjét <b>0</b>-ra állítva a tömörítési idő rövid lesz, de viszonylag nagy fájlt eredményez.<br/>Más részről ha a tömörítés szintje <b>8<b>, a tömörítés nagyon lassú lesz, de a legkisebb mérete adja.<br/> Mellesleg, mivel definíciója szerint a FLAC veszteségmentes kódoló, a kimeneti hangfájl minősége a tömörítés értékétől függetlenül azonos lesz.</br>Minden <b>5<b> fölötti érték miközben drámaian növeli a tömörítési időt, a fájlméret csak kicsit lesz kisebb és nem ajánlott. - + Compression level Tömörítési szint - + Faster compression Gyorsabb tömörítés - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. - <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) Microsoft által kifejlesztett, szabadalmaztatott veszteséges hangtömörítési eljárás. <br>Csak azon hordozható zenejátszók esetén ajánlott, amelyek nem támogatják az Ogg Vorbis-t. + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) Microsoft által kifejlesztett, szabadalmaztatott veszteséges hangtömörítési eljárás.<br>Csak azon hordozható zenejátszók esetén ajánlott, amelyek nem támogatják az Ogg Vorbis-t. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. - A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br> A szabadalmi korlátozások és a jogvédett kódoló visszafejtésének nehézségei következtében a Cantata által használt <b>WMA</b> kódoló <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>állandó bitrátát (CBR)</a> alkalmaz. <br>Ennek következtében a csúszkán a szám kódolásának jelzett bitrátája elég pontos becslés. <br><b>136kb/s<!b> jó választás zenék hordozható lejátszón történő hallgatására. <br>Minden <b>112kb/s</b> alatt nem kielégítő zenét eredményez és bármi <b>182kb/s</b> fölött valószínűleg túllövés. + A bitráta az adatminőség mérésére szolgál a szám egy másodpercére vonatkoztatva.<br>A szabadalmi korlátozások és a jogvédett kódoló visszafejtésének nehézségei következtében a Cantata által használt <b>WMA</b> kódoló <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>állandó bitrátát (CBR)</a> alkalmaz.<br>Ennek következtében a csúszkán a szám kódolásának jelzett bitrátája elég pontos becslés.<br><b>136kb/s<!b> jó választás zenék hordozható lejátszón történő hallgatására.<br>Minden <b>112kb/s</b> alatt nem kielégítő zenét eredményez és bármi <b>182kb/s</b> fölött valószínűleg túllövés. diff --git a/translations/cantata_it.ts b/translations/cantata_it.ts index beb8a671c9..09593fed4e 100644 --- a/translations/cantata_it.ts +++ b/translations/cantata_it.ts @@ -2033,7 +2033,7 @@ Non sarà possibile tornare indietro. <p>Cantata is a feature-rich and user friendly client for Music Player Daemon (MPD). MPD is a flexible, powerful, server-side application for playing music. MPD may be started either system-wide, or on a per-user basis.<br/><br/>Please select how you would like to have Cantata initially connect to (or startup) MPD:</p> - <p>Cantata è un client per Music Player Daemon (MPD) ricco di funzioni e semplice da usare. MPD è un'aplicazione server potente e flessibile per la riproduzione di musica. MPD può venire eseguito da sistema oppure per singolo utente. <br/><br/>Prego selezionare il modo in cui Cantata si collegherà inizialmente (o avvierà) MPD:</p> + <p>Cantata è un client per Music Player Daemon (MPD) ricco di funzioni e semplice da usare. MPD è un'aplicazione server potente e flessibile per la riproduzione di musica. MPD può venire eseguito da sistema oppure per singolo utente.<br/><br/>Prego selezionare il modo in cui Cantata si collegherà inizialmente (o avvierà) MPD:</p> @@ -2812,7 +2812,7 @@ Prego sceglierne un'altra. <p>Enter a string to search artist, album, title, etc. To filter based on year, add <i>#year-range</i> to search string - e.g.</p><ul><li><b><i>#2000</i></b> return tracks from 2000</li><li><b><i>#1980-1989</i></b> return tracks from the 80's</li><li><b><i>Blah #2000</i></b> to search for string <i>Blah</i> and only return tracks from 2000</li></ul></p> - Inserisci una stringa per cercare artista, album, titolo, ecc. Per filtrare in base all'anno, aggiungi <i>#intervallo-anni</i> alla stringa di ricerca - es. </p><ul><li><b><i>#2000</i></b> restituisce le tracce del 2000</li><li><b><i>#1980-1989</i></b> restituisce le tracce degli anni '80;s</li><li><b><i>Blah #2000</i></b> per cercare la stringa Blah <i>Blah</i> e restituire solo le tracce del 2000</li></ul></p> + <p>Inserisci una stringa per cercare artista, album, titolo, ecc. Per filtrare in base all'anno, aggiungi <i>#intervallo-anni</i> alla stringa di ricerca - es.</p><ul><li><b><i>#2000</i></b> restituisce le tracce del 2000</li><li><b><i>#1980-1989</i></b> restituisce le tracce degli anni '80;s</li><li><b><i>Blah #2000</i></b> per cercare la stringa Blah <i>Blah</i> e restituire solo le tracce del 2000</li></ul></p> @@ -3388,7 +3388,7 @@ Se questa ricerca dovesse trovare nuovi testi, sarebbero ancora associarti al ti <p>Enter a string to search artist, album, title, etc. To filter based on year, add <i>#year-range</i> to search string - e.g.</p><ul><li><b><i>#2000</i></b> return tracks from 2000</li><li><b><i>#1980-1989</i></b> return tracks from the 80's</li><li><b><i>Blah #2000</i></b> to search for string <i>Blah</i> and only return tracks from 2000</li></ul></p> - Inserisci una stringa per cercare artista, album, titolo, ecc. Per filtrare in base all'anno, aggiungi <i>#intervallo-anni</i> alla stringa di ricerca - es. </p><ul><li><b><i>#2000</i></b> restituisce le tracce del 2000</li><li><b><i>#1980-1989</i></b> restituisce le tracce degli anni '80;s</li><li><b><i>Blah #2000</i></b> per cercare la stringa Blah <i>Blah</i> e restituire solo le tracce del 2000</li></ul></p> + <p>Inserisci una stringa per cercare artista, album, titolo, ecc. Per filtrare in base all'anno, aggiungi <i>#intervallo-anni</i> alla stringa di ricerca - es.</p><ul><li><b><i>#2000</i></b> restituisce le tracce del 2000</li><li><b><i>#1980-1989</i></b> restituisce le tracce degli anni '80;s</li><li><b><i>Blah #2000</i></b> per cercare la stringa Blah <i>Blah</i> e restituire solo le tracce del 2000</li></ul></p> @@ -5370,133 +5370,133 @@ Sovrascrivere? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>AAC</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>Per questo motivo la misura del bitrate su questo cursore è solo una stima del <a href=http://www.ffmpeg.org/faq.html#SEC21>bitrate medio</a> della traccia codificata.<br><b>150kb/s</b> è una buona scelta per l'ascolto di musica su un lettore portatile.<br/>Valori sotto i <b>120kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>200kb/s</b> sarebbe probabilmente esagerato. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>AAC</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>Per questo motivo la misura del bitrate su questo cursore è solo una stima del <a href=http://www.ffmpeg.org/faq.html#SEC21>bitrate medio</a> della traccia codificata.<br><b>150kb/s</b> è una buona scelta per l'ascolto di musica su un lettore portatile.<br/>Valori sotto i <b>100kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>200kb/s</b> sarebbe probabilmente esagerato. - + Expected average bitrate for variable bitrate encoding Bitrate medio previsto per la codifica a bitrate bariabile - - - - - + + + + + Smaller file File più piccolo - - - - + + + + Better sound quality Miglior qualità audio - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Livello 3</a> (MP3) è un tipo di codec lossy per l'audio digitale brevettato.<br>Nonostante i suoi limiti, è un formato comune per la memorizzazione audio ed è ampiamente supportato nei lettori musicali portatili. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>MP3</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/MP3#VBR>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>Per questo motivo la misura del bitrate su questo cursore è solo una stima del bitrate medio della traccia codificata.<br><b>160kb/s</b> è una buona scelta per l'ascolto di musica su un lettore portatile.<br/>Valori sotto i <b>120kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>205kb/s</b> sarebbe probabilmente esagerato. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>MP3</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/MP3#VBR>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>Per questo motivo la misura del bitrate su questo cursore è solo una stima del bitrate medio della traccia codificata.<br><b>160kb/s</b> è una buona scelta per l'ascolto di musica su un lettore portatile.<br/>Valori sotto i <b>120kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>220kb/s</b> sarebbe probabilmente esagerato. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> è un codec per la compressione audio lossy aperto e libero da royalty.<br>Produce file di dimensioni inferiori ad MP3 con qualità equivalente o maggiore. Ogg Vorbis è una scelta eccellente, specialmente per i lettori musicali portatili che lo supportano. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>Vorbis</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>L'encoder Vorbis utilizza un valore di qualità compreso tra -1 and 10 per definire il livello di qualità previsto. La misura del bitrate su questo cursore è solo una stima grezza (fornita da Vorbis) del bitrate medio della traccia codificata in base al valore di qualità. In realtà, con le nuove e più efficienti versioni di Vorbis il bitrate reale è anche più basso.<br><b>5</b> è una buona scelta per ascoltare musica su un lettore portatile.<br/>Valori sotto il <b>3</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra ad <b>8</b> sarebbe probabilmente esagerato. - + Quality rating Valore di qualità - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> è un codec per la compressione audio lossy aperto e libero da brevetti. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>Opus</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/Variable_bitrate>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>Per questo motivo la misura del bitrate su questo cursore è solo una stima del bitrate medio della traccia codificata.<br><b>128kb/s</b> è una buona scelta per l'ascolto di musica su un lettore portatile.<br/>Valori sotto i <b>100kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>256kb/s</b> sarebbe probabilmente esagerato. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>L'encoder <b>Opus</b> usato da Cantata supporta l'impostazione <a href=http://en.wikipedia.org/wiki/Variable_bitrate>bitrate variabile (VBR)</a>, ciò significa che il vaolre del bitrate fluttua all'interno della traccia in base alla complessità del contenuto audio. Gli intervalli con dati più complessi vengono codificati ad un bitrate maggiore di quelli meno complessi; questo approccio mira ad una qualità globale maggiore ed una dimensione inferiore rispetto a ciò che si ottiene con un bitrate costante.<br>Per questo motivo la misura del bitrate su questo cursore è solo una stima del bitrate medio della traccia codificata.<br><b>128kb/s</b> è una buona scelta per l'ascolto di musica su un lettore portatile.<br/>Valori sotto i <b>96kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>256kb/s</b> sarebbe probabilmente esagerato. - - + + Bitrate Bitrate - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) è un codec lossless per la compressione di audio digitale.<br>Raccomandato solo per i lettori musicali Apple e per i lettori che non supportano il formato FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) è un codec lossless per la compressione di audio digitale aperto e libero da royalty.<br>Se vuoi salvare la tua musica senza comprometterne la qualità, FLAC è una scelta eccellente. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - Il <a href=http://flac.sourceforge.net/documentation_tools_flac.html>livello di compressione</a> è un valore intero compreso tra 0 e 8 che rappresenta il compromesso tra dimensione del file e velocità di compressione con<b>FLAC</b>.<br/> Impostando il livello di compressione a <b>0</b> si ottiene il tempo di compressione più breve, ma anche un file comparabilmente più grande.<br/>D'altra parte, un livello di compressione di <b>8</b> rende al compressione abbastanza lenta, ma produce file più piccoli.<br/>Notare che, essendo FLAC per definizione un codec lossless, la qualità audio risultante è esattamente la stessa indipendentemente dal livello di compressione.<br/>Inoltre, livelli sopra al <b>5</b> aumentano drammaticamente i tempi di compressione, ma creano dei file solo leggermente più piccoli, e non sono consigliati. + Il <a href=http://flac.sourceforge.net/documentation_tools_flac.html>livello di compressione</a> è un valore intero compreso tra 0 e 8 che rappresenta il compromesso tra dimensione del file e velocità di compressione con<b>FLAC</b>.<br/>Impostando il livello di compressione a <b>0</b> si ottiene il tempo di compressione più breve, ma anche un file comparabilmente più grande.<br/>D'altra parte, un livello di compressione di <b>8</b> rende al compressione abbastanza lenta, ma produce file più piccoli.<br/>Notare che, essendo FLAC per definizione un codec lossless, la qualità audio risultante è esattamente la stessa indipendentemente dal livello di compressione.<br/>Inoltre, livelli sopra al <b>5</b> aumentano drammaticamente i tempi di compressione, ma creano dei file solo leggermente più piccoli, e non sono consigliati. - + Compression level Livello di compressione - + Faster compression Compressione più veloce - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) è un codec proprietario di Microsoft per la compressione audio lossy.<br>Raccomandato solo per i lettori musicali portatili che non supportano Ogg Vorbis.. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. Il bitrate è la misura della quantità di dati utilizzati per rappresentare un secondo di suono in una traccia audio.<br>A causa delle limitazione del formato proprietario <b>WMA</b> ed alla difficoltà di fare reverse engineering su un encoder proprietario, il codec WMA usato da Cantata imposta il <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>bitrate costante (CBR)</a>.<br>Per questa ragione, la misura del bitrate sul cursore è una stima abbastanza accurata del bitrate della traccia codificata.<br><b>136kb/s</b> è una buona scelta per ascoltare musica su un lettore portatile.<br/>Valori sotto <b>112kb/s</b> potrebbero essere insoddisfacenti per la musica e qualsiasi valore sopra i <b>182kb/s</b> sarebbe probabilmente esagerato. diff --git a/translations/cantata_ja.ts b/translations/cantata_ja.ts index 5555e64a7a..0b82979b64 100644 --- a/translations/cantata_ja.ts +++ b/translations/cantata_ja.ts @@ -4537,7 +4537,7 @@ This cannot be undone. <i><b>ERROR:</b> You can only match on filename / path if 'Exact match' is <b>not</b> checked</i> - <i><b>エラー:</b> 「完全一致」が<b>チェックされていない</b> 場合のみ、ファイル名/パスで一致することができます </i> + <i><b>エラー:</b> 「完全一致」が<b>チェックされていない</b> 場合のみ、ファイル名/パスで一致することができます</i> @@ -4674,7 +4674,7 @@ Use the settings below to restrict the range of songs added. <p>Cantata will query your library using all of the rules listed. The list of <i>Include</i> rules will be used to build a set of songs that can be used. The list of <i>Exclude</i> rules will be used to build a set of songs that cannot be used. If there are no <i>Include</i> rules, Cantata will assume that all songs (bar those from <i>Exclude</i>) can be used.</p><p>e.g. to have Cantata look for 'Rock songs by Wibble OR songs by Various Artists', you would need the following: <ul><li>Include AlbumArtist=Wibble Genre=Rock</li><li>Include AlbumArtist=Various Artists</li></ul> To have Cantata look for 'Songs by Wibble but not from album Abc', you would need the following: <ul><li>Include AlbumArtist=Wibble</li><li>Exclude AlbumArtist=Wibble Album=Abc</li></ul>After the set of usable songs has been created, Cantata will randomly select songs to keep the play queue filled with specified number of entries (10 by default). If a range of ratings has been specified, then only songs with a rating within this range will be used. Likewise, if a duration has been set.</p> - <p> Cantataは、リストされているすべてのルールを使用してライブラリを照会します。 <i> include </i>ルールのリストを使用して、使用可能な曲のセットを作成します。<i>exclude</i>ルールのリストは、使用できない曲のセットを作成するために使用されます。<i> include </i>ルールがない場合、Cantataはすべての曲(<i> exclude</i>の曲を除く)を使用できると想定します。</p><p> 一例: Cantataに「Wibbleのロック曲またはさまざまなアーティストの曲」を検索させるには、次のものが必要です。<ul> <li> Include アルバムアーティスト = Wibbleジャンル= Rock </li> <li> Include AlbumArtist = Various Artists </li> </ul>Cantataに「アルバムAbcからではなくWibbleの曲」を検索させるには、以下が必要です。<ul> <li> Include アルバムアーティスト = Wibble </li> <li> Exclude アルバムアーティスト = Wibble アルバム = Abc </li> </ul>使用可能な曲のセットが作成された後、Cantataは曲をランダムに選択して、指定された数のエントリ(デフォルトでは10)で再生キューをいっぱいにします。 レーティングの範囲が指定されている場合、この範囲内のレーティングを持つ曲のみが使用されます(有効期間が設定されている場合も同様)。</p> + <p>Cantataは、リストされているすべてのルールを使用してライブラリを照会します。 <i> include </i>ルールのリストを使用して、使用可能な曲のセットを作成します。<i>exclude</i>ルールのリストは、使用できない曲のセットを作成するために使用されます。<i> include </i>ルールがない場合、Cantataはすべての曲(<i> exclude</i>の曲を除く)を使用できると想定します。</p><p>一例: Cantataに「Wibbleのロック曲またはさまざまなアーティストの曲」を検索させるには、次のものが必要です。<ul> <li> Include アルバムアーティスト = Wibbleジャンル= Rock </li> <li> Include AlbumArtist = Various Artists </li> </ul>Cantataに「アルバムAbcからではなくWibbleの曲」を検索させるには、以下が必要です。<ul> <li> Include アルバムアーティスト = Wibble </li> <li> Exclude アルバムアーティスト = Wibble アルバム = Abc </li> </ul>使用可能な曲のセットが作成された後、Cantataは曲をランダムに選択して、指定された数のエントリ(デフォルトでは10)で再生キューをいっぱいにします。 レーティングの範囲が指定されている場合、この範囲内のレーティングを持つ曲のみが使用されます(有効期間が設定されている場合も同様)。</p> @@ -4684,7 +4684,7 @@ Use the settings below to restrict the range of songs added. <p>Cantata will query your library using all of the rules listed. The list of <i>Include</i> rules will be used to build a set of songs that can be used. The list of <i>Exclude</i> rules will be used to build a set of songs that cannot be used. If there are no <i>Include</i> rules, Cantata will assume that all songs (bar those from <i>Exclude</i>) can be used.</p><p>e.g. to have Cantata look for 'Rock songs by Wibble OR songs by Various Artists', you would need the following: <ul><li>Include AlbumArtist=Wibble Genre=Rock</li><li>Include AlbumArtist=Various Artists</li></ul> To have Cantata look for 'Songs by Wibble but not from album Abc', you would need the following: <ul><li>Include AlbumArtist=Wibble</li><li>Exclude AlbumArtist=Wibble Album=Abc</li></ul>After the set of usable songs has been created, Cantata will add the desired number of songs to the play queue. If a range of ratings has been specified, then only songs with a rating within this range will be used. Likewise, if a duration has been set.</p> - <p> Cantataは、リストされているすべてのルールを使用してライブラリを照会します。 <i> Include </i>ルールのリストを使用して、使用可能な曲のセットを作成します。 <i>exlude</i>ルールのリストは、使用できない曲のセットを作成するために使用されます。 <i> Include </i>ルールがない場合、Cantataはすべての曲(<i> Exclude </i>の曲を除く)を使用できると想定します。</p> <p> 一例: Cantataに「Wibbleのロック曲またはさまざまなアーティストの曲」を検索させるには、次のものが必要です。<ul> <li> Include アルバムアーティスト = Wibbleジャンル= Rock </li> <li> Include アルバムアーティスト = Various Artists </li> </ul> Cantataに「アルバムAbcからではなくWibbleの歌」を検索させるには、次のものが必要です。<ul> <li> Include アルバムアーティスト = Wibble </li> <li> Exclude アルバムアーティスト = Wibble アルバム = Abc </li> </ul>使用可能な曲のセットが作成された後、Cantataは再生キューに目的の数の曲を追加します。レーティングの範囲が指定されている場合、この範囲内のレーティングを持つ曲のみが使用されます(有効期間が設定されている場合も同様)。</ p> + <p>Cantataは、リストされているすべてのルールを使用してライブラリを照会します。 <i> Include </i>ルールのリストを使用して、使用可能な曲のセットを作成します。 <i>exlude</i>ルールのリストは、使用できない曲のセットを作成するために使用されます。 <i> Include </i>ルールがない場合、Cantataはすべての曲(<i> Exclude </i>の曲を除く)を使用できると想定します。</p><p>一例: Cantataに「Wibbleのロック曲またはさまざまなアーティストの曲」を検索させるには、次のものが必要です。<ul> <li> Include アルバムアーティスト = Wibbleジャンル= Rock </li> <li> Include アルバムアーティスト = Various Artists </li> </ul> Cantataに「アルバムAbcからではなくWibbleの歌」を検索させるには、次のものが必要です。<ul> <li> Include アルバムアーティスト = Wibble </li> <li> Exclude アルバムアーティスト = Wibble アルバム = Abc </li> </ul>使用可能な曲のセットが作成された後、Cantataは再生キューに目的の数の曲を追加します。レーティングの範囲が指定されている場合、この範囲内のレーティングを持つ曲のみが使用されます(有効期間が設定されている場合も同様)。</p> @@ -5349,135 +5349,135 @@ Overwrite? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataで使用される<b> AAC </b>エンコーダは、<a href="http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR">可変ビットレート(VBR)</a>の設定をサポートしており、これを使用した場合ビットレート値はオーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化されます; このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>このため、このスライダのビットレートの数値は、エンコードされたトラックの<a href="http://www.ffmpeg.org/faq.html#SEC21">平均ビットレート</a>の見積もりにすぎません。<br>ポータブルプレーヤーで音楽を聴くには、<b>150kb/s</b>が適しています。<br/><b>120kb/s</b>未満は音楽には不満足で、<b>200kb/s</b>以上はおそらく過剰です。 + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataで使用される<b> AAC </b>エンコーダは、<a href="http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR">可変ビットレート(VBR)</a>の設定をサポートしており、これを使用した場合ビットレート値はオーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化されます; このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>このため、このスライダのビットレートの数値は、エンコードされたトラックの<a href="http://www.ffmpeg.org/faq.html#SEC21">平均ビットレート</a>の見積もりにすぎません。<br>ポータブルプレーヤーで音楽を聴くには、<b>150kb/s</b>が適しています。<br/><b>100kb/s</b>未満は音楽には不満足で、<b>200kb/s</b>以上はおそらく過剰です。 - + Expected average bitrate for variable bitrate encoding 可変ビットレート符号化の予想平均ビットレート - - - - - + + + + + Smaller file より小さなファイル - - - - + + + + Better sound quality より良いサウンド品質 - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href="http://en.wikipedia.org/wiki/MP3">MPEG Audio Layer 3</a> (MP3) は、不可逆データ圧縮形式を使用した特許取得済みのデジタルオーディオコーデックです。<br>その欠点にもかかわらず、コンシューマオーディオストレージの一般的なフォーマットであり、携帯音楽プレーヤーで広くサポートされています。 - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataが使用する<b>MP3</b>エンコーダは、<a href="http://en.wikipedia.org/wiki/MP3#VBR">可変ビットレート(VBR)</a>の設定をサポートしており、ビットレート値は、オーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化されます; このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>このため、このスライダのビットレート測定値は、符号化されたトラックの平均ビットレートの推定値にすぎません。<br><b> 160kb/s</b>は、ポータブルプレーヤーで音楽を聴くのに適しています。<b>120kb/s</b>未満は音楽に不満足かもしれませんし、<b>205kb/s</b>以上はおそらく過剰です。 + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataが使用する<b>MP3</b>エンコーダは、<a href="http://en.wikipedia.org/wiki/MP3#VBR">可変ビットレート(VBR)</a>の設定をサポートしており、ビットレート値は、オーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化されます; このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>このため、このスライダのビットレート測定値は、符号化されたトラックの平均ビットレートの推定値にすぎません。<br><b> 160kb/s</b>は、ポータブルプレーヤーで音楽を聴くのに適しています。<b>120kb/s</b>未満は音楽に不満足かもしれませんし、<b>220kb/s</b>以上はおそらく過剰です。 - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href="http://en.wikipedia.org/wiki/Vorbis">Ogg Vorbis</a>は、非可逆オーディオ圧縮のためのオープンでロイヤリティフリーのオーディオコーデックです。<br>同等以上の品質でMP3よりも小さいファイルを作成します。Ogg Vorbisは、特にそれをサポートするポータブルミュージックプレイヤーにとって、万能の優れた選択肢です。 - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataで使用される<b> Vorbis </b>エンコーダは、<a href="http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder">可変ビットレート(VBR)</a>の設定をサポートしており、ビットレート値は、オーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化される。このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>Vorbisエンコーダは、-1〜10の間の品質評価を使用して、特定の期待されるオーディオ品質レベルを定義します。このスライダのビットレート測定値は、品質値が与えられた符号化トラックの平均ビットレートの概算値(Vorbis提供)です。実際、より新しい、より効率的なVorbisバージョンでは、実際のビットレートはさらに低くなります。<br><b>5</b>は、ポータブルプレーヤーで音楽を聴くのに適しています。<br/><b>3</b>以下は音楽には不満足で、<b>8</b>以上ははおそらく過剰です。 - + Quality rating 品質評価 - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href="http://en.wikipedia.org/wiki/Opus_(audio_format)"> Opus </a>は、非可逆データ圧縮形式を使用した特許のないデジタルオーディオコーデックです。 - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataが使用する<b> Opus </b>エンコーダは、<a href="http://en.wikipedia.org/wiki/Variable_bitrate">可変ビットレート(VBR)</a>設定をサポートしており、これは、ビットレート値 オーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化されます。; このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>このため、このスライダのビットレート測定値は、符号化されたトラックの平均ビットレートの推定値にすぎません。<br><b>128kb/s</b>は、ポータブルプレーヤーで音楽を聴くのに適しています。<br/><b>100kb/s</b>未満は音楽に不満があり、<b>256kb/s</b>以上はおそらく過剰です。 + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br>Cantataが使用する<b> Opus </b>エンコーダは、<a href="http://en.wikipedia.org/wiki/Variable_bitrate">可変ビットレート(VBR)</a>設定をサポートしており、これは、ビットレート値 オーディオコンテンツの複雑さに基づいてトラックに沿って変動します。データのより複雑な区間は、複雑でない区間よりも高いビットレートで符号化されます。; このアプローチは、トラック全体で一定のビットレートを使用するよりも、全体的に優れた品質とファイルサイズを実現します。<br>このため、このスライダのビットレート測定値は、符号化されたトラックの平均ビットレートの推定値にすぎません。<br><b>128kb/s</b>は、ポータブルプレーヤーで音楽を聴くのに適しています。<br/><b>96kb/s</b>未満は音楽に不満があり、<b>256kb/s</b>以上はおそらく過剰です。 - - + + Bitrate ビットレート - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href="http://en.wikipedia.org/wiki/Apple_Lossless"> Apple Lossless </a>(ALAC)は、デジタル音楽のロスレス圧縮のためのオーディオコーデックです。<br>Apple Music PlayerおよびFLACをサポートしないプレーヤにおすすめです。 - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>フリーロスレスオーディオコーデック</a>(FLAC)は、デジタル音楽の可逆圧縮のためのオープンでロイヤリティフリーのコーデックです。<br> オーディオ品質を損なうことなく音楽を保存するには、FLACは優れた選択肢です。 + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>フリーロスレスオーディオコーデック</a>(FLAC)は、デジタル音楽の可逆圧縮のためのオープンでロイヤリティフリーのコーデックです。<br>オーディオ品質を損なうことなく音楽を保存するには、FLACは優れた選択肢です。 - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - <a href=http://flac.sourceforge.net/documentation_tools_flac.html>圧縮レベル</a>は 0〜8 の整数値で、<b> FLACでエンコードする際のファイルサイズと圧縮速度のトレードオフを表します。 </b>。<br/>圧縮レベルを<b> 0 </b>に設定すると、圧縮時間は最短になりますが、比較的大きなファイルが生成されます。<br/>一方、<b>の圧縮レベル 8 </b>は非常に圧縮時間を要しますが、最小のファイルを生成します。<br/> FLACは定義上ロスレスコーデックであるため、出力のオーディオ品質は圧縮レベルに関係なくまったく同じであることに注意してください。<br/> また、<b> 5 </b>を超えるレベルでは圧縮時間が大幅に増加しますが、作成されるファイルはあまり縮小しないため、お勧めしません。 + <a href=http://flac.sourceforge.net/documentation_tools_flac.html>圧縮レベル</a>は 0〜8 の整数値で、<b> FLACでエンコードする際のファイルサイズと圧縮速度のトレードオフを表します。 </b><br/>圧縮レベルを<b> 0 </b>に設定すると、圧縮時間は最短になりますが、比較的大きなファイルが生成されます。<br/>一方、<b>の圧縮レベル 8 </b>は非常に圧縮時間を要しますが、最小のファイルを生成します。<br/>FLACは定義上ロスレスコーデックであるため、出力のオーディオ品質は圧縮レベルに関係なくまったく同じであることに注意してください。<br/>また、<b> 5 </b>を超えるレベルでは圧縮時間が大幅に増加しますが、作成されるファイルはあまり縮小しないため、お勧めしません。 - + Compression level 圧縮レベル - + Faster compression より早い圧縮 - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href="http://en.wikipedia.org/wiki/Windows_Media_Audio"> Windows Media Audio </a>(WMA)は、損失の多いオーディオ圧縮のためにMicrosoftによって開発された独自のコーデックです。<br>Ogg Vorbisをサポートしていない携帯音楽プレーヤーにのみおすすめです。 - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. - ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br><b>WMA</b>形式独自のの制限と独自エンコーダのリバースエンジニアリングの難しさのため、Cantataが使用するWMAエンコーダは<a href="http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio">固定ビットレート (CBR)</a> 設定のみ使用します。<br>この理由から、このスライダーのビットレートは、コード化されたトラックのビットレートのかなり正確な見積もりです。<b>136kb/s</b>は、ポータブルプレーヤーでの音楽聴取に適しています。 <br/><b>112kb/s</b>未満は音楽には不満足で、<b>182kb/s</b>以上はおそらく過剰です。 + ビットレートは、そのオーディオトラックが1秒辺りに使用するデータの量の尺度を示しています。<br><b>WMA</b>形式独自のの制限と独自エンコーダのリバースエンジニアリングの難しさのため、Cantataが使用するWMAエンコーダは<a href="http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio">固定ビットレート (CBR)</a> 設定のみ使用します。<br>この理由から、このスライダーのビットレートは、コード化されたトラックのビットレートのかなり正確な見積もりです。<b>136kb/s</b>は、ポータブルプレーヤーでの音楽聴取に適しています。<br/><b>112kb/s</b>未満は音楽には不満足で、<b>182kb/s</b>以上はおそらく過剰です。 @@ -7107,7 +7107,7 @@ This cannot be undone. <p>Select this option if your MPD server detects modifications (e.g. newly added files) automatically. If so there is no need for Cantata to send update commands for certain actions.</p> - <p> MPDサーバーが変更(たとえば、新しく追加されたファイル)を自動的に検出する場合、このオプションを選択します。 その場合、Cantataが特定のアクションの更新コマンドを送信する必要はありません。</p> + <p>MPDサーバーが変更(たとえば、新しく追加されたファイル)を自動的に検出する場合、このオプションを選択します。 その場合、Cantataが特定のアクションの更新コマンドを送信する必要はありません。</p> diff --git a/translations/cantata_ko.ts b/translations/cantata_ko.ts index 11f0894c7a..3d92430c5f 100644 --- a/translations/cantata_ko.ts +++ b/translations/cantata_ko.ts @@ -11596,133 +11596,133 @@ Overwrite? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br> 칸타타에 쓰인 <b>AAC</b> 인코더는 <a href=http://ko.wikipedia.org/wiki/%EA%B0%80%EB%B3%80_%EB%B9%84%ED%8A%B8%EB%A0%88%EC%9D%B4%ED%8A%B8>가변 비트레이트(VBR)</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다. <br>이런 이유로 이 슬라이더에서 측정된 비트레이트는 인코딩된 트랙의 <a href=http://www.ffmpeg.org/faq.html#SEC21>평균 비트레이트</a> 예측값일 뿐입니다. <br><b>150kb/s</b>는 휴대용 연주기의 음악감상에 좋은 선택입니다. <br/><b>120kb/s 이하</b>는 음악이 만족스럽지 않을 수 있습니다. <b>200kb/s</b>는 너무 높을 수 있습니다. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>칸타타에 쓰인 <b>AAC</b> 인코더는 <a href=http://ko.wikipedia.org/wiki/%EA%B0%80%EB%B3%80_%EB%B9%84%ED%8A%B8%EB%A0%88%EC%9D%B4%ED%8A%B8>가변 비트레이트(VBR)</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다.<br>이런 이유로 이 슬라이더에서 측정된 비트레이트는 인코딩된 트랙의 <a href=http://www.ffmpeg.org/faq.html#SEC21>평균 비트레이트</a> 예측값일 뿐입니다.<br><b>150kb/s</b>는 휴대용 연주기의 음악감상에 좋은 선택입니다.<br/><b>100kb/s 이하</b>는 음악이 만족스럽지 않을 수 있습니다. <b>200kb/s</b>는 너무 높을 수 있습니다. - + Expected average bitrate for variable bitrate encoding 가변 비트레이트 인코딩에서의 평균 기댓값 - - - - - + + + + + Smaller file 더 작은 파일 - - - - + + + + Better sound quality 더 좋은 음악 품질 - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://ko.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) 는 손실 데이터 압축을 이용하여 특허 받은 디지털 오디오 코덱입니다.<br>이러한 단점에도 불구하고, 소비자 오디오의 범용 저장 포맷으로 휴대용 음악 연주기에 널리 쓰입니다. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>칸타타에 쓰인 <b>MP3</b> 인코더는 <a href=http://en.wikipedia.org/wiki/MP3#VBR>가변 비트레이트 (VBR)</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다. <br>이런 이유로 이 슬라이더에서 측정된 비트레이트는 인코딩된 트랙의 평균 비트레이트일 뿐입니다.<br><b>160kb/s</b>은 휴대용 재생기에서 음악 듣기에 좋은 선택입니다.<br/><b>120kb/s 이하</b>는 음악이 불만족스러울 수 있습니다.<b>205kb/s 이상</b>은 너무 높을 수 있습니다. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>칸타타에 쓰인 <b>MP3</b> 인코더는 <a href=http://en.wikipedia.org/wiki/MP3#VBR>가변 비트레이트 (VBR)</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다.<br>이런 이유로 이 슬라이더에서 측정된 비트레이트는 인코딩된 트랙의 평균 비트레이트일 뿐입니다.<br><b>160kb/s</b>은 휴대용 재생기에서 음악 듣기에 좋은 선택입니다.<br/><b>120kb/s 이하</b>는 음악이 불만족스러울 수 있습니다.<b>220kb/s 이상</b>은 너무 높을 수 있습니다. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://ko.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a>는 손실 데이터 압축을 이용하여 특허 받은 디지털 오디오 코덱입니다.<br>동일하거나 더 높은 품질에서 MP3보다 더 작은 파일을 만듭니다. Ogg Vorbis는 전반적으로, 특히 지원하는 휴대용 음악 연주기에는 아주 좋은 선택입니다. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>Cantata에 쓰인 <b>Vorbis</b> 인코더는 <a href=http://ko.wikipedia.org/wiki/Vorbis>가변 비트레이트 (VBR)</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다. <br>Vorbis 인코더는 -1부터 10까지의 품질 범위를 가집니다.이 슬라이더에 쓰인 비트레이트는 Vorbis에서 제공된 개략적인 추측에 불과합니다.실은 새롭고 더 효율적인 Vorbis 버전의 실제 비트레이트는 더 낮습니다.<br><b>5</b>는 휴대용 연주기에서의 음악감상에 좋은 선택입니다.<br/><b>3이하</b>는 음악이 불만족스러울 수 있습니다.<b>8이상</b>은 너무 높을 수 있습니다. + 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>Cantata에 쓰인 <b>Vorbis</b> 인코더는 <a href=http://ko.wikipedia.org/wiki/Vorbis>가변 비트레이트 (VBR)</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다.<br>Vorbis 인코더는 -1부터 10까지의 품질 범위를 가집니다.이 슬라이더에 쓰인 비트레이트는 Vorbis에서 제공된 개략적인 추측에 불과합니다.실은 새롭고 더 효율적인 Vorbis 버전의 실제 비트레이트는 더 낮습니다.<br><b>5</b>는 휴대용 연주기에서의 음악감상에 좋은 선택입니다.<br/><b>3이하</b>는 음악이 불만족스러울 수 있습니다.<b>8이상</b>은 너무 높을 수 있습니다. - + Quality rating 품질 순위 - + Opus 오푸스(Opus) - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://ko.wikipedia.org/wiki/%EC%98%A4%ED%91%B8%EC%8A%A4_%28%EC%98%A4%EB%94%94%EC%98%A4_%ED%8F%AC%EB%A7%B7%29>Opus</a>는 손실 데이터 압축을 이용하는 사용료가 없는 오디오 코덱입니다. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>칸타타에 쓰인 <b>오푸스</b> 인코더는 <a href=http:http://ko.wikipedia.org/wiki/%EA%B0%80%EB%B3%80_%EB%B9%84%ED%8A%B8%EB%A0%88%EC%9D%B4%ED%8A%B8>가변 비트레이트</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다. <br>이런 이유로 이 슬라이더에서 측정된 비트레이트는 인코딩된 트랙의 평균 비트레이트일 뿐입니다.<br><b>128kb/s</b>은 휴대용 재생기에서 음악 듣기에 좋은 선택입니다.<br/><b>100kb/s 이하</b>는 음악이 불만족스러울 수 있습니다.<b>256kb/s 이상</b>은 너무 높을 수 있습니다. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br>칸타타에 쓰인 <b>오푸스</b> 인코더는 <a href=http:http://ko.wikipedia.org/wiki/%EA%B0%80%EB%B3%80_%EB%B9%84%ED%8A%B8%EB%A0%88%EC%9D%B4%ED%8A%B8>가변 비트레이트</a> 설정을 지원하는데, 이는 오디오 정보의 복잡성에 따라 트랙의 비트레이트가 가변적임을 의미합니다. 복잡한 데이터는 단순한 것보다 높은 비트레이트로 인코딩이 되며, 이 방식은 트랙에서 전반적으로 높은 품질과 작은 파일을 만듭니다.<br>이런 이유로 이 슬라이더에서 측정된 비트레이트는 인코딩된 트랙의 평균 비트레이트일 뿐입니다.<br><b>128kb/s</b>은 휴대용 재생기에서 음악 듣기에 좋은 선택입니다.<br/><b>96kb/s 이하</b>는 음악이 불만족스러울 수 있습니다.<b>256kb/s 이상</b>은 너무 높을 수 있습니다. - - + + Bitrate 비트레이트 - + Apple Lossless 애플 무손실 - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://ko.wikipedia.org/wiki/%EC%95%A0%ED%94%8C_%EB%AC%B4%EC%86%90%EC%8B%A4>애플 무손실</a> (ALAC)은 디지털 음악의 무손실 압축을 위한 오디오 코덱입니다.<br>애플 제품이나 FLAC을 지원하지 않는 연주기에서만 추천합니다. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://ko.wikipedia.org/wiki/FLAC>Free Lossless Audio Codec</a> (FLAC)은 무손실 디지털 음악을 위해서 공개된, 사용료가 없는 코덱입니다.<br>오디오 품질을 손상시키지 않고 음악을 저장하려면, FLAC은 훌륭한 선택입니다. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - <a href=http://flac.sourceforge.net/documentation_tools_flac.html> 압축률</a>은 <b>FLAC</b>으로의 인코딩과정에서, 압축 속도와 파일 크기의 균형을 나타내는 0에서 8까지의 정수값입니다.<br/> 압축률을 <b>0</b>으로 하면 압축 시간은 가장 짧지만 상대적으로 큰 파일 크기가 커지며<br/>반면에, 압축률을 <b>8</b>로 하면, 압축은 오래 걸리지만 가장 작은 파일을 만듭니다.<br/>FLAC은 무손실 코덱이므로 압축률에 상관없이 음악 출력품질은 동일합니다.<br/>또한, <b>5</b>이상의 값은 압축 시간을 늘이지만 파일 크기는 약간만 작아지므로 추천하지 않습니다. + <a href=http://flac.sourceforge.net/documentation_tools_flac.html> 압축률</a>은 <b>FLAC</b>으로의 인코딩과정에서, 압축 속도와 파일 크기의 균형을 나타내는 0에서 8까지의 정수값입니다.<br/>압축률을 <b>0</b>으로 하면 압축 시간은 가장 짧지만 상대적으로 큰 파일 크기가 커지며<br/>반면에, 압축률을 <b>8</b>로 하면, 압축은 오래 걸리지만 가장 작은 파일을 만듭니다.<br/>FLAC은 무손실 코덱이므로 압축률에 상관없이 음악 출력품질은 동일합니다.<br/>또한, <b>5</b>이상의 값은 압축 시간을 늘이지만 파일 크기는 약간만 작아지므로 추천하지 않습니다. - + Compression level 압축률 - + Faster compression 더 빠른 압축 - + Windows Media Audio 윈도 미디어 오디오 (WMA) - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://ko.wikipedia.org/wiki/%EC%9C%88%EB%8F%84_%EB%AF%B8%EB%94%94%EC%96%B4_%EC%98%A4%EB%94%94%EC%98%A4>Windows Media Audio</a> (WMA)는 손실 압축을 위해 마이크로소프트에 의해 개발된 독점 코덱입니다.<br>Ogg Vorbis를 지원하지 않는 휴대용 음악 연주기에만 추천됩니다. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. 비트레이트는 오디오 트랙의 초당 데이터를 나타내는 양을 수치화한 것입니다.<br><b>WMA</b> 독점 포맷의 한계로 역설계가 어려워, 칸타타에 쓰인 WMA 인코더는 <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>고정 비트레이트 (CBR)</a> 설정입니다.<br>따라서 이 슬라이더의 비트레이트 측정값은 인코딩된 트랙의 상당히 정확한 예측치입니다.<br><b>136kb/s</b>는 휴대용 음악 연주기에서 좋은 선택입니다.<br/><b>112kb/s 이하</b>는 음악이 불만족스러울 수 있습니다.<b>182kb/s 이상</b>은 너무 높을 수 있습니다. diff --git a/translations/cantata_nl.ts b/translations/cantata_nl.ts index fead5f03f2..1b07939883 100644 --- a/translations/cantata_nl.ts +++ b/translations/cantata_nl.ts @@ -5367,133 +5367,133 @@ Wil je deze overschrijven? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - + Expected average bitrate for variable bitrate encoding Verwachte gemiddelde bitsnelheid voor variabele bitsnelheid-encodering - - - - - + + + + + Smaller file Kleiner bestand - - - - + + + + Better sound quality Betere geluidskwaliteit - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - + Quality rating Kwaliteitsbeoordeling - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - - + + Bitrate Bitsnelheid - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - + Compression level Compressieniveau - + Faster compression Snellere compressie - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. diff --git a/translations/cantata_pl.ts b/translations/cantata_pl.ts index 58892dfba2..cf9757088a 100644 --- a/translations/cantata_pl.ts +++ b/translations/cantata_pl.ts @@ -11668,133 +11668,133 @@ Nadpisać? - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>AAC</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a> - wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Z tego powodu, wyświetlana wartość bitrate jest tylko oszacowaniem <a href=http://www.ffmpeg.org/faq.html#SEC21>średniego bitrate'u</a> wynikowego utworu.<br><b>150kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>120kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>200kb/s</b> jest prawdopodobnie przesadzone. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>AAC</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a> - wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Z tego powodu, wyświetlana wartość bitrate jest tylko oszacowaniem <a href=http://www.ffmpeg.org/faq.html#SEC21>średniego bitrate'u</a> wynikowego utworu.<br><b>150kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>100kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>200kb/s</b> jest prawdopodobnie przesadzone. - + Expected average bitrate for variable bitrate encoding Szacowany średni bitrate przy kodowaniu ze zmiennym bitrate - - - - - + + + + + Smaller file Mniejszy plik - - - - + + + + Better sound quality Lepsza jakość dźwięku - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://pl.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) jest opatentowanym cyfrowym kodekiem audio używającym stratnej kompresji danych.<br>Pomimo swoich słabych stron, jest bardzo popularnym formatem do przechowywania muzyki oraz jest obsługiwany przez zdecydowaną większość przenośnych odtwarzaczy muzycznych. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>MP3</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a> wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Z tego powodu, wyświetlana wartość bitrate jest tylko oszacowaniem średniego bitrate'u wynikowego utworu.<br><b>160kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>120kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>205kb/s</b> jest prawdopodobnie przesadzone. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>MP3</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a> wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Z tego powodu, wyświetlana wartość bitrate jest tylko oszacowaniem średniego bitrate'u wynikowego utworu.<br><b>160kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>120kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>220kb/s</b> jest prawdopodobnie przesadzone. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> jest stratnym kodekiem audio wydanym na licencji open-source nie wymagającym licencji patentowych.<br>Generuje mniejsze pliki niż format MP3 przy porównywalnych lub lepszych jakościach. Ogg Vorbis jest ogólnie doskonałym wyborem, szczególnie dla przenośnych odtwarzaczy obsługujących ten format. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>Vorbis</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a>- wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Enkoder Vorbis używa wskaźnika jakości ze skali o zakresie od -1 do 10 w celu oceny oczekiwanej jakości. Przedstawiona wartość bitrate jest tylko zgrubnym oszacowaniem (dostarczonym przez twórców kodeka Vorbis) średniej wartości bitrate'u wynikowego pliku przy zadanej jakości. W związku z tym, nowsze i bardziej efektywne wersje kodeka Vorbis tworzą pliki o jeszcze mniejszej wartości bitrate.<br><b>5</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>3</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>8</b> jest prawdopodobnie przesadzone. - + Quality rating Wskaźnik jakości - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://pl.wikipedia.org/wiki/Opus_(format)>Opus</a> jest wolnym od patentów kodekiem audio używającym stratnej kompresji danych. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>Opus</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a> wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Z tego powodu, wyświetlana wartość bitrate jest tylko oszacowaniem średniego bitrate'u wynikowego utworu.<br><b>128kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych. <br/>Wartości poniżej <b>100kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>256kb/s</b> jest prawdopodobnie przesadzone. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>Kodek <b>Opus</b> używany przez program Cantata obsługuje <a href=http://pl.wikipedia.org/wiki/VBR>zmienny bitrate (VBR)</a> wartość bitrate waha się w trakcie utworu w zależności od stopnia skomplikowania zawartości pliku. Bardziej skomplikowane fragmenty kodowane są przy użyciu większej ilości danych niż fragmenty mniej skomplikowane; takie podejście daje ogólnie lepszą jakość i mniejsze pliki, niż gdyby użyć stałego bitrate'u w całym utworze.<br>Z tego powodu, wyświetlana wartość bitrate jest tylko oszacowaniem średniego bitrate'u wynikowego utworu.<br><b>128kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>96kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>256kb/s</b> jest prawdopodobnie przesadzone. - - + + Bitrate Bitrate - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) jest kodekiem audio do bezstratnej kompresji muzyki cyfrowej.<br>Polecany jedynie dla odtwarzaczy muzycznych firmy Apple oraz odtwarzaczy nie obsługujących formatu FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) jest bezstratnym kodekiem audio wydanym na licencji open-source nie wymagającym licencji patentowych.<br>Kodek ten jest polecany do przechowywania muzyki bez straty jakości dźwięku. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Poziom kompresji</a> jest liczbą całkowitą z przedziału od 0 do 8 reprezentującą kompromis pomiędzy rozmiarem pliku a prędkością kompresji przy użyciu formatu <b>FLAC</b>.<br/>Ustawienie poziomu kompresji na <b>0</b> daje najkrótsze czasy kompresji jednak generowane pliki są stosunkowo duże.<br/>Z drugiej strony, poziom kompresji równy <b>8</b> powoduje, że kompresja jest dosyć powolna, jednak generowane pliki są najmniejsze.<br/>Należy pamiętać, że format FLAC jest z definicji bezstratny, więc jakość dźwięku wyjściowego jest identyczna z oryginałem niezależnie od ustawionego poziomu kompresji.<br/>Ponadto, poziomy powyżej <b>5</b> dramatycznie podnoszą czas kompresji dając jedynie niewiele mniejsze pliki wyjściowe i są niezalecane. - + Compression level Poziom kompresji - + Faster compression Szybsza kompresja - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://pl.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) jest stworzonym przez firmę Microsoft zamkniętym kodekiem audio służącym do stratnej kompresji dźwięku.<br>Zalecany jedynie dla odtwarzaczy muzycznych nie obsługujących formatu Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. Bitrate jest miarą ilości danych używanych do reprezentacji sekundy ścieżki muzycznej.<br>W związku z ograniczeniami zamkniętego formatu <b>WMA</b> oraz z trudnościami związanymi z analizą działania zamkniętego enkodera, używany przez program Cantata enkoder WMA używa opcji <a https://pl.wikipedia.org/wiki/Stała_przepływność>stały bitrate (CBR)</a>.<br>Z tego powodu wyświetlana wartość bitrate jest dosyć dokładnym oszacowaniem bitrate'u pliku wynikowego.<br><b>136kb/s</b> jest dobrym wyborem dla użytku w odtwarzaczach przenośnych.<br/>Wartości poniżej <b>112kb/s</b> mogą nie być satysfakcjonujące dla muzyki, a wszystko powyżej <b>182kb/s</b> jest prawdopodobnie przesadzone. diff --git a/translations/cantata_pt_BR.ts b/translations/cantata_pt_BR.ts index 3775e4e5ce..83d3776637 100644 --- a/translations/cantata_pt_BR.ts +++ b/translations/cantata_pt_BR.ts @@ -1654,7 +1654,7 @@ Não será possível desfazer esta escolha. <p>Cantata is a feature-rich and user friendly client for Music Player Daemon (MPD). MPD is a flexible, powerful, server-side application for playing music. MPD may be started either system-wide, or on a per-user basis.<br/><br/>Please select how you would like to have Cantata initially connect to (or startup) MPD:</p> - <p>Cantata é um cliente para Music Player Daemon (MPD) repleto de recursos e fácil de usar. MPD é um aplicativo de servidor (server-side) poderoso e flexível para a reprodução de músicas. MPD pode ser ativado para um sistema amplo (system-wide) ou para um único usuário. <br/><br/>Por favor, selecione o modo pelo qual você gostaria que o Cantata se conectasse inicialmente ao MPD (ou o inicializasse):</p> + <p>Cantata é um cliente para Music Player Daemon (MPD) repleto de recursos e fácil de usar. MPD é um aplicativo de servidor (server-side) poderoso e flexível para a reprodução de músicas. MPD pode ser ativado para um sistema amplo (system-wide) ou para um único usuário.<br/><br/>Por favor, selecione o modo pelo qual você gostaria que o Cantata se conectasse inicialmente ao MPD (ou o inicializasse):</p> Basic single user setup @@ -1674,7 +1674,7 @@ Não será possível desfazer esta escolha. Cantata is now configured!<br/><br/>Cantata's configuration dialog maybe used to customise Cantata's appearance, as well as to add extra MPD hosts, etc. - O Cantata está agora configurado!<br/><br/> A janela de configurações do Cantata pode ser usada para personalizar a aparência do aplicativo, bem como para adicionar outros hosts MPD, etc. + O Cantata está agora configurado!<br/><br/>A janela de configurações do Cantata pode ser usada para personalizar a aparência do aplicativo, bem como para adicionar outros hosts MPD, etc. Connection details @@ -2329,7 +2329,7 @@ Não será possível desfazer esta escolha. <p>Enter a string to search artist, album, title, etc. To filter based on year, add <i>#year-range</i> to search string - e.g.</p><ul><li><b><i>#2000</i></b> return tracks from 2000</li><li><b><i>#1980-1989</i></b> return tracks from the 80's</li><li><b><i>Blah #2000</i></b> to search for string <i>Blah</i> and only return tracks from 2000</li></ul></p> - <p>Insira uma combinação para pesquisar por artista, álbum, título etc. Para filtrar por ano, adicione <i>#ano-ano</i>. Para outras pesquisas combinadas utilize, por exemplo: </p><ul><li><b><i>#2000</i></b> filtrará os resultados para apresentar apenas as faixas do ano 2000;</li><li><b><i>#1980-1989</i></b> retornará como resultado as músicas dos anos 80;</li><li><b><i>Blah #2000</i></b> apresentará os resultados para <i>Blah</i> dentre as faixas referentes ao ano 2000, apenas.</li></ul></p + <p>Insira uma combinação para pesquisar por artista, álbum, título etc. Para filtrar por ano, adicione <i>#ano-ano</i>. Para outras pesquisas combinadas utilize, por exemplo:</p><ul><li><b><i>#2000</i></b> filtrará os resultados para apresentar apenas as faixas do ano 2000;</li><li><b><i>#1980-1989</i></b> retornará como resultado as músicas dos anos 80;</li><li><b><i>Blah #2000</i></b> apresentará os resultados para <i>Blah</i> dentre as faixas referentes ao ano 2000, apenas.</li></ul></p Year, Album, Artist @@ -2876,7 +2876,7 @@ Sair agora cancelará o download. <p>Enter a string to search artist, album, title, etc. To filter based on year, add <i>#year-range</i> to search string - e.g.</p><ul><li><b><i>#2000</i></b> return tracks from 2000</li><li><b><i>#1980-1989</i></b> return tracks from the 80's</li><li><b><i>Blah #2000</i></b> to search for string <i>Blah</i> and only return tracks from 2000</li></ul></p> - <p>Insira uma combinação para pesquisar por artista, álbum, título etc. Para filtrar por ano, adicione <i>#ano-ano</i>. Para outras pesquisas combinadas utilize, por exemplo: </p><ul><li><b><i>#2000</i></b> filtrará os resultados para apresentar apenas as faixas do ano 2000;</li><li><b><i>#1980-1989</i></b> retornará como resultado as músicas dos anos 80;</li><li><b><i>Blah #2000</i></b> apresentará os resultados para <i>Blah</i> dentre as faixas referentes ao ano 2000, apenas.</li></ul></p + <p>Insira uma combinação para pesquisar por artista, álbum, título etc. Para filtrar por ano, adicione <i>#ano-ano</i>. Para outras pesquisas combinadas utilize, por exemplo:</p><ul><li><b><i>#2000</i></b> filtrará os resultados para apresentar apenas as faixas do ano 2000;</li><li><b><i>#1980-1989</i></b> retornará como resultado as músicas dos anos 80;</li><li><b><i>Blah #2000</i></b> apresentará os resultados para <i>Blah</i> dentre as faixas referentes ao ano 2000, apenas.</li></ul></p &Settings @@ -4452,8 +4452,8 @@ Sobrescrevè-lo? dynamic - Listas de reprodução dinâmicas - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - A taixa de bits é uma medida da quantidade de dados usada para representar um segundo numa faixa de áudio.<br>O codificador <b>MP3</b>utilizado por Cantata permite uma <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> isto é, a taxa de bits varia ao longo da faixa com base no conteúdo do áudio. Os intervalos de dados mais complexos codificam-se a uma taxa de bits mais elevada do que os intervalos mais simples; essa abordagem permite uma quantidade geral superior num arquivo de menor tamanho, se comparado ao eventualmente criado a partide de uma taxa de bits constante por toda a faixa.<br>FPor isso, a medida da taxa de bits nesta barra deslizante é uma estimativa da taxa de bits média para a faixa codificada.<br><b>160kb/s</b> é uma boa escolha para a reprodução de áudio num dispositivo portátil.<br/>Algo inferior a <b>120kb/s</b> pode ser insatisfatório para ouvir músicas e algo superior a<b>205kb/s</b> é, possivelmente, exagero. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + A taixa de bits é uma medida da quantidade de dados usada para representar um segundo numa faixa de áudio.<br>O codificador <b>MP3</b>utilizado por Cantata permite uma <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> isto é, a taxa de bits varia ao longo da faixa com base no conteúdo do áudio. Os intervalos de dados mais complexos codificam-se a uma taxa de bits mais elevada do que os intervalos mais simples; essa abordagem permite uma quantidade geral superior num arquivo de menor tamanho, se comparado ao eventualmente criado a partide de uma taxa de bits constante por toda a faixa.<br>FPor isso, a medida da taxa de bits nesta barra deslizante é uma estimativa da taxa de bits média para a faixa codificada.<br><b>160kb/s</b> é uma boa escolha para a reprodução de áudio num dispositivo portátil.<br/>Algo inferior a <b>120kb/s</b> pode ser insatisfatório para ouvir músicas e algo superior a<b>220kb/s</b> é, possivelmente, exagero. Digitally Imported @@ -4725,8 +4725,8 @@ width x height (file size) Número do disco - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - A taxa de bits é uma medida da quantidade de dados usada para representar um segundo numa faixa de áudio.<br>O codificador <b>AAC</b> utilizado por Cantata admite a opção de <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>taxa de bits variável (VBR)</a> ; este valor na taxa de bits varia ao longo de uma faixa conforme a complexidade do conteúdo de áudio. Os intervalos de dados mais complexos são codificados a uma taxa de bits mais elevada do que os menos complexos. Esta abordagem oferece uma qualidade geral superior mesmo numa taxa de bits menor, se comparada a uma taxa constante por toda a faixa.<br>A medida da taxa de bits nesta barra deslizante é mera estimativa da <a href=http://www.ffmpeg.org/faq.html#SEC21>taxa de bits média</a> da faixa codificada.<br><b>150kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>120kb/s</b> pode ser insatisfatório para ouvir músicas e algo superior a <b>200kb/s</b> é, possivelmente, demasiado. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + A taxa de bits é uma medida da quantidade de dados usada para representar um segundo numa faixa de áudio.<br>O codificador <b>AAC</b> utilizado por Cantata admite a opção de <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>taxa de bits variável (VBR)</a> ; este valor na taxa de bits varia ao longo de uma faixa conforme a complexidade do conteúdo de áudio. Os intervalos de dados mais complexos são codificados a uma taxa de bits mais elevada do que os menos complexos. Esta abordagem oferece uma qualidade geral superior mesmo numa taxa de bits menor, se comparada a uma taxa constante por toda a faixa.<br>A medida da taxa de bits nesta barra deslizante é mera estimativa da <a href=http://www.ffmpeg.org/faq.html#SEC21>taxa de bits média</a> da faixa codificada.<br><b>150kb/s</b> es una buena elección para la reproducción de música con un dispositivo portátil.<br/>Algo inferior a <b>100kb/s</b> pode ser insatisfatório para ouvir músicas e algo superior a <b>200kb/s</b> é, possivelmente, demasiado. Only show in Folders view @@ -5067,8 +5067,8 @@ width x height Diminuir volume - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - A taxa de bits é uma medida da quantidade de dados usada para representar um segundo numa faixa de áudio<br>O codificador <b>Opus</b> utilizado por Cantata permite uma <a href=http://es.wikipedia.org/wiki/Tasa_de_bits_variable>taxa de bits variável (VBR)</a> ; isto é, a taxa de bits varia ao longo da faixa com base no conteúdo do áudio. Os intervalos de dados mais complexos codificam-se a uma taxa de bitis mais elevada do que os intervalos mais simples; essa abordagem permite uma qualidade geral superior num arquivo de menor tamanho, se comparado ao eventualmente criado a partir de uma taxa constante por toda a faixa.<br>Por isso, a medida da taxa de bits nesta barra deslizante é uma estimativa da taxa de bits média para a faixa codificada.<br><b>128kb/s</b> é uma boa escolha para a reprodução de áudio num dispositivo portátil.<br/>Algo inferior a <b>100kb/s</b> pode ser insatisfatório para ouvir músicas e algo superior a <b>256kb/s</b> é, possivelmente, exagero. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + A taxa de bits é uma medida da quantidade de dados usada para representar um segundo numa faixa de áudio<br>O codificador <b>Opus</b> utilizado por Cantata permite uma <a href=http://es.wikipedia.org/wiki/Tasa_de_bits_variable>taxa de bits variável (VBR)</a> ; isto é, a taxa de bits varia ao longo da faixa com base no conteúdo do áudio. Os intervalos de dados mais complexos codificam-se a uma taxa de bitis mais elevada do que os intervalos mais simples; essa abordagem permite uma qualidade geral superior num arquivo de menor tamanho, se comparado ao eventualmente criado a partir de uma taxa constante por toda a faixa.<br>Por isso, a medida da taxa de bits nesta barra deslizante é uma estimativa da taxa de bits média para a faixa codificada.<br><b>128kb/s</b> é uma boa escolha para a reprodução de áudio num dispositivo portátil.<br/>Algo inferior a <b>96kb/s</b> pode ser insatisfatório para ouvir músicas e algo superior a <b>256kb/s</b> é, possivelmente, exagero. Organize Files @@ -5093,7 +5093,7 @@ width x height The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - O <a href=http://flac.sourceforge.net/documentation_tools_flac.html>livello di compressione</a> é um valor inteiro entre 0 e 8 que representa a relação entre o tamanho do arquivo e a sua velocidade de compressão durante a codificação com <b>FLAC</b>.<br/> Definir o nível de compressão para <b>0</b> resulta num menor tempo para compactação, mas resulta num arquivo comparavelmente maior.<br/>D'Por outro lado, um nível de compressão <b>8</b> torna o processo de compressão bastante lente, mas produz um arquivo de menor tamanho.<br/>Observe que, sendo o formato FLAC um codec sem perdas, a qualidade do áudio na saída será exatamente a mesma depois da compactação em qualquer nível.<br/>Além disso, em níveis acima de <b>5</b> o tempo para compactação aumenta drasticamente, originando arquivos apenas um pouco menores, por isso não os recomendamos. + O <a href=http://flac.sourceforge.net/documentation_tools_flac.html>livello di compressione</a> é um valor inteiro entre 0 e 8 que representa a relação entre o tamanho do arquivo e a sua velocidade de compressão durante a codificação com <b>FLAC</b>.<br/>Definir o nível de compressão para <b>0</b> resulta num menor tempo para compactação, mas resulta num arquivo comparavelmente maior.<br/>D'Por outro lado, um nível de compressão <b>8</b> torna o processo de compressão bastante lente, mas produz um arquivo de menor tamanho.<br/>Observe que, sendo o formato FLAC um codec sem perdas, a qualidade do áudio na saída será exatamente a mesma depois da compactação em qualquer nível.<br/>Além disso, em níveis acima de <b>5</b> o tempo para compactação aumenta drasticamente, originando arquivos apenas um pouco menores, por isso não os recomendamos. cue - Cue file parsing diff --git a/translations/cantata_ru.ts b/translations/cantata_ru.ts index 294df9fc28..1e056aced2 100644 --- a/translations/cantata_ru.ts +++ b/translations/cantata_ru.ts @@ -7835,7 +7835,7 @@ This cannot be undone. Cantata is now configured!<br/><br/>Cantata's configuration dialog maybe used to customise Cantata's appearance, as well as to add extra MPD hosts, etc. - Cantata теперь настроен! <br/><br/>Диалоговое окно конфигурации может быть использовано для настройки внешнего вида Cantata, а также для добавления дополнительных хостов MPD и т.д. + Cantata теперь настроен!<br/><br/>Диалоговое окно конфигурации может быть использовано для настройки внешнего вида Cantata, а также для добавления дополнительных хостов MPD и т.д. @@ -11058,139 +11058,139 @@ Overwrite? <a href=http://en.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding</a> (AAC) is a patented lossy codec for digital audio.<br>AAC generally achieves better sound quality than MP3 at similar bit rates. It is a reasonable choice for the iPod and some other portable music players. - <a href=http://ru.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding</a> (AAC) — это запатентованный кодек для цифрового аудио, использующий сжатие с потерями. <br>Как правило, AAC предоставляет лучшее качество звука, чем MP3 при аналогичном битрейте. Это разумный выбор для iPod и некоторых других портативных плееров. + <a href=http://ru.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding</a> (AAC) — это запатентованный кодек для цифрового аудио, использующий сжатие с потерями.<br>Как правило, AAC предоставляет лучшее качество звука, чем MP3 при аналогичном битрейте. Это разумный выбор для iPod и некоторых других портативных плееров. - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодировщик <b>AAC</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Поэтому битрейт, устанавливаемый этим ползунком — это только оценочное значение <a href=http://www.ffmpeg.org/faq.html#SEC21>среднего битрейта</a> кодируемого трека.<br>Битрейт, равный <b>150кбит/с</b>, — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>120 кбит/с</b> могут приводить к неудовлетворительному качеству. Значения больше <b>200 кбит/с</b> обычно излишни. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодировщик <b>AAC</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Поэтому битрейт, устанавливаемый этим ползунком — это только оценочное значение <a href=http://www.ffmpeg.org/faq.html#SEC21>среднего битрейта</a> кодируемого трека.<br>Битрейт, равный <b>150кбит/с</b>, — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>100 кбит/с</b> могут приводить к неудовлетворительному качеству. Значения больше <b>200 кбит/с</b> обычно излишни. - + Expected average bitrate for variable bitrate encoding Ожидаемое среднее значение битрейта для кодирования переменного битрейта. - - - - - + + + + + Smaller file Меньший размер файла - - - - + + + + Better sound quality Лучшее качество звука - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://ru.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) — это запатентованный кодек цифрового аудио, использующий сжатие данных с потерями.<br>Несмотря на свои недостатки, он является общепризнанным форматом для любительского хранения аудио, и широко поддерживается портативными музыкальными плеерами. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. - Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодер <b>MP3</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/MP3#VBR>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Поэтому битрейт, устанавливаемый этим ползунком — это только оценочное значение <a href=http://www.ffmpeg.org/faq.html#SEC21>среднего битрейта</a> кодируемого трека. <br>Битрейт, равный <b>160 кбит/с</b> — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>120 кбит/с</b> могут приводить к неудовлетворительному качеству. Значения больше <b>205 кбит/с</b> обычно излишни. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. + Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодер <b>MP3</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/MP3#VBR>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Поэтому битрейт, устанавливаемый этим ползунком — это только оценочное значение <a href=http://www.ffmpeg.org/faq.html#SEC21>среднего битрейта</a> кодируемого трека.<br>Битрейт, равный <b>160 кбит/с</b> — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>120 кбит/с</b> могут приводить к неудовлетворительному качеству. Значения больше <b>220 кбит/с</b> обычно излишни. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://ru.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> — это открытый, не требующий финансовых отчислений кодек для сжатия аудио с потерями.<br>Файлы этом формате имеют меньший размер, чем файлы MP3, при аналогичномили более высоком качестве.Ogg Vorbis — отличный и универсальный выбор, особенно для поддерживающих его портативных плееров. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодировщик <b>Vorbis</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_details>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br> Кодер Vorbis имеет параметр качества «-q», принимающий значения от 1 до 10, который задаёт ожидаемый уровень качества звука. Битрейт, устанавливаемый этим параметром — это только оценочное значение <a href=http://www.ffmpeg.org/faq.html#SEC21>среднего битрейта</a> кодируемого трека. В более новых и более эффективных версиях Vorbis каждому значению качества соответствует меньший битрейт.<br>Параметр качества, равный <b>-q5</b> — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>-q3</b> могут приводить к неудовлетворительному качеству. Значения больше <b>-q8</b> обычно излишни. + Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодировщик <b>Vorbis</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_details>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Кодер Vorbis имеет параметр качества «-q», принимающий значения от 1 до 10, который задаёт ожидаемый уровень качества звука. Битрейт, устанавливаемый этим параметром — это только оценочное значение <a href=http://www.ffmpeg.org/faq.html#SEC21>среднего битрейта</a> кодируемого трека. В более новых и более эффективных версиях Vorbis каждому значению качества соответствует меньший битрейт.<br>Параметр качества, равный <b>-q5</b> — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>-q3</b> могут приводить к неудовлетворительному качеству. Значения больше <b>-q8</b> обычно излишни. - + Quality rating Рейтинг по качеству - + Opus Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> является патентно-бесплатным цифровым аудио кодеком, используемым форму сжатия с потерями данных. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодер <b>Opus</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/Variable_bitrate>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Поэтому битрейт, устанавливаемый этим ползунком — это только оценочное значение среднего битрейта кодируемого трека. <br>Битрейт, равный <b>128 кбит/с</b> — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>100 кбит/с</b> могут приводить к неудовлетворительному качеству музыки. Значения больше <b>256 кбит/с</b> обычно излишни. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Кодер <b>Opus</b>, используемый в Cantata, имеет поддержку <a href=http://en.wikipedia.org/wiki/Variable_bitrate>переменного битрейта (VBR)</a>, что означает, что битрейт может колебаться на протяжении трека в зависимости от сложности звукового содержимого. Более сложные временные периоды трека кодируются с бо́льшим битрейтом, чем более простые. Этот подход позволяет достигнуть лучшего соотношения качества звука и размера файла по сравнению с использованием постоянного битрейта.<br>Поэтому битрейт, устанавливаемый этим ползунком — это только оценочное значение среднего битрейта кодируемого трека.<br>Битрейт, равный <b>128 кбит/с</b> — хороший выбор для прослушивания музыки на портативном плеере.<br/>Значения меньше <b>96 кбит/с</b> могут приводить к неудовлетворительному качеству музыки. Значения больше <b>256 кбит/с</b> обычно излишни. - - + + Bitrate Битрейт - + Apple Lossless Apple Lossless - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://ru.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) — аудио-кодек для сжатия цифрового аудио без потерь.<br>Рекомендуется только для музыкальных плееров компании Apple и плееров, не поддерживающих формат FLAC. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://ru.wikipedia.org/wiki/FLAC>Free Lossless Audio Codec</a> (FLAC) — открытый и не требующий финансовых отчислений кодек для сжатия цифрового аудио без потерь.<br>FLAC — прекрасный выбор для тех, кто хочет хранить музыку, не экономя на качестве. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Уровень сжатия</a> — это целое число со значением от 0 до 8, представляющее оптимальное соотношение между размером файла и скоростью сжатия во время кодирования в формат <b>FLAC</b>.<br/> Уровень сжатия, равный <b>0</b>, даёт самое короткое время сжатия, но создаёт относительно большой файл.<br/>С другой стороны, уровень сжатия <b>8</b> потребует много времени на процесс сжатия, но размер созданного файла будет самым маленьким.<br/>Поскольку, по определению, FLAC — это кодек со сжатием без потерь, то качество аудио на выходе не изменится, вне зависимости от уровня сжатия.<br/>Кроме того, уровни сжатия более <b>5</b> очень сильно увеличивают время сжатия, но лишь незначительно уменьшают размер файла по сравнению с более низкими уровнями сжатия, и поэтому не рекомендуются. + <a href=http://flac.sourceforge.net/documentation_tools_flac.html>Уровень сжатия</a> — это целое число со значением от 0 до 8, представляющее оптимальное соотношение между размером файла и скоростью сжатия во время кодирования в формат <b>FLAC</b>.<br/>Уровень сжатия, равный <b>0</b>, даёт самое короткое время сжатия, но создаёт относительно большой файл.<br/>С другой стороны, уровень сжатия <b>8</b> потребует много времени на процесс сжатия, но размер созданного файла будет самым маленьким.<br/>Поскольку, по определению, FLAC — это кодек со сжатием без потерь, то качество аудио на выходе не изменится, вне зависимости от уровня сжатия.<br/>Кроме того, уровни сжатия более <b>5</b> очень сильно увеличивают время сжатия, но лишь незначительно уменьшают размер файла по сравнению с более низкими уровнями сжатия, и поэтому не рекомендуются. - + Compression level Уровень сжатия - + Faster compression Быстрое сжатие - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://ru.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) — это проприетарный кодек, разработанный компанией Microsoft для сжатия аудио (с потерями).<br>Рекомендуется только для портативных аудиопроигрывателей, не поддерживающих Ogg Vorbis. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill. - Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Из-за ограничений проприетарного формата <b>WMA</b> и трудностей реверс-инжиниринга проприетарного кодировщика, кодировщик WMA, используемый программой Cantata, имеет настройку <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>постоянный битрейт (CBR)</a>.<br>Поэтому битрейт, устанавливаемый этим ползунком — это довольно точное оценочное значение битрейта кодируемого трека. Битрейт, равный <br><b>136кбит/с</b> — хороший выбор для музыки, прослушиваемой в портативном плеере. <br/>Любые значения меньше <b> 112кбит/с</b> приведут к неудовлетворительному качеству музыки, а значения <b>182кбит/с</b> просто излишни. + Битрейт — это мера количества информации, используемой для представления одной секунды звукового трека.<br>Из-за ограничений проприетарного формата <b>WMA</b> и трудностей реверс-инжиниринга проприетарного кодировщика, кодировщик WMA, используемый программой Cantata, имеет настройку <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>постоянный битрейт (CBR)</a>.<br>Поэтому битрейт, устанавливаемый этим ползунком — это довольно точное оценочное значение битрейта кодируемого трека. Битрейт, равный<br><b>136кбит/с</b> — хороший выбор для музыки, прослушиваемой в портативном плеере.<br/>Любые значения меньше <b> 112кбит/с</b> приведут к неудовлетворительному качеству музыки, а значения <b>182кбит/с</b> просто излишни. diff --git a/translations/cantata_zh_CN.ts b/translations/cantata_zh_CN.ts index 4af0ba24e1..2d325c123f 100644 --- a/translations/cantata_zh_CN.ts +++ b/translations/cantata_zh_CN.ts @@ -7745,137 +7745,137 @@ Overwrite? <a href=http://en.wikipedia.org/wiki/Advanced_Audio_Coding>Advanced Audio Coding</a> (AAC) is a patented lossy codec for digital audio.<br>AAC generally achieves better sound quality than MP3 at similar bit rates. It is a reasonable choice for the iPod and some other portable music players. - <a href=http://en.wikipedia.org/wiki/Advanced_Audio_Coding>高级音频编码 AAC </a>是一种有专利授权的无损压缩数字音频格式.<br> 它的音质比同比特率的 MP3 更好.它是 iPod 或者其他移动播放设备上的一个较好选择.限于非商业合同使用 + <a href=http://en.wikipedia.org/wiki/Advanced_Audio_Coding>高级音频编码 AAC </a>是一种有专利授权的无损压缩数字音频格式.<br>它的音质比同比特率的 MP3 更好.它是 iPod 或者其他移动播放设备上的一个较好选择.限于非商业合同使用 - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>AAC</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate#Advantages_and_disadvantages_of_VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the <a href=http://www.ffmpeg.org/faq.html#SEC21>average bitrate</a> of the encoded track.<br><b>150kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>200kb/s</b> is probably overkill. - + Expected average bitrate for variable bitrate encoding 可变比特率编码使用平均比特率 - - - - - + + + + + Smaller file 较小文件 - - - - + + + + Better sound quality 较好音质 - + <a href=http://en.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) is a patented digital audio codec using a form of lossy data compression.<br>In spite of its shortcomings, it is a common format for consumer audio storage, and is widely supported on portable music players. <a href=http://zh.wikipedia.org/wiki/MP3>MPEG Audio Layer 3</a> (MP3) 是一种有损压缩的专利音频编码格式.<br>尽管有缺陷,但它仍然市易奏常见的音频存储格式,几乎所有的移动播放设备都支持 MP3. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>205kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>MP3</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/MP3#VBR>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>160kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>120kb/s</b> might be unsatisfactory for music and anything above <b>220kb/s</b> is probably overkill. - + Ogg Vorbis Ogg Vorbis - + <a href=http://en.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a> is an open and royalty-free audio codec for lossy audio compression.<br>It produces smaller files than MP3 at equivalent or higher quality. Ogg Vorbis is an all-around excellent choice, especially for portable music players that support it. <a href=http://zh.wikipedia.org/wiki/Vorbis>Ogg Vorbis</a>是一种开放的自由的 无损压缩音频编码格式.<br>它的文件比同比特率的 MP3 更小. Ogg Vorbis是一种很不错的选择,特别是对支持它的播放器来说. - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Vorbis</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Vorbis#Technical_Encoder>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>The Vorbis encoder uses a quality rating between -1 and 10 to define a certain expected audio quality level. The bitrate measure in this slider is just a rough estimate (provided by Vorbis) of the average bitrate of the encoded track given a quality value. In fact, with newer and more efficient Vorbis versions the actual bitrate is even lower.<br><b>5</b> is a good choice for music listening on a portable player.<br/>Anything below <b>3</b> might be unsatisfactory for music and anything above <b>8</b> is probably overkill. - + Quality rating 评级 - + Opus - + <a href=http://en.wikipedia.org/wiki/Opus_(audio_format)>Opus</a> is a patent-free digital audio codec using a form of lossy data compression. - - The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>100kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. + + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>The <b>Opus</b> encoder used by Cantata supports a <a href=http://en.wikipedia.org/wiki/Variable_bitrate>variable bitrate (VBR)</a> setting, which means that the bitrate value fluctuates along the track based on the complexity of the audio content. More complex intervals of data are encoded with a higher bitrate than less complex ones; this approach yields overall better quality and a smaller file than having a constant bitrate throughout the track.<br>For this reason, the bitrate measure in this slider is just an estimate of the average bitrate of the encoded track.<br><b>128kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>96kb/s</b> might be unsatisfactory for music and anything above <b>256kb/s</b> is probably overkill. - - + + Bitrate 比特率 - + Apple Lossless Apple 无损 - + <a href=http://en.wikipedia.org/wiki/Apple_Lossless>Apple Lossless</a> (ALAC) is an audio codec for lossless compression of digital music.<br>Recommended only for Apple music players and players that do not support FLAC. <a href=http://ko.wikipedia.org/wiki/%EC%95%A0%ED%94%8C_%EB%AC%B4%EC%86%90%EC%8B%A4>苹果无损格式 苹果无损格式</a> (ALAC) 是一种无损压缩的数字音乐格式.<br>推荐在苹果播放器或者其他不支持 FLAC 的播放器上使用. - + FLAC FLAC - + <a href=http://en.wikipedia.org/wiki/Free_Lossless_Audio_Codec>Free Lossless Audio Codec</a> (FLAC) is an open and royalty-free codec for lossless compression of digital music.<br>If you wish to store your music without compromising on audio quality, FLAC is an excellent choice. <a href=http://ko.wikipedia.org/wiki/FLAC>Free Lossless Audio Codec</a> (FLAC) 是一种开放的自由的无损压缩数字音乐格式.<br>如果想要确保音乐品质, FLAC 是最好的选择. - + The <a href=http://flac.sourceforge.net/documentation_tools_flac.html>compression level</a> is an integer value between 0 and 8 that represents the tradeoff between file size and compression speed while encoding with <b>FLAC</b>.<br/>Setting the compression level to <b>0</b> yields the shortest compression time but generates a comparably big file.<br/>On the other hand, a compression level of <b>8</b> makes compression quite slow but produces the smallest file.<br/>Note that since FLAC is by definition a lossless codec, the audio quality of the output is exactly the same regardless of the compression level.<br/>Also, levels above <b>5</b> dramatically increase compression time but create an only slightly smaller file, and are not recommended. - + Compression level 压缩级别 - + Faster compression 快速压缩 - + Windows Media Audio Windows Media Audio - + <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio>Windows Media Audio</a> (WMA) is a proprietary codec developed by Microsoft for lossy audio compression.<br>Recommended only for portable music players that do not support Ogg Vorbis. <a href=http://ko.wikipedia.org/wiki/%EC%9C%88%EB%8F%84_%EB%AF%B8%EB%94%94%EC%96%B4_%EC%98%A4%EB%94%94%EC%98%A4>Windows Media Audio</a> (WMA)是一种微软开发的有损压缩音频编码格式.<br>推荐用在不支持 Ogg Vorbis的设备上 - + The bitrate is a measure of the quantity of data used to represent a second of the audio track.<br>Due to the limitations of the proprietary <b>WMA</b> format and the difficulty of reverse-engineering a proprietary encoder, the WMA encoder used by Cantata sets a <a href=http://en.wikipedia.org/wiki/Windows_Media_Audio#Windows_Media_Audio>constant bitrate (CBR)</a> setting.<br>For this reason, the bitrate measure in this slider is a pretty accurate estimate of the bitrate of the encoded track.<br><b>136kb/s</b> is a good choice for music listening on a portable player.<br/>Anything below <b>112kb/s</b> might be unsatisfactory for music and anything above <b>182kb/s</b> is probably overkill.