@pixwel/pixwel-sdk 2.1.20 → 2.1.22

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.
@@ -256,12 +256,6 @@ var Ingest = function (_Model) {
256
256
  return part.toUpperCase();
257
257
  });
258
258
 
259
- // if Aspect and Standard are available, then set the encodeName accoring to naming standard
260
- if (mediaType == 'video' && tags.Aspect && tags.Standard) {
261
- var encodeName = tags.Standard.toUpperCase() + "-" + tags.Aspect.replace(':', 'X');
262
- parts = parts.push("" + encodeName);
263
- }
264
-
265
259
  var matchedSet = matchSet(allTags, options.tags);
266
260
  var requiredInfo = tags.Resolution && tags["Frame Mode"] && tags.Framerate;
267
261
 
@@ -454,6 +448,7 @@ var Ingest = function (_Model) {
454
448
  case "1.000":
455
449
  tags.Aspect = "1:1";
456
450
  break;
451
+ case '1.317':
457
452
  case "1.347":
458
453
  tags.Aspect = "4:3";
459
454
  break;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pixwel/pixwel-sdk",
3
3
  "description": "",
4
- "version": "2.1.20",
4
+ "version": "2.1.22",
5
5
  "author": "Pixwel",
6
6
  "license": "UNLICENSED",
7
7
  "main": "./dist/index.js",
package/src/Ingest.js CHANGED
@@ -227,12 +227,6 @@ export default class Ingest extends Model {
227
227
  .filter()
228
228
  .map(part => part.toUpperCase());
229
229
 
230
- // if Aspect and Standard are available, then set the encodeName accoring to naming standard
231
- if (mediaType == 'video' && tags.Aspect && tags.Standard) {
232
- let encodeName = `${tags.Standard.toUpperCase()}-${tags.Aspect.replace(':', 'X')}`;
233
- parts = parts.push(`${encodeName}`);
234
- }
235
-
236
230
  let matchedSet = matchSet(allTags, options.tags);
237
231
  let requiredInfo = tags.Resolution && tags["Frame Mode"] && tags.Framerate;
238
232
 
@@ -429,6 +423,7 @@ export default class Ingest extends Model {
429
423
  case "1.000":
430
424
  tags.Aspect = "1:1";
431
425
  break;
426
+ case '1.317':
432
427
  case "1.347":
433
428
  tags.Aspect = "4:3";
434
429
  break;