Hi @theRealProHacker ,
Using h264 as a codec for mp4 causes issues on many platforms since it falls under a GPL license (see) but is used in this library:
|
# https://stackoverflow.com/a/55596396/15046005 |
|
codec_dict = {"avi": "DIVX", "webm": "WEBM", "mp4": "h264"} |
You actually refer to
StackOverflow where they suggest using
mp4v instead. Is there a reason you decided to use
"h264"? Otherwise, I guess using
"mp4v" would be the better choice :)
codec_dict = {"avi": "DIVX", "webm": "WEBM", "mp4": "mp4v"}
Hi @theRealProHacker ,
Using h264 as a codec for mp4 causes issues on many platforms since it falls under a GPL license (see) but is used in this library:
PyGameRecorder/src/pygame_screen_record/ScreenRecorder.py
Lines 439 to 440 in 97551c6
You actually refer to StackOverflow where they suggest using
mp4vinstead. Is there a reason you decided to use"h264"? Otherwise, I guess using"mp4v"would be the better choice :)