Initial commit

This commit is contained in:
2016-12-22 03:15:02 +01:00
commit 58f27830f4
20 changed files with 654 additions and 0 deletions

View File

@ -0,0 +1,6 @@
preset:
name: Create histogram from audio
group: ffmpeg/a2v
plugin: ffmpeg
props:
filter: "ahistogram=dmode=separate:slide=1:scale=log"

View File

@ -0,0 +1,6 @@
preset:
name: Create phase meter from audio
group: ffmpeg/a2v
plugin: ffmpeg
props:
filter: "aphasemeter=mpc=#ff8800"

View File

@ -0,0 +1,7 @@
preset:
name: Create spectrum from audio
group: ffmpeg/a2v
plugin: ffmpeg
props:
filter: "showspectrum=mode=separate:color=intensity:slide=1:scale=log"

View File

@ -0,0 +1,8 @@
preset:
name: Compress/expand dynamic range
group: ffmpeg/audio
plugin: ffmpeg
props:
filter: "[0:a]compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2"
extra: "-c:v copy"
type: complex

View File

@ -0,0 +1,12 @@
preset:
name: Normalize audio level
group: ffmpeg/audio
plugin: ffmpeg
props:
filter: "dynaudnorm=m=100:s=12"
#filter: "dynaudnorm=m={maxgain}:s={compress}"
extra: "-c:v copy"
type: complex
params:
compress: { label:"Compression factor", type:float, min:0.0, max:30.0, default:0.0 }
maxgain: { label:"Max gain factor", type:float, min:0.0, max:100.0, default:10.0 }