gcc `pkg-config --cflags --libs opencv` -o test test.c
2011년 12월 17일 토요일
opencv compile flag
test.c 파일을 output 으로 test 를 지정할 때
2011년 12월 5일 월요일
sox Sound eXchange : universal sound sample translator
터미널에서 음악 파일을 변환하는 방법
wav 파일을 raw 파일로 변환 (8000Hz 모노로)
sox -V input.wav -r 8000 -c 1 -s output.raw
옵션
-v|--volume FACTOR Input file volume adjustment factor (real number)
--ignore-length Ignore input file length given in header; read to EOF
-t|--type FILETYPE File type of audio
-s/-u/-f/-U/-A/-i/-a/-g Encoding type=signed-integer/unsigned-integer/floating point/mu-law/a-law/ima-adpcm/ms-adpcm/gsm-full-rate
-e|--encoding ENCODING Set encoding (ENCODING in above list)
-b|--bits BITS Encoded sample size in bits
-1/-2/-3/-4/-8 Encoded sample size in bytes
-N|--reverse-nibbles Encoded nibble-order
-X|--reverse-bits Encoded bit-order
--endian little|big|swap Encoded byte-order; swap means opposite to default
-L/-B/-x Short options for the above
-c|--channels CHANNELS Number of channels of audio data; e.g. 2 = stereo
-r|--rate RATE Sample rate of audio
-C|--compression FACTOR Compression factor for output format
--add-comment TEXT Append output file comment
--comment TEXT Specify comment text for the output file
--comment-file FILENAME File containing comment text for the output file
--no-glob Don't `glob' wildcard match the following filename
피드 구독하기:
글 (Atom)
GDB
변수 값 출력 명령 출력 명령 p [변수명] p [함수명] p /[출력형식] [변수명] 출력 형식 t : binary o: octal d: decimal u: unsigned decimal x: hexadecimal c: ...
-
Latex 에서 텍스트 모드와 수식모드에는 display 스타일의 차이가 있다. 특히 텍스트모드에서의 수식을 조판하고자 하여 $ \lim_{ n \to 0} $ 명령을 쓸 때 아래 첨자가 옆으로 나오는 문제가 생긴다. displaymath 를 ...
-
우분투 답게 너무 간단하다 sudo apt-get install texlive-latex-base sudo apt-get install ko.tex 설치 확인 ko.tex 가 설치 안되면 저장소를 daum으로 바꿔보자. 다음과 같은 ...