250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- touchdesigner displace
- TDableton
- 터치디자이너 replicator
- 터치디자이너 강의
- 터치디자이너 클론
- TouchDesigner
- 터치디자이너 timeline
- 터치디자이너 interface
- 터치디자이너 인터페이스
- touchdesinger
- 파이썬
- particleGPU
- 터치디자이너 함수
- 터치디자이너 오퍼레이터
- 터치디자이너
- displace
- 터치디자이너 튜토리얼
- 터치디자이너 list
- 터치디자이너 에이블톤
- 터치디자이너 파이썬
- 터치디자이너 if
- ableton live 10
- 터치디자이너 reference
- touchdesigner GPU
- 터치디자이너 python
- touchdesigner particle
- 파이썬reference
- 터치디자이너 Instancing
- 터치디자이너 참조
- 파이썬 if
Archives
- Today
- Total
caLAB
[유니티 개발]비디오 플레이어에서 audioSource 받아오기 본문
728x90
[RequireComponent(typeof(AudioSource))]
void getVideoAudioSource()
{
_audioSource = GetComponent<AudioSource>();
video.audioOutputMode = VideoAudioOutputMode.AudioSource; //audio source 모드로 설정
video.EnableAudioTrack(0, true); //첫 번재 track을 사용
video.SetTargetAudioSource(0, _audioSource); //첫 번재 track에 audio source 설정
}
Audio Spectrum
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
[RequireComponent(typeof(AudioSource))]
public class audioSpectrum : MonoBehaviour
{
public VideoPlayer video;
private AudioSource _audioSource;
public static float[] _samples = new float[512];
public static float[] _freqBand = new float[8];
private void Start()
{
getVideoAudioSource();
}
private void Update()
{
GetSpectrumAudioSouce();
MakeFrequencyBands();
}
void getVideoAudioSource()
{
_audioSource = GetComponent<AudioSource>();
video.audioOutputMode = VideoAudioOutputMode.AudioSource;
video.EnableAudioTrack(0, true);
video.SetTargetAudioSource(0, _audioSource);
}
void GetSpectrumAudioSouce()
{
_audioSource.GetSpectrumData(_samples, 0, FFTWindow.Blackman);
}
void MakeFrequencyBands()
{
int count = 0;
for(int i=0; i<8; i++)
{
float average = 0;
int sampleCount = (int)Mathf.Pow(2, i) * 2;
if (i == 7)
{
sampleCount += 2;
}
for(int j=0; j<sampleCount; j++)
{
average += _samples[count] * (count + 1);
count++;
}
average /= count;
_freqBand[i] = average * 10;
}
}
}
play on awake와 loop를 꺼줘야 된다.
728x90
반응형
'Unity > 유니티 개발' 카테고리의 다른 글
[유니티 개발] FOV 연출 (0) | 2021.12.15 |
---|---|
[유니티 개발] Lighting (0) | 2021.12.14 |
[유니티 네트워크] 애니메이션 동기화 (0) | 2021.11.18 |
[유니티 C#] 캐릭터 이동 회전 스크립트 (0) | 2021.10.18 |
[유니티] Barracuda (0) | 2021.10.07 |
Comments