Difference between revisions of "love.sound.newSoundData (한국어)"

(Created page with "새로운 SoundData를 생성합니다. 파일 이름, File, Decoder를 인수로 취하는 생성자는 ...")
 
Line 4: Line 4:
  
 
마지막 생성자는 샘플 레이트와 채널 등을 이용해 빈 메모리 공간을 할당합니다만 자주 사용되는 방법은 아닙니다.
 
마지막 생성자는 샘플 레이트와 채널 등을 이용해 빈 메모리 공간을 할당합니다만 자주 사용되는 방법은 아닙니다.
 
+
== 함수 ==
The sound data will be decoded to the memory in a raw format. It is recommended to create only short sounds like effects, as a 3 minute song uses 30 MB of memory this way.
+
=== 형식 ===
== Function ==
 
=== Synopsis ===
 
 
<source lang="lua">
 
<source lang="lua">
 
soundData = love.sound.newSoundData( filename )
 
soundData = love.sound.newSoundData( filename )
 
</source>
 
</source>
=== Arguments ===
+
=== 매개변수 ===
 
{{param|string|filename|The file name of the file to load.}}
 
{{param|string|filename|The file name of the file to load.}}
=== Returns ===
+
=== 리턴값 ===
 
{{param|SoundData|soundData|A new SoundData object.}}
 
{{param|SoundData|soundData|A new SoundData object.}}
== Function ==
+
== 함수 ==
=== Synopsis ===
+
=== 형식 ===
 
<source lang="lua">
 
<source lang="lua">
 
soundData = love.sound.newSoundData( file )
 
soundData = love.sound.newSoundData( file )
 
</source>
 
</source>
=== Arguments ===
+
=== 매개변수 ===
 
{{param|File|file|A File pointing to an audio file.}}
 
{{param|File|file|A File pointing to an audio file.}}
=== Returns ===
+
=== 리턴값 ===
 
{{param|SoundData|soundData|A new SoundData object.}}
 
{{param|SoundData|soundData|A new SoundData object.}}
== Function ==
+
== 함수 ==
=== Synopsis ===
+
=== 형식 ===
 
<source lang="lua">
 
<source lang="lua">
 
soundData = love.sound.newSoundData( decoder )
 
soundData = love.sound.newSoundData( decoder )
 
</source>
 
</source>
=== Arguments ===
+
=== 매개변수 ===
 
{{param|Decoder|decoder|Decode data from this Decoder until EOF.}}
 
{{param|Decoder|decoder|Decode data from this Decoder until EOF.}}
=== Returns ===
+
=== 리턴값 ===
 
{{param|SoundData|soundData|A new SoundData object.}}
 
{{param|SoundData|soundData|A new SoundData object.}}
== Function ==
+
== 함수 ==
=== Synopsis ===
+
=== 형식 ===
 
<source lang="lua">
 
<source lang="lua">
 
soundData = love.sound.newSoundData( samples, rate, bits, channels )
 
soundData = love.sound.newSoundData( samples, rate, bits, channels )
 
</source>
 
</source>
=== Arguments ===
+
=== 매개변수 ===
 
{{param|number|samples|Total number of samples.}}
 
{{param|number|samples|Total number of samples.}}
 
{{param|number|rate (44100)|Number of samples per second}}
 
{{param|number|rate (44100)|Number of samples per second}}
 
{{param|number|bits (16)|Bits per sample (8 or 16).}}
 
{{param|number|bits (16)|Bits per sample (8 or 16).}}
 
{{param|number|channels (2)|Either 1 for mono or 2 for stereo.}}
 
{{param|number|channels (2)|Either 1 for mono or 2 for stereo.}}
=== Returns ===
+
=== 리턴값 ===
 
{{param|SoundData|soundData|A new SoundData object.}}
 
{{param|SoundData|soundData|A new SoundData object.}}
== Examples ==
+
== 예제 ==
=== Loading SoundData from files ===
+
=== 파일로부터 SoundData를 생성합니다 ===
 
<source lang="lua">
 
<source lang="lua">
 
wav = love.sound.newSoundData("doom.wav")
 
wav = love.sound.newSoundData("doom.wav")
Line 53: Line 51:
 
mp3 = love.sound.newSoundData("doom.mp3")
 
mp3 = love.sound.newSoundData("doom.mp3")
 
</source>
 
</source>
== See Also ==
+
== 같이 보기 ==
* [[parent::love.sound]]
+
* [[parent::love.sound (한국어)]]
* [[Constructs::SoundData]]
+
* [[Constructs::SoundData (한국어)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Creates a new SoundData. }}
+
{{#set:Description=새로운 SoundData를 생성합니다.}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
== Other Languages ==
+
== 다른 언어 ==
 
{{i18n|love.sound.newSoundData}}
 
{{i18n|love.sound.newSoundData}}

Revision as of 06:36, 2 January 2014

새로운 SoundData를 생성합니다.

파일 이름, File, Decoder를 인수로 취하는 생성자는 모두 내부적으로 Decoder를 사용합니다. 다만 사운드를 모두 디코딩해 메모리에 올려놓습니다.

마지막 생성자는 샘플 레이트와 채널 등을 이용해 빈 메모리 공간을 할당합니다만 자주 사용되는 방법은 아닙니다.

함수

형식

soundData = love.sound.newSoundData( filename )

매개변수

string filename
The file name of the file to load.

리턴값

SoundData soundData
A new SoundData object.

함수

형식

soundData = love.sound.newSoundData( file )

매개변수

File file
A File pointing to an audio file.

리턴값

SoundData soundData
A new SoundData object.

함수

형식

soundData = love.sound.newSoundData( decoder )

매개변수

Decoder decoder
Decode data from this Decoder until EOF.

리턴값

SoundData soundData
A new SoundData object.

함수

형식

soundData = love.sound.newSoundData( samples, rate, bits, channels )

매개변수

number samples
Total number of samples.
number rate (44100)
Number of samples per second
number bits (16)
Bits per sample (8 or 16).
number channels (2)
Either 1 for mono or 2 for stereo.

리턴값

SoundData soundData
A new SoundData object.

예제

파일로부터 SoundData를 생성합니다

wav = love.sound.newSoundData("doom.wav")
-- Beware: if doom.mp3 is a huge file, it will take 
-- ages to decode.
mp3 = love.sound.newSoundData("doom.mp3")

같이 보기


다른 언어