Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 2.63 KB

README.md

File metadata and controls

75 lines (46 loc) · 2.63 KB

Video to Audio Converter

Python Version PyQt Version MoviePy Version

Description

This Python application allows you to convert MP4 files to MP3 files using the moviepy library and the PyQt library for the user interface.

Visual Appearance

Home Screen

home

How to Use

  1. Install the required Python packages by running the following command:

  2. -PyQt: pip install PyQt6

    -MoviePy: pip install MoviePy

  3. Clone or download this repository.

  4. Open a terminal or command prompt and navigate to the project directory:

  5. Run the converter application: The Home screen will show up home

  6. The application will open with a simple user interface. Click on the "Choose Video Folder" button to select the folder containing the video files you want to convert. The list of videos in the selected folder will be listed under the videos section videos

  7. After selecting the folder, the video files available for conversion will be listed. Double-click on a video to convert it to an MP3 file. Alternatively, you can click once on a video and then click the "Convert" button to choose the destination folder for the converted audio file.

    converting

  8. The converted audio files will be listed in the "Converted Audios" section.

    Audios

    You can locate the audios in the folder indicated at the bottom.

Developer

Dependencies


Code Snippet

#END OF THE PROGRAM, ALLOW SYSTEM TO DISPLAY YOUR PROGRAM
if __name__ == "__main__":
 import sys
 app = QtWidgets.QApplication(sys.argv)
 MainWindow = QtWidgets.QMainWindow()
 ui = Ui_MainWindow()
 ui.setupUi(MainWindow)
 MainWindow.show()
 sys.exit(app.exec())