-
-
Notifications
You must be signed in to change notification settings - Fork 3
ConvertTo WaveForm
James Brundage edited this page Apr 22, 2022
·
2 revisions
Converts audio into a waveform
Converts audio into a waveform visualization.
ConvertTo-WaveForm -InputPath $home\Music\ASong.mp3 -OutputPath $home\Videos\ASong.mp4ConvertTo-WaveForm -InputPath $home\Music\ASong.mp3 -OutputPath $home\Videos\ASongScales.mp4 -Visualizer TonalScaleConvertTo-WaveForm -InputPath $home\Music\ASong.mp3 -OutputPath $home\Videos\ASongScales.mp4 -Visualizer VolumeThe input path
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
true | 1 | true (ByPropertyName) |
The output path
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
true | 2 | true (ByPropertyName) |
The path to FFMpeg.exe. Download it from http://ffmpeg.org/
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | named | true (ByPropertyName) |
The width of the generated file: by default, 640
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[UInt32] |
false | named | false |
The height of the generated file: by default, 120
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[UInt32] |
false | named | false |
The timespan to start splitting the video
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[TimeSpan] |
false | 5 | true (ByPropertyName) |
The time span to end splitting the video
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[TimeSpan] |
false | 6 | true (ByPropertyName) |
The name of the visualizer
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | named | false |
Any options for the visualizer
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[IDictionary] |
false | named | false |
The pixel format. By default, yuv420p.
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[String] |
false | named | false |
If set, will run this in a background job
| Type | Requried | Postion | PipelineInput |
|---|---|---|---|
[Switch] |
false | named | false |
System.IO.FileInfo
System.Management.Automation.Job
ConvertTo-WaveForm [-InputPath] <String> [-OutputPath] <String> [-FFMpegPath <String>] [-Width <UInt32>] [-Height <UInt32>] [[-Start] <TimeSpan>] [[-End] <TimeSpan>] [-Visualizer <String>] [-Option <IDictionary>] [-PixelFormat <String>] [-AsJob] [<CommonParameters>]