Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
bump version and other minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
overcrash66 committed Oct 24, 2023
1 parent bd52a0d commit 41be650
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
10 changes: 5 additions & 5 deletions AudioFileTranslator-S2ST.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
###############################################################################################################################
# File: AudioFileTranslator-S2ST.py
# Author: WAEL SAHLI
# Date: October 18, 2023
#
#
# Description: Audio file translator, Speech To Speech Translator is a tool
# that allows you to translate the content of an Audio file using:
# - S2T: OpenAI's Whisper multilingual
# - T2T: Google Speech Recognizer
# - TTS: python gtts
#
# Version: 1.4
# Version: 1.5
#
# Change Log:
# October 14, 2023 1.0 - Initial version
Expand All @@ -25,6 +24,7 @@
# October 18, 2023 1.2 - Fix audio to mp3 conversion + Add MP4 to mp3 converter + Add youtube downloader
# October 19, 2023 1.3 - Minor GUI updates, fix extract audio from video exception
# October 20, 2023 1.4 - add missing Flag image, fix exception with Torchaudio backend not being able to handle the specified URI and format
# October 23, 2023 1.5 - 7gxycn08 GUI updates
##############################################################################################################################
"""
from tkinter import Tk, Label, Button, filedialog, StringVar, OptionMenu, messagebox, ttk, DoubleVar, Menu, Entry
Expand All @@ -49,7 +49,7 @@
import httpx
from CTkMenuBar import * #Addon Downloaded from #https://github.com/Akascape/CTkMenuBar

customtkinter.set_appearance_mode("System") # Modes: system (default), light, dark
customtkinter.set_appearance_mode("System") # Modes: system (default), light, dark
customtkinter.set_default_color_theme("blue") # Themes: blue (default), dark-blue, green
def YouTubeDownloader():
new_window = customtkinter.CTk()
Expand Down Expand Up @@ -402,7 +402,7 @@ def Start(Input_file_path):
Start(Input_file_path)

def show_about(self):
messagebox.showinfo("About", "Audio File Translator - S2ST v1.4\n\nCreated by Wael Sahli")
messagebox.showinfo("About", "Audio File Translator - S2ST v1.5\n\nCreated by Wael Sahli\n\nSpecial Thanks TO: 7gxycn08 for GUI updates")

def browse(self):
file_path = filedialog.askopenfilename(filetypes=[("Audio Files", "*.mp3")])
Expand Down
6 changes: 5 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ Audio file translator, Speech To Speech Translator is a tool that allows you to
- v1.1: Improved memory management, support for large audio files, FFMpeg integration, audio-to-MP3 conversion, and GUI updates.
- v1.2: Fixed audio-to-MP3 conversion, added MP4 to MP3 converter, and introduced YouTube downloader.
- v1.3: Minor GUI updates, fix extract audio from video exception.
- v1.4 - add missing Flag image, fix exception with Torchaudio backend not being able to handle the specified URI and format.
- v1.4 - Add missing Flag image, fix exception with Torchaudio backend not being able to handle the specified URI and format.
- v1.5 - 7gxycn08 GUI updates

## Requirements

Expand All @@ -61,6 +62,9 @@ Make sure you have the following dependencies installed:
- pydub: Audio processing library.
- pytube: YouTube video download library.
- PIL: Python Imaging Library for image processing.
- Customtkinter
- httpx
- CTkMenuBar

## Usage

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ pydub
pytube
librosa
customtkinter
httpx

0 comments on commit 41be650

Please sign in to comment.