This Python application allows you to convert MP4 files to MP3 files using the moviepy
library and the PyQt
library for the user interface.
-
Install the required Python packages by running the following command:
-
-PyQt:
pip install PyQt6
-MoviePy:
pip install MoviePy
-
Clone or download this repository.
-
Open a terminal or command prompt and navigate to the project directory:
-
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
-
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.
-
The converted audio files will be listed in the "Converted Audios" section.
You can locate the audios in the folder indicated at the bottom.
- Developer: Pollard Samba
- Email: pollardsamba1@gmail.com
- GitHub: POLLARD1145
#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())