Difference between revisions of "love.sound.newDecoder (日本語)"
(Created page with "指定のファイルにある符号化されたデータから復号方法の検出を試行します。 == 関数 == === 概要 === <source lang="lua"> decoder = love.sound....") |
m (Translation updated.) |
||
Line 1: | Line 1: | ||
− | + | 指定されたファイルにある符号化済み音声データで用いる復号方法を検出します。 | |
== 関数 == | == 関数 == | ||
=== 概要 === | === 概要 === | ||
Line 6: | Line 6: | ||
</source> | </source> | ||
=== 引数 === | === 引数 === | ||
− | {{param|File|file|File | + | {{param|File|file|符号化した音声データが存在する File オブジェクト。}} |
− | {{param|number|buffer (2048)| | + | {{param|number|buffer (2048)|復号化を行うチャンクの大きさ (バイト単位)。}} |
=== 返値 === | === 返値 === | ||
{{param|Decoder|decoder|新規 Decoder オブジェクト。}} | {{param|Decoder|decoder|新規 Decoder オブジェクト。}} | ||
Line 16: | Line 16: | ||
</source> | </source> | ||
=== 引数 === | === 引数 === | ||
− | {{param|string|filename| | + | {{param|string|filename|符号化した音声データファイルのファイル名。}} |
− | {{param|number|buffer (2048)| | + | {{param|number|buffer (2048)|復号化を行うチャンクの大きさ (バイト単位)。}} |
=== 返値 === | === 返値 === | ||
{{param|Decoder|decoder|新規 Decoder オブジェクト。}} | {{param|Decoder|decoder|新規 Decoder オブジェクト。}} | ||
== 関数 == | == 関数 == | ||
− | {{oldin (日本語)|[[0.7.1]]|071|type= | + | === 概要 === |
− | === | + | <source lang="lua"> |
+ | decoder = love.sound.newDecoder( filedata, buffer ) | ||
+ | </source> | ||
+ | === 引数 === | ||
+ | {{param|FileData|filedata|符号化した音声データファイルのファイル名。}} | ||
+ | {{param|number|buffer (2048)|復号化を行うチャンクの大きさ (バイト単位)。}} | ||
+ | === 返値 === | ||
+ | {{param|Decoder|decoder|新規 Decoder オブジェクト。}} | ||
+ | == 関数 == | ||
+ | {{oldin (日本語)|[[0.7.1 (日本語)|0.7.1]]|071|type=異形}} | ||
+ | === 概要 === | ||
<source lang="lua"> | <source lang="lua"> | ||
decoder = love.sound.newDecoder( file, buffer, rate ) | decoder = love.sound.newDecoder( file, buffer, rate ) | ||
</source> | </source> | ||
=== 引数 === | === 引数 === | ||
− | {{param|File|file|File | + | {{param|File|file|符号化した音声データが存在する File オブジェクト。}} |
− | {{param|number|buffer (2048)| | + | {{param|number|buffer (2048)|復号化を行うチャンクの大きさ (バイト単位)。}} |
{{param|number|rate (44100)|秒毎のサンプル数、または音声の品質。 44100 (良), 22050 (中) または 11025 (低) のいずれかを使用します。}} | {{param|number|rate (44100)|秒毎のサンプル数、または音声の品質。 44100 (良), 22050 (中) または 11025 (低) のいずれかを使用します。}} | ||
=== 返値 === | === 返値 === | ||
{{param|Decoder|decoder|新規 Decoder オブジェクト。}} | {{param|Decoder|decoder|新規 Decoder オブジェクト。}} | ||
== 関数 == | == 関数 == | ||
− | {{oldin (日本語)|[[0.7.1]]|071|type=異形}} | + | {{oldin (日本語)|[[0.7.1 (日本語)|0.7.1]]|071|type=異形}} |
=== 概要 === | === 概要 === | ||
<source lang="lua"> | <source lang="lua"> | ||
decoder = love.sound.newDecoder( filename, buffer, rate ) | decoder = love.sound.newDecoder( filename, buffer, rate ) | ||
</source> | </source> | ||
− | === | + | === 返値 === |
− | {{param|string|filename| | + | {{param|string|filename|符号化した音声データファイルのファイル名。}} |
− | {{param|number|buffer (2048)| | + | {{param|number|buffer (2048)|復号化を行うチャンクの大きさ (バイト単位)。}} |
{{param|number|rate (44100)|秒毎のサンプル数、または音声の品質。 44100 (良), 22050 (中) または 11025 (低) のいずれかを使用します。}} | {{param|number|rate (44100)|秒毎のサンプル数、または音声の品質。 44100 (良), 22050 (中) または 11025 (低) のいずれかを使用します。}} | ||
=== 返値 === | === 返値 === | ||
Line 48: | Line 58: | ||
* [[Constructs::Decoder (日本語)]] | * [[Constructs::Decoder (日本語)]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description= | + | {{#set:Description=指定されたファイルにある符号化済み音声データで用いる復号方法を検出します。}} |
{{#set:Since=000}} | {{#set:Since=000}} | ||
== そのほかの言語 == | == そのほかの言語 == | ||
− | {{i18n|love.sound.newDecoder}} | + | {{i18n (日本語)|love.sound.newDecoder}} |
Latest revision as of 07:47, 22 July 2023
指定されたファイルにある符号化済み音声データで用いる復号方法を検出します。
Contents
関数
概要
decoder = love.sound.newDecoder( file, buffer )
引数
返値
Decoder decoder
- 新規 Decoder オブジェクト。
関数
概要
decoder = love.sound.newDecoder( filename, buffer )
引数
返値
Decoder decoder
- 新規 Decoder オブジェクト。
関数
概要
decoder = love.sound.newDecoder( filedata, buffer )
引数
返値
Decoder decoder
- 新規 Decoder オブジェクト。
関数
LÖVE 0.7.1 から廃止 |
この異形は以降のバージョンでは非対応です。 |
概要
decoder = love.sound.newDecoder( file, buffer, rate )
引数
File file
- 符号化した音声データが存在する File オブジェクト。
number buffer (2048)
- 復号化を行うチャンクの大きさ (バイト単位)。
number rate (44100)
- 秒毎のサンプル数、または音声の品質。 44100 (良), 22050 (中) または 11025 (低) のいずれかを使用します。
返値
Decoder decoder
- 新規 Decoder オブジェクト。
関数
LÖVE 0.7.1 から廃止 |
この異形は以降のバージョンでは非対応です。 |
概要
decoder = love.sound.newDecoder( filename, buffer, rate )
返値
string filename
- 符号化した音声データファイルのファイル名。
number buffer (2048)
- 復号化を行うチャンクの大きさ (バイト単位)。
number rate (44100)
- 秒毎のサンプル数、または音声の品質。 44100 (良), 22050 (中) または 11025 (低) のいずれかを使用します。
返値
Decoder decoder
- 新規 Decoder オブジェクト。
関連