ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| // | |
| // RecordAudio.swift | |
| // | |
| // This is a Swift class (updated for Swift 5) | |
| // that uses the iOS RemoteIO Audio Unit | |
| // to record audio input samples, | |
| // (should be instantiated as a singleton object.) | |
| // | |
| // Created by Ronald Nicholson on 10/21/16. | |
| // Copyright © 2017,2019 HotPaw Productions. All rights reserved. |
| // download cycolid.wav with: | |
| // $ wget -O cycloid.mp4 "https://vimeo.com/73860675/download?t=1446320826&v=187839750&s=46dcfa8c1c9ed3539dcc260443df6da08032ee60796f781df237bb6957cb8138" | |
| // $ ffmpeg -i cycloid.mp4 cycloid.wav | |
| #include "ofMain.h" | |
| #include "ofxAudioDecoder.h" | |
| class ofApp : public ofBaseApp { | |
| public: | |
| ofxAudioDecoder audio; |
| #pragma once | |
| #include "ofxOscReceiver.h" | |
| class OscIn : public ofxOscReceiver | |
| { | |
| private: | |
| struct Value { | |
| enum { | |
| INT,FLOAT,STRING, |