blob: 79a0eb2e0872be82b90c34081c1ec8d416f951c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
.TH FFEXTRACT-AUDIO 1 FFUTILS
.SH NAME
ffextract-audio \- create an audio file from a video file
.SH SYNOPSIS
.B ffextract-audio
[-Dry]
.I in-file
.RI [ out-file ]
.SH DESCRIPTION
.B ffextract-audio
extracts the audio track from
.I in-file
and copies it into the new file
.IR out-file .
.SH OPTIONS
.TP
.BR \-D
Remove the original file upon success.
.TP
.BR \-r
Process all files in
.I in-file
recursively.
.TP
.BR \-y
Overwrite output file if it already exists.
.SH OPERANDS
.TP
.I in-file
Video file or, if the
.B -r
option is used, directory of video files
to extract the audio track from.
.TP
.I out-file
Output file or output directory, if
.I in-file
is a directory.
If
.I out-file
is omitted,
.I in-file
is used except the filename suffix is
replaced to appropriately reflect the file format
used for the audio track.
Otherwise if the
.B -r
option is used,
the files names found inside
.I in-file
are appended to
.IR out-file
and the filename suffix are likewise replaced.
.SH EXIT VALUE
.TP
0
Successful completely.
.TP
1
An error occurred.
.SH SEE ALSO
.BR ffmpeg (1),
.BR ffextract-frame (1),
.BR ffget-audio-extension (1),
.BR ffuse-frame (1)
|