Skip to content

Commit

Permalink
fix: Change ffmpeg to post process at priority 20 (#21587)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Henkes <mjhenkes@gmail.com>
  • Loading branch information
rrauenza and mjhenkes committed Jun 2, 2022
1 parent 9cdab56 commit a0a64cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/server/lib/video_capture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ export async function process (name, cname, videoCompression, ffmpegchaptersConf
debug('processing video from %s to %s video compression %o',
name, cname, videoCompression)

const command = ffmpeg()
const command = ffmpeg({
priority: 20,
})
.addOptions([
// These flags all serve to reduce initial buffering, especially important
// when dealing with very short videos (such as during component tests).
Expand Down

3 comments on commit a0a64cc

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a0a64cc Jun 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.0.2/linux-x64/develop-a0a64cc851c8232b94eb0e907f220e08260bda20/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a0a64cc Jun 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.0.2/win32-x64/develop-a0a64cc851c8232b94eb0e907f220e08260bda20/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on a0a64cc Jun 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/10.0.2/darwin-x64/develop-a0a64cc851c8232b94eb0e907f220e08260bda20/cypress.tgz

Please sign in to comment.