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

 

 

반응형
Posted by codens