This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Module is used to convert a video to a chat summary """ | |
import os | |
from moviepy.editor import VideoFileClip | |
import openai | |
from pydub import AudioSegment | |
from pydub.utils import make_chunks | |
import math | |