You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
199 B
8 lines
199 B
#!/bin/sh
|
|
|
|
# Source and destination
|
|
src="Platform-Day-2024.mp4"
|
|
dest="../mission-impossible-demo.mp4"
|
|
|
|
# Extract a part of the video
|
|
ffmpeg -y -ss 00:00:37.000 -i "$src" -to 00:00:09.500 -an "$dest"
|
|
|