Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

help joining video parts (southpark.cc.com) #17186

Closed
rellik31 opened this issue Aug 7, 2018 · 3 comments
Closed

help joining video parts (southpark.cc.com) #17186

rellik31 opened this issue Aug 7, 2018 · 3 comments

Comments

@rellik31
Copy link

@rellik31 rellik31 commented Aug 7, 2018

hi, can someone please tell me if there is a extra command for when downloading from southpark.cc.com to join all 3 parts together as one file
at the moment every video i have tried downloads as 3 .mp4 files but if its possible i would prefer each episode to be one file

thank you

@dstftw
Copy link
Collaborator

@dstftw dstftw commented Aug 7, 2018

No such command. You have to do it on your own.

@dstftw dstftw closed this Aug 7, 2018
@rellik31
Copy link
Author

@rellik31 rellik31 commented Aug 7, 2018

can you tell me how?

@mzfr
Copy link

@mzfr mzfr commented Aug 7, 2018

@rellik31 Use MoviePy
Something like this should work

    from moviepy.editor import VideoFileClip, concatenate_videoclips
    clip1 = VideoFileClip("myvideo.mp4")
    clip2 = VideoFileClip("myvideo2.mp4").subclip(50,60)
    clip3 = VideoFileClip("myvideo3.mp4")
    final_clip = concatenate_videoclips([clip1,clip2,clip3])
    final_clip.write_videofile("my_concatenation.mp4")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
3 participants
You can’t perform that action at this time.