2019. 12. 3. 18:20 ㆍ개발 이야기/android
이전에는 ffmpeg 64bit 바이너리를 앱에 로드하는 방법을 소개했었습니다.
이번에는
영상 및 오디오를 다루는 프로젝트에서는 거의 필수적으로 사용할 수밖에 없는
FFmpeg을 안드로이드에서 사용하는 방법을 소개하겠습니다!
먼저! FFmpeg이 뭐냐!
FFmpeg은 디지털 음성 스트림과 영상 스트림에 대해서 다양한 종류의 형태로 기록하고 변환하는 컴퓨터 프로그램이다.[1] FFmpeg은 명령어를 직접 입력하는 방식으로 동작하며 여러 가지 자유 소프트웨어와 오픈 소스 라이브러리로 구성되어 있다. 라이브러리 중에는 libavcodec도 들어있는데, 이 라이브러리는 음성/영상 코덱 라이브러리로 여러 프로젝트에서 쓰이고 있다. 또, libavformat 라는 음성/영상 다중화, 역다중화 라이브러리도 있다. 이 프로젝트의 이름은 MPEG 영상 표준화 그룹에서 유래했고, "mpeg" 앞에 붙은 "FF"는 "fast forward"를 의미한다.[2]
이 프로젝트는 'Fabrice Bellard'에 의해 시작되었고, 지금은 'Michael Niedermayer'에 의해서 지속되고 있다. 수많은 FFmpeg 개발자들이 'MPlayer' 프로젝트에 포함되어 있고, 'FFmpeg'는 MPlayer 프로젝트 서버를 호스팅하고 있다[모호한 표현].
FFmpeg은 리눅스 기반으로 개발되었지만, 애플, 윈도, 아미가OS 등 대부분의 운영 체제에서 컴파일이 가능하다.
-위키 백과
FFmpeg은 위와 같이 멀티미디어 중에서도 영상이나
오디오를 편집하는데 많이 사용되는데요!
필요한 만큼 자르거나
영상에서 소리를 추출할 수도 있고 오디오 파일을
원하는 스펙으로 변경할 수도 있습니다
또한 여러 개의 오디오를 하나로 붙일 수도 있고
다양하게 사용할 수 있는 오픈소스 소프트웨어입니다!
자그럼 리눅스 환경에서 사용하는 방법을 몇 가지 알아보도록 하겠습니다.
자 먼저, ffmpeg 설치는 apt로!
apt-get install ffmpeg
옵션을 한번 보겠습니다
ffmpeg -h
Getting help:
-h -- print basic options
-h long -- print more options
-h full -- print all options (including all format and codec specific options, very long)
See man ffmpeg for detailed description of the options.
Print help / information / capabilities:
-L show license
-h topic show help
-? topic show help
-help topic show help
--help topic show help
-version show version
-buildconf show build configuration
-formats show available formats
-devices show available devices
-codecs show available codecs
-decoders show available decoders
-encoders show available encoders
-bsfs show available bit stream filters
-protocols show available protocols
-filters show available filters
-pix_fmts show available pixel formats
-layouts show standard channel layouts
-sample_fmts show available audio sample formats
-colors show available color names
-sources device list sources of the input device
-sinks device list sinks of the output device
-hwaccels show available HW acceleration methods
Global options (affect whole program instead of just one file:
-loglevel loglevel set logging level
-v loglevel set logging level
-report generate a report
-max_alloc bytes set maximum size of a single allocated block
-y overwrite output files
-n never overwrite output files
-ignore_unknown Ignore unknown stream types
-stats print progress report during encoding
-max_error_rate ratio of errors (0.0: no errors, 1.0: 100% error maximum error rate
-bits_per_raw_sample number set the number of bits per raw sample
-vol volume change audio volume (256=normal)
Per-file main options:
-f fmt force format
-c codec codec name
-codec codec codec name
-pre preset preset name
-map_metadata outfile[,metadata]:infile[,metadata] set metadata information of outfile from infile
-t duration record or transcode "duration" seconds of audio/video
-to time_stop record or transcode stop time
-fs limit_size set the limit file size in bytes
-ss time_off set the start time offset
-sseof time_off set the start time offset relative to EOF
-seek_timestamp enable/disable seeking by timestamp with -ss
-timestamp time set the recording timestamp ('now' to set the current time)
-metadata string=string add metadata
-target type specify target file type ("vcd", "svcd", "dvd", "dv" or "dv50" with optional prefixes "pal-", "ntsc-" or "film-")
-apad audio pad
-frames number set the number of frames to output
-filter filter_graph set stream filtergraph
-filter_script filename read stream filtergraph description from a file
-reinit_filter reinit filtergraph on input parameter changes
-discard discard
-disposition disposition
Video options:
-vframes number set the number of video frames to output
-r rate set frame rate (Hz value, fraction or abbreviation)
-s size set frame size (WxH or abbreviation)
-aspect aspect set aspect ratio (4:3, 16:9 or 1.3333, 1.7777)
-bits_per_raw_sample number set the number of bits per raw sample
-vn disable video
-vcodec codec force video codec ('copy' to copy stream)
-timecode hh:mm:ss[:;.]ff set initial TimeCode value.
-pass n select the pass number (1 to 3)
-vf filter_graph set video filters
-ab bitrate audio bitrate (please use -b:a)
-b bitrate video bitrate (please use -b:v)
-dn disable data
Audio options:
-aframes number set the number of audio frames to output
-aq quality set audio quality (codec-specific)
-ar rate set audio sampling rate (in Hz)
-ac channels set number of audio channels
-an disable audio
-acodec codec force audio codec ('copy' to copy stream)
-vol volume change audio volume (256=normal)
-af filter_graph set audio filters
Subtitle options:
-s size set frame size (WxH or abbreviation)
-sn disable subtitle
-scodec codec force subtitle codec ('copy' to copy stream)
-stag fourcc/tag force subtitle tag/fourcc
-fix_sub_duration fix subtitles duration
-canvas_size size set canvas size (WxH or abbreviation)
-spre preset set the subtitle options to the indicated preset
엄청나게 많은 옵션들이 존재하는데요! 저는 여기서
제가 자주 사용했던 옵션을 가지고 안드로이드에서 사용하는 방법을 알려드리도록 하겠습니다!
먼저 간단하게 wav 파일을 mp3파일로 변경하는 로직을 구현해 보겠습니다
기본적인 틀은 com.github.hiteshsondhi88 에서 가져온 소스코드를 이용했는데요!
아시는 분들은 아시겠지만 저 소스코드는 64bit를 지원하지 않습니다.
때문에 저의 github에 있는 소스코드로 작업을 하시면 나중에 또
수정해야 하는 수고를 덜 수 있습니다!
https://github.com/bourbonkk/android-ffmpeg64bit-example
첫 번째로 먼저 ffmpeg 바이너리를 로드하겠습니다.
로드 성공을 하면 cmdExcute() 함수를 실행하게 되어있는데요!
public static void load(final Context context, final String file_path) {
try {
FFmpeg.getInstance(context).loadBinary(new FFmpegLoadBinaryResponseHandler() {
@Override
public void onStart() {
}
@Override
public void onSuccess() {
Log.i(Tag, "Binary load success");
cmdExcute(context, file_path);
}
@Override
public void onFailure() {
Log.i(Tag, "Binary load Fail");
}
@Override
public void onFinish() {
}
});
} catch (Exception e) {
loaded = false;
// callback.onFailure(e);
}
}
이 함수에서 명령어를 String[] 어레이 형태로 넣을 수 있습니다.
private static void cmdExcute(Context context, String file_path) {
try {
String[] cmd = {"-i", file_path, file_path.replace(".wav", ".mp3")};
FFmpeg.getInstance(context).execute(cmd, new FFmpegExecuteResponseHandler() {
@Override
public void onSuccess(String message) {
Log.e("ffmpeg", "success");
}
@Override
public void onProgress(String message) {
}
@Override
public void onFailure(String message) {
}
@Override
public void onStart() {
}
@Override
public void onFinish() {
}
});
} catch (Exception e) {
}
}
String[] cmd = {"-i", file_path, file_path.replace(".wav", ".mp3")};
이 부분이 명령어인데요! file_path를 받아서 mp3로 바꿔주는 부분입니다.
한번 실행해 보겠습니다.
AndroidAudioConverter.load(this, Environment.getExternalStorageDirectory() + "/audio_test/recorded_audio.wav");
저는 /sdcard/의 /audio_test 디렉터리에 있는 recorded_audio.wav 파일을 mp3로 변경할 껀데요!
앱을 실행해서 화면을 누르면!
자, mp3파일이 생성된 것을 볼 수 있죠!
그러면 이제 오디오 파일을 자르는 것을 해볼게요
이 파일의 duration(재생시간)을 확인해볼게요
45초 가 조금 넘는데요
30초까지만 되도록 수정하고 flac파일로 변경해 보겠습니다.
String[] cmd = {"-i", file_path, "-ss", "0", "-t", "30", file_path.replace(".wav", ".flac")};
명령어는 위와 같습니다
실행하면
30초로 컷트된 것을 확인할 수 있습니다.
이런 식으로 ffmpeg을 사용하여 앱에서 오디오나 영상 파일을 수정할 수 있습니다!
https://github.com/bourbonkk/android-ffmpeg64bit-example
'개발 이야기 > android' 카테고리의 다른 글
#안드로이드 TextWatcher를 이용한 이메일 형식 체크(email validation) (2) | 2019.12.04 |
---|---|
#안드로이드 FileObserver 사용하기 (0) | 2019.11.25 |
#안드로이드 Kotlin 오디오 파일 Duration 가져오기 (0) | 2019.11.23 |
#안드로이드 Third party 로그인 연동 4(페이스북 연동) (0) | 2019.09.15 |
#안드로이드 Third party 로그인 연동 3(파이어베이스 연동) (0) | 2019.09.15 |