OpenAI Whisper 사용하여 동영상 파일에서 자막(srt) 파일 생성하기 (동영상 비디오 자막 파일 자동 생성 방법, 동영상 자막 자동 생성 프로그램, 오픈소스 무료 동영상 자막 자동 생성기)
https://github.com/m1guelpf/auto-subtitle
ffmpeg 와 OpenAI's Whisper 이용
//-----------------------------------------------------------------------------
- 직접 설치 사용시
pip install git+https://github.com/m1guelpf/auto-subtitle.git
//-------------------------------------
pip install whisper
pip install ffmpeg-python
choco install ffmpeg
//-------------------------------------
ffmpeg 관련 에러가 나면
python 모듈 ffmpeg , ffmpeg-python을 모두 삭제후
ffmpeg-python 모듈만 설치한다.
//-------------------------------------
- 사용 설명서
auto_subtitle --help
//-------------------------------------
- 동영상에 자막 쓰기는 에러가 발생하니 자막 생성 기능만 사용한다.
auto_subtitle test.mp4 --srt_only True
auto_subtitle test.mp4 --model large-v3 --language en --output_srt True --srt_only True --verbose True
//-----------------------------------------------------------------------------
참고) 소스에서 실행 방법
- 소스 다운로드
git clone https://github.com/m1guelpf/auto-subtitle
cd auto-subtitle
- 실행
python -m auto_subtitle.cli test.mp4 --srt_only True
python -m auto_subtitle.cli test.mp4 --model large-v3 --language en --output_srt True --srt_only True --verbose True
'AI' 카테고리의 다른 글
openai/evals , LLM 평가 툴 사용법 (0) | 2024.06.30 |
---|---|
[SD] ComfyUI WebUI 사용 방법 (0) | 2024.06.25 |
구글, 프롬프트 엔지니어링 매뉴얼(pdf 한글 번역) (0) | 2024.05.25 |
OpenAI Team 계정 사용법(workspace 사용자 추가 삭제 방법) (0) | 2024.05.23 |
AI 미세 조정 하이퍼 파라미터 설명 (0) | 2024.05.02 |