need help: There are some issues when segmenting videos #453
pengyouak
started this conversation in
Troubleshooting
Replies: 1 comment 3 replies
-
You can do this pretty easily with a list comprehension: min_scene_len = 0.5
scenes = [(start, end) for (start, end) in scenes if (end - start) >= min_scene_len]
> How to re crop the beginning or end of each segment?
Could you clarify what you mean by this? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to filter out short clips when segmenting videos?
How to re crop the beginning or end of each segment?
Beta Was this translation helpful? Give feedback.
All reactions