qwavcut
extracts and/or deletes parts of a wav file
‘qwavcut option… file’
qwavcut
allows to extract and/or delete a fragment of a wav file. some parameters must be supplied in order to define the start/size/end cut points and what to do then: either the fragment must be copied to another file or erased from the file (or both)
deletes the fragment from the file. if option --delete is used, deletion is always done after fragment extraction.
show a brief help and exit.
outfile is the name of the file where all the samples in the given fragment will be copied.
show version and exit.
cut options are used to specify where the fragment begins and ends. there are two ways to do it: with time slices (easier) and with cut points (more complex but also more powerful). cut options are mandatory (which way is used is matter of your choice).
if time slices are used, cut points options are automatically ignored.
there is only one option:
timeslice (see specifying time) specifies, in terms of time, where the cut begins and ends.
there are several options with cut points. cut points are used to specify at which sample the fragment begins (--begin and --Begin), ends (--end and --End), or which size it has (--size). at least, one cut option must be specified (non specified options take its default values). neither the options --begin and --Begin, and the options --end and --End can be used together; also, a begin, end and size option cannot be used at the same time.
by default, the fragment begins at the first sample and ends at the last sample; there’s no default value for size.
cutpoint (see cut points) specifies the first sample of the file that belongs to the cut counting from the end of the file.
cutpoint (see cut points) specifies the first sample of the file that belongs to the cut counting from the beginning of the file.
cutpoint (see cut points) specifies the last sample of the file that belongs to the cut counting from the end of the file.
cutpoint (see cut points) specifies the last sample of the file that belongs to the cut counting from the beginning of the file.
cutpoint (see cut points) specifies the number of samples contained in the cut.
qwavcut -b 10s -o outfile.wav infile.wav
qwavcut -S -1:0 -o outfile.wav infile.wav qwavcut -S -60 -o outfile.wav infile.wav qwavcut -E 1m -o outfile.wav infile.wav qwavcut -s 1m -o outfile.wav infile.wav
qwavcut -S 15:0-30:0 -o outfile.wav infile.wav qwavcut -B 15m -E 30m -o outfile.wav infile.wav qwavcut -s 15m -E 30m -o outfile.wav infile.wav qwavcut -B 15m -s 15m -o outfile.wav infile.wav