10
10
11
11
describe Convert-Media {
12
12
it ' Can convert media between formats' {
13
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .mkv"
14
- $mp4Path = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .mp4"
13
+ $tmpOutPath = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .mkv"
14
+ $mp4Path = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .mp4"
15
15
$converted = New-Media - TestSource testsrc2 - OutputPath $tmpOutPath - Duration " 00:00:01" |
16
16
Convert-Media - OutputPath $mp4Path
17
17
$converted |
@@ -27,7 +27,7 @@ describe Convert-Media {
27
27
}
28
28
29
29
it ' Can turn a still image into a video' {
30
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .png"
30
+ $tmpOutPath = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .png"
31
31
$converted = New-Media - TestSource testsrc2 - OutputPath $tmpOutPath - Duration " 00:00:01" |
32
32
Convert-Media - OutputPath mp4 - Duration " 00:15:00"
33
33
$converted |
@@ -42,8 +42,8 @@ describe Convert-Media {
42
42
}
43
43
44
44
it ' Can use an extension to -Resize while converting' {
45
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .mp4"
46
- $tmpOutPath2 = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .mp4"
45
+ $tmpOutPath = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .mp4"
46
+ $tmpOutPath2 = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .mp4"
47
47
$converted = New-Media - TestSource testsrc2 - OutputPath $tmpOutPath - Duration " 00:00:05" |
48
48
Convert-Media - OutputPath $tmpOutPath2 - Resize ' 1024x720'
49
49
$converted | Get-Media | Select-Object - ExpandProperty Resolution | Should - Be ' 1024x720'
@@ -53,7 +53,7 @@ describe Convert-Media {
53
53
54
54
context " Error Handling" {
55
55
it ' Will complain when no codec is found' {
56
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .png"
56
+ $tmpOutPath = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .png"
57
57
New-Media - TestSource testsrc2 - OutputPath $tmpOutPath - FrameCount 1
58
58
$err = @ ()
59
59
Get-Item $tmpOutPath | Convert-Media - Codec askljska - ErrorAction SilentlyContinue - OutputPath .\test.mp4 - ErrorVariable err
@@ -66,9 +66,9 @@ describe Convert-Media {
66
66
67
67
describe ConvertTo-GIF {
68
68
it ' Can make gifs' {
69
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .mp3"
70
- $tmpOutPath2 = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .mp4"
71
- $tmpOutPath3 = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .gif"
69
+ $tmpOutPath = Join-Path " $pwd " " sine$ ( Get-Random ) .mp3"
70
+ $tmpOutPath2 = Join-Path " $pwd " " sine$ ( Get-Random ) .mp4"
71
+ $tmpOutPath3 = Join-Path " $pwd " " sine$ ( Get-Random ) .gif"
72
72
$waveform = New-Media - Sine - OutputPath $tmpOutPath - Duration " 00:00:05" |
73
73
Edit-Media - ShowWaveform - ShowWaveformMode line - OutputPath $tmpOutPath2
74
74
@@ -85,7 +85,7 @@ describe ConvertTo-GIF {
85
85
86
86
describe Edit-Media {
87
87
it ' Can edit media' {
88
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " colorspectrum$ ( Get-Random ) .mp4"
88
+ $tmpOutPath = Join-Path " $pwd " " colorspectrum$ ( Get-Random ) .mp4"
89
89
$edited = New-Media - TestSource rgbtestsrc - OutputPath $tmpOutPath - Duration " 00:00:05" |
90
90
Edit-media - Sepia
91
91
@@ -100,7 +100,7 @@ describe Edit-Media {
100
100
101
101
context " Error Handling" {
102
102
it ' Will complain when no codec is found' {
103
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .png"
103
+ $tmpOutPath = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .png"
104
104
New-Media - TestSource testsrc2 - OutputPath $tmpOutPath - FrameCount 1
105
105
$err = @ ()
106
106
Get-Item $tmpOutPath | Edit-Media - Codec askljska - ErrorAction SilentlyContinue - OutputPath .\test.mp4 - ErrorVariable err - FadeIn
@@ -113,7 +113,7 @@ describe Edit-Media {
113
113
114
114
describe Get-Media {
115
115
it ' Can detect volume' {
116
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .mp3"
116
+ $tmpOutPath = Join-Path " $pwd " " sine$ ( Get-Random ) .mp3"
117
117
New-Media - Sine - OutputPath $tmpOutPath - Duration " 00:00:05" |
118
118
Get-Media - VolumeLevel |
119
119
Out-String |
@@ -125,9 +125,9 @@ describe Get-Media {
125
125
126
126
describe Join-Media {
127
127
it ' Can combine an audio file and a video file' {
128
- $videoTmpPath = Join-Path ([ IO.Path ]::GetTempPath()) " Video$ ( Get-Random ) .mp4"
129
- $audioTmpPath = Join-Path ([ IO.Path ]::GetTempPath()) " Audio$ ( Get-Random ) .mp3"
130
- $avTmpPath = Join-Path ([ IO.Path ]::GetTempPath()) " AV$ ( Get-Random ) .mp4"
128
+ $videoTmpPath = Join-Path " $pwd " " Video$ ( Get-Random ) .mp4"
129
+ $audioTmpPath = Join-Path " $pwd " " Audio$ ( Get-Random ) .mp3"
130
+ $avTmpPath = Join-Path " $pwd " " AV$ ( Get-Random ) .mp4"
131
131
@ (
132
132
New-Media - TestSource rgbtestsrc - Duration " 00:00:30" - OutputPath $videoTmpPath
133
133
New-Media - Sine - Duration " 00:00:15" - OutputPath $audioTmpPath
@@ -145,14 +145,14 @@ describe Join-Media {
145
145
}
146
146
it ' Can join files of different codecs' {
147
147
$videoTmpPaths = @ (
148
- Join-Path ([ IO.Path ]::GetTempPath()) " Video$ ( Get-Random ) .mp4"
149
- Join-Path ([ IO.Path ]::GetTempPath()) " Video$ ( Get-Random ) .mp4"
150
- Join-Path ([ IO.Path ]::GetTempPath()) " JoinedVideo$ ( Get-Random ) .mp4"
148
+ Join-Path " $pwd " " Video$ ( Get-Random ) .mp4"
149
+ Join-Path " $pwd " " Video$ ( Get-Random ) .mp4"
150
+ Join-Path " $pwd " " JoinedVideo$ ( Get-Random ) .mp4"
151
151
)
152
152
$audioTmpPaths = @ (
153
- Join-Path ([ IO.Path ]::GetTempPath()) " Audio$ ( Get-Random ) .mp3"
154
- Join-Path ([ IO.Path ]::GetTempPath()) " Audio$ ( Get-Random ) .wav"
155
- Join-Path ([ IO.Path ]::GetTempPath()) " JoinedAudio$ ( Get-Random ) .mp3"
153
+ Join-Path " $pwd " " Audio$ ( Get-Random ) .mp3"
154
+ Join-Path " $pwd " " Audio$ ( Get-Random ) .wav"
155
+ Join-Path " $pwd " " JoinedAudio$ ( Get-Random ) .mp3"
156
156
)
157
157
158
158
@ (
@@ -178,12 +178,12 @@ describe Join-Media {
178
178
it ' Can make a timelapse from a series of images' {
179
179
$tmpOutPaths =
180
180
foreach ($n in 1 .. 30 ) {
181
- Join-Path ([ IO.Path ]::GetTempPath()) " lapsePart$ ( Get-Random ) .jpg"
181
+ Join-Path " $pwd " " lapsePart$ ( Get-Random ) .jpg"
182
182
}
183
183
184
184
$newImages = $tmpOutPaths | New-Media - OutputPath { $_ } - TestSource rgbtestsrc
185
185
186
- $lapseOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " lapse$ ( Get-Random ) .mp4"
186
+ $lapseOutPath = Join-Path " $pwd " " lapse$ ( Get-Random ) .mp4"
187
187
$lapseFile = $newImages | Join-Media - OutputPath $lapseOutPath - TimeLapse
188
188
$lapseFile | Get-Media | Select-Object - ExpandProperty Duration | Should - BeLike ' 00:00:01*'
189
189
@@ -194,7 +194,7 @@ describe Join-Media {
194
194
195
195
describe New-Media {
196
196
it ' Can create A test source' {
197
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " testsrc2$ ( Get-Random ) .mp4"
197
+ $tmpOutPath = Join-Path " $pwd " " testsrc2$ ( Get-Random ) .mp4"
198
198
New-Media - TestSource testsrc2 - OutputPath $tmpOutPath - Duration " 00:00:05" |
199
199
Get-Media |
200
200
Select-Object - ExpandProperty Duration |
@@ -204,7 +204,7 @@ describe New-Media {
204
204
}
205
205
206
206
it ' Can create audio' {
207
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .mp3"
207
+ $tmpOutPath = Join-Path " $pwd " " sine$ ( Get-Random ) .mp3"
208
208
New-Media - Sine - OutputPath $tmpOutPath - Duration " 00:00:05" |
209
209
Get-Media |
210
210
Select-Object - ExpandProperty Duration |
@@ -213,7 +213,7 @@ describe New-Media {
213
213
}
214
214
215
215
it ' Can make a fractal' {
216
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " mandelbrot$ ( Get-Random ) .mp4"
216
+ $tmpOutPath = Join-Path " $pwd " " mandelbrot$ ( Get-Random ) .mp4"
217
217
New-Media - Mandelbrot - OutputPath $tmpOutPath - Duration " 00:00:05" |
218
218
Get-Media |
219
219
Select-Object - ExpandProperty Duration |
@@ -227,7 +227,7 @@ describe New-Media {
227
227
228
228
describe Set-Media {
229
229
it ' Can set media metadata' {
230
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .wav"
230
+ $tmpOutPath = Join-Path " $pwd " " sine$ ( Get-Random ) .wav"
231
231
$tmpMp3Path = $tmpOutPath -replace ' \.wav$' , ' .mp3'
232
232
$convertedToMp3 = New-Media - Sine - OutputPath $tmpOutPath - Duration " 00:00:05" |
233
233
Convert-Media - OutputPath $tmpMp3Path
@@ -243,8 +243,8 @@ describe Set-Media {
243
243
}
244
244
245
245
it ' Can set album artwork' {
246
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .mp3"
247
- $tmpOutPath2 = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .jpg"
246
+ $tmpOutPath = Join-Path " $pwd " " sine$ ( Get-Random ) .mp3"
247
+ $tmpOutPath2 = Join-Path " $pwd " " sine$ ( Get-Random ) .jpg"
248
248
New-Media - TestSource rgbtestsrc - OutputPath $tmpOutPath2
249
249
New-Media - Sine - OutputPath $tmpOutPath - Duration " 00:00:05" |
250
250
Set-Media - AlbumArt $tmpOutPath2
@@ -259,7 +259,7 @@ describe Set-Media {
259
259
260
260
describe Split-Media {
261
261
it ' Can Split on a timespan' {
262
- $tmpOutPath = Join-Path ([ IO.Path ]::GetTempPath()) " sine$ ( Get-Random ) .mp3"
262
+ $tmpOutPath = Join-Path " $pwd " " sine$ ( Get-Random ) .mp3"
263
263
New-Media - Sine - OutputPath $tmpOutPath - Duration " 00:00:05" |
264
264
Split-Media - Start " 00:00:02.1230300" |
265
265
Get-Media |
0 commit comments