@nexrender/core 1.48.0 → 1.48.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexrender/core",
3
- "version": "1.48.0",
3
+ "version": "1.48.4",
4
4
  "main": "src/index.js",
5
5
  "author": "Inlife",
6
6
  "homepage": "https://www.nexrender.com",
@@ -26,6 +26,7 @@
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@nexrender/action-copy": "^1.0.0",
29
+ "@nexrender/action-decompress": "1.48.2",
29
30
  "@nexrender/action-encode": "^1.1.4",
30
31
  "@nexrender/action-upload": "^1.0.0",
31
32
  "@nexrender/provider-ftp": "^1.17.2",
@@ -37,5 +38,5 @@
37
38
  "publishConfig": {
38
39
  "access": "public"
39
40
  },
40
- "gitHead": "2ccc2286c1776c3c0ae2e1ce752b5382fe385a7a"
41
+ "gitHead": "4642413c229aaa003a7ddab0d603dd59a14e6c07"
41
42
  }
package/src/index.js CHANGED
@@ -30,6 +30,7 @@ if (process.env.NEXRENDER_REQUIRE_PLUGINS) {
30
30
  require('@nexrender/action-copy');
31
31
  require('@nexrender/action-encode');
32
32
  require('@nexrender/action-upload');
33
+ require('@nexrender/action-decompress');
33
34
 
34
35
  require('@nexrender/provider-s3');
35
36
  require('@nexrender/provider-ftp');
@@ -256,7 +256,7 @@ Estimated date of change to the new behavior: 2023-06-01.\n`);
256
256
  fs.writeFileSync(logPath, outputStr);
257
257
 
258
258
  /* resolve job without checking if file exists, or its size for image sequences */
259
- if (settings.skipRender || job.template.imageSequence || ['jpeg', 'jpg', 'png'].indexOf(outputFile) !== -1) {
259
+ if (settings.skipRender || job.template.imageSequence || ['jpeg', 'jpg', 'png', 'tif'].indexOf(outputFile) !== -1) {
260
260
  settings.track('Job Render Finished', {
261
261
  job_id: job.uid, // anonymized internally
262
262
  job_finish_reason: 'skipped_check',
@@ -36,7 +36,7 @@ An example of how that might look like: { "outputModule": "h264", "outputExt": "
36
36
  }
37
37
 
38
38
  // NOTE: for still (jpg) image sequence frame filename will be changed to result_[#####].jpg
39
- if (job.template.outputExt && ['jpeg', 'jpg', 'png'].indexOf(job.template.outputExt) !== -1) {
39
+ if (job.template.outputExt && ['jpeg', 'jpg', 'png', 'tif'].indexOf(job.template.outputExt) !== -1) {
40
40
  job.resultname = 'result_[#####].' + job.template.outputExt;
41
41
  job.template.imageSequence = true;
42
42
  }