I use https://github.com/Zulko/moviepy library to merge two videos with python
import moviepy
clip1 = VideoFileClip("C:/folder/1.mp4",audio=True)
clip2 = VideoFileClip("C:/folder/2.mp4",audio=True)
final_clip = concatenate_videoclips([clip1,clip2],method="compose")
final_clip.write_videofile("merged.mp4")
Where will I find the merged.mp4 file now? Maybe this will help to https://zulko.github.io/moviepy/ref/VideoClip/VideoClip.html Please help me.
Or is there another way to merge two videos with py?