We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652d0b3 commit 6495fdbCopy full SHA for 6495fdb
1 file changed
functions/src/events/scrapeEvents.ts
@@ -166,15 +166,6 @@ const extractAudioFromVideo = async (
166
.on("start", commandLine => {
167
console.log(`Spawned FFmpeg with command: ${commandLine}`)
168
})
169
- .on("progress", progress => {
170
- if (
171
- progress &&
172
- progress.percent &&
173
- Math.round(progress.percent) % 10 === 0
174
- ) {
175
- console.log(`Processing: ${progress.percent}% done`)
176
- }
177
- })
178
.on("end", () => {
179
console.log("FFmpeg processing finished successfully")
180
resolve()
0 commit comments