WildKratts commited on
Commit
03b9797
1 Parent(s): effddd8

Relative folder paths added

Browse files
Files changed (2) hide show
  1. Transcripts/summary.txt +0 -1
  2. YTSumv2.py +3 -3
Transcripts/summary.txt CHANGED
@@ -1 +0,0 @@
1
- The Kratt Brothers are zoologists who have dedicated their career to educating children about animals through successful TV shows. They have also founded the Kratt Brothers Creature Hero Foundation, which aims to establish wildlife refuges for endangered creatures. Dr. Jane Goodall is a global activist and founder of the Jane Goodall Institute and Roots & Shoots Youth Programme. She has spent six decades inspiring hope and taking action for the natural world.
 
 
YTSumv2.py CHANGED
@@ -7,12 +7,12 @@ from moviepy.editor import AudioFileClip
7
  import streamlit as st
8
  import os
9
 
10
- output_dir = "C:/Users/Henry/Documents/GitHub/YTTranscriber/Chunks"
11
  output_file = "video_audio.mp3"
12
  chunk_length = 120 * 15
13
  transcripts = []
14
- folder_path = "C:/Users/Henry/Documents/GitHub/YTTranscriber/Chunks"
15
- audio_file_path = "C:/Users/Henry/Documents/GitHub//YTTranscriber/.DownloadedAudio"
16
  summary_llm = guidance.llms.OpenAI('gpt-3.5-turbo-16k-0613', caching=False)
17
 
18
  st.set_page_config(
 
7
  import streamlit as st
8
  import os
9
 
10
+ output_dir = "./Chunks"
11
  output_file = "video_audio.mp3"
12
  chunk_length = 120 * 15
13
  transcripts = []
14
+ folder_path = "./Chunks"
15
+ audio_file_path = "./.DownloadedAudio"
16
  summary_llm = guidance.llms.OpenAI('gpt-3.5-turbo-16k-0613', caching=False)
17
 
18
  st.set_page_config(