This script merge the video and the audio from bongo recordings
*normally it's separated [screencast,sound]
INSTALL dependency
1. pip install ffmpeg-python
2. (Optionall) You can add location of your bongorecording.py folder to PATH environment variable to be able run it system wide
RUN
bongorecording.py path_to_unzipped_folder
It will merge content and save it in a current directory as Recording.mp4
Unix systems only:
As it relays on ffmpeg library, you can merge contents manually with command:
ffmpeg -i screencast.mp4 -i audio.mp4 -c:v copy -c:a Lecture.mp4
Please report here if there is something wrong with this script
Thank you