An open API service indexing awesome lists of open source software.

https://github.com/marcin-filipiak/sh_ablend

This script takes two video files and creates an alternating sequence (ABABA) by extracting short segments from each video. The user specifies the segment duration (in milliseconds) and the number of sequences. The script then merges these segments into a final output file.
https://github.com/marcin-filipiak/sh_ablend

debian linux shell-script video video-editing

Last synced: 2 months ago
JSON representation

This script takes two video files and creates an alternating sequence (ABABA) by extracting short segments from each video. The user specifies the segment duration (in milliseconds) and the number of sequences. The script then merges these segments into a final output file.

Awesome Lists containing this project

README

          

### Description:
**ablend.sh** is a script that creates a fast-paced alternating sequence (ABABA) from two video files. It extracts short segments from both videos and merges them into a single output file. The user specifies the duration of each segment and the number of repetitions.

### Usage:
```bash
./ablend.sh
```

### Parameters:
- `` – First input video file
- `` – Second input video file
- `` – Duration of each segment in milliseconds
- `` – Number of AB sequences to generate

### Example:
```bash
./ablend.sh video1.mp4 video2.mp4 500 10
```
This command extracts 10 alternating 500ms clips from `video1.mp4` and `video2.mp4`, then combines them into `mixed_output.mp4`.