@pixwel/pixwel-sdk 2.1.20 → 2.1.21

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
 
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.21",
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