Difference between revisions of "love.sound.newDecoder"
m |
|||
(12 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
− | + | Attempts to find a decoder for the encoded sound data in the specified file. | |
− | |||
== Function == | == Function == | ||
+ | === Synopsis === | ||
+ | <source lang="lua"> | ||
+ | decoder = love.sound.newDecoder( file, buffer ) | ||
+ | </source> | ||
+ | === Arguments === | ||
+ | {{param|File|file|The file with encoded sound data.}} | ||
+ | {{param|number|buffer (2048)|The size of each decoded chunk, in bytes.}} | ||
+ | === Returns === | ||
+ | {{param|Decoder|decoder|A new Decoder object.}} | ||
+ | == Function == | ||
+ | === Synopsis === | ||
+ | <source lang="lua"> | ||
+ | decoder = love.sound.newDecoder( filename, buffer ) | ||
+ | </source> | ||
+ | === Arguments === | ||
+ | {{param|string|filename|The filename of the file with encoded sound data.}} | ||
+ | {{param|number|buffer (2048)|The size of each decoded chunk, in bytes.}} | ||
+ | === Returns === | ||
+ | {{param|Decoder|decoder|A new Decoder object.}} | ||
+ | == Function == | ||
+ | === Synopsis === | ||
+ | <source lang="lua"> | ||
+ | decoder = love.sound.newDecoder( filedata, buffer ) | ||
+ | </source> | ||
+ | === Arguments === | ||
+ | {{param|FileData|filedata|The encoded file data to decode into sound data.}} | ||
+ | {{param|number|buffer (2048)|The size of each decoded chunk, in bytes.}} | ||
+ | === Returns === | ||
+ | {{param|Decoder|decoder|A new Decoder object.}} | ||
+ | == Function == | ||
+ | {{oldin|[[0.7.1]]|071|type=variant}} | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 8: | Line 38: | ||
=== Arguments === | === Arguments === | ||
{{param|File|file|The file with encoded sound data.}} | {{param|File|file|The file with encoded sound data.}} | ||
− | {{param|number|buffer ( | + | {{param|number|buffer (2048)|The size of each decoded chunk, in bytes.}} |
{{param|number|rate (44100)|Samples per second, or quality of the audio. Use either 44100 (good), 22050 (medium) or 11025 (poor).}} | {{param|number|rate (44100)|Samples per second, or quality of the audio. Use either 44100 (good), 22050 (medium) or 11025 (poor).}} | ||
=== Returns === | === Returns === | ||
{{param|Decoder|decoder|A new Decoder object.}} | {{param|Decoder|decoder|A new Decoder object.}} | ||
== Function == | == Function == | ||
+ | {{oldin|[[0.7.1]]|071|type=variant}} | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 19: | Line 50: | ||
=== Arguments === | === Arguments === | ||
{{param|string|filename|The filename of the file with encoded sound data.}} | {{param|string|filename|The filename of the file with encoded sound data.}} | ||
− | {{param|number|buffer ( | + | {{param|number|buffer (2048)|The size of each decoded chunk, in bytes.}} |
{{param|number|rate (44100)|Samples per second, or quality of the audio. Use either 44100 (good), 22050 (medium) or 11025 (poor).}} | {{param|number|rate (44100)|Samples per second, or quality of the audio. Use either 44100 (good), 22050 (medium) or 11025 (poor).}} | ||
=== Returns === | === Returns === | ||
Line 25: | Line 56: | ||
== See Also == | == See Also == | ||
* [[parent::love.sound]] | * [[parent::love.sound]] | ||
+ | * [[Constructs::Decoder]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=}} | + | {{#set:Description=Attempts to find a decoder for the encoded sound data in the specified file.}} |
+ | {{#set:Since=000}} | ||
+ | == Other Languages == | ||
+ | {{i18n|love.sound.newDecoder}} |
Latest revision as of 21:02, 22 April 2022
Attempts to find a decoder for the encoded sound data in the specified file.
Contents
Function
Synopsis
decoder = love.sound.newDecoder( file, buffer )
Arguments
File file
- The file with encoded sound data.
number buffer (2048)
- The size of each decoded chunk, in bytes.
Returns
Decoder decoder
- A new Decoder object.
Function
Synopsis
decoder = love.sound.newDecoder( filename, buffer )
Arguments
string filename
- The filename of the file with encoded sound data.
number buffer (2048)
- The size of each decoded chunk, in bytes.
Returns
Decoder decoder
- A new Decoder object.
Function
Synopsis
decoder = love.sound.newDecoder( filedata, buffer )
Arguments
FileData filedata
- The encoded file data to decode into sound data.
number buffer (2048)
- The size of each decoded chunk, in bytes.
Returns
Decoder decoder
- A new Decoder object.
Function
Removed in LÖVE 0.7.1 |
This variant is not supported in that and later versions. |
Synopsis
decoder = love.sound.newDecoder( file, buffer, rate )
Arguments
File file
- The file with encoded sound data.
number buffer (2048)
- The size of each decoded chunk, in bytes.
number rate (44100)
- Samples per second, or quality of the audio. Use either 44100 (good), 22050 (medium) or 11025 (poor).
Returns
Decoder decoder
- A new Decoder object.
Function
Removed in LÖVE 0.7.1 |
This variant is not supported in that and later versions. |
Synopsis
decoder = love.sound.newDecoder( filename, buffer, rate )
Arguments
string filename
- The filename of the file with encoded sound data.
number buffer (2048)
- The size of each decoded chunk, in bytes.
number rate (44100)
- Samples per second, or quality of the audio. Use either 44100 (good), 22050 (medium) or 11025 (poor).
Returns
Decoder decoder
- A new Decoder object.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info