Concatenation + Outro
See original GitHub issueSorry, im new in python and Moviepy, so i don’t know how can i redact this this properly, this is my code it takes 100 clips and cut every 10 (that works) but i want to add an outro
something like this:
for i, j in enumerate(range(0, len(videos), CLIP_SIZE)):
final_clip = concatenate_videoclips(videos[j:j+CLIP_SIZE])
to this
for i, j in enumerate(range(0, len(videos), CLIP_SIZE)):
final_clip = concatenate_videoclips(videos[j:j+CLIP_SIZE], outro) #<-------------------
but it returns an error
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Concatenating files from rawvideo - audio - Super User
I used Adobe After Effects to create a basic ~10 second outro for a video, and exported it to lossless ...
Read more >concatenate variable length intro / outro fixed segments and ...
I've had to define the length of the intro video ( [1:v]trim=0:30 ... ) and the outro video ( [3:v]trim=0:20 ... ) -...
Read more >Concatenating Videos Using FFmpeg | Baeldung on Linux
Likewise, let's concatenate an opening, an episode, and an ending, with two audio streams. That is, video in stream 0, audio in streams...
Read more >gruntjs/grunt-contrib-concat: Concatenate files. - GitHub
Concatenate files. Contribute to gruntjs/grunt-contrib-concat development by creating an account on GitHub.
Read more >bash - Concatenate several files in directory with a prepend ...
txt - outro.txt) expands to the path of a temporary file containing the output of that cat command. We use redirection instead of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This isn’t quite right.
concatenate_videoclips(videos[j:j+CLIP_SIZE] + [outro])
is what you want.i also tried that