blob: c50ae40ce1593e6f304800e057b9685ec0c89906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# XDCAM essence to single MXF
Combines split XDCAM essence (`*V##.MXF` + matching `*A##.MXF`) into one `*_AV.mxf` using stream copy (`-c copy`, no re-encode) and puts them in the same folder as the clip.
## Requirements
- [FFmpeg](https://ffmpeg.org/) on PATH
## Usage
```bash
./remux_xdcam_av.py /path/to/media/clip
./remux_xdcam_av.py /path/to/media
```
## Options
```plain
-o /path/to/out.mxf custom output path (single folder mode)
-n print ffmpeg command(s) only
--overwrite replace existing output
--no-follow-symlinks do not traverse symlinked dirs
--scan print folder discovery
```
|