@sigmaott/base-next 1.4.46 → 1.4.48

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@sigmaott/base-next",
3
3
  "type": "module",
4
- "version": "1.4.46",
4
+ "version": "1.4.48",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -722,13 +722,15 @@ const optionsPreset = computed(() => {
722
722
 
723
723
  const codecSelection = computed(() => {
724
724
  return {
725
- video: (encoderValue.value === 'open_h264' || encoderValue.value === 'aurora4' || encoderValue.value === 'netint')
725
+ video: (encoderValue.value === 'open_h264' || encoderValue.value === 'aurora4')
726
726
  ? { H264: 'h264' }
727
- : encoderValue.value === 'open_hevc'
728
- ? { HEVC: 'hevc' }
729
- : encoderValue.value === 'nvenc'
730
- ? { H264: 'h264', HEVC: 'hevc' }
731
- : { COPY: 'copy' },
727
+ : encoderValue.value === 'netint' ?
728
+ { H264: 'h264', HEVC: 'hevc' }
729
+ : encoderValue.value === 'open_hevc'
730
+ ? { HEVC: 'hevc' }
731
+ : encoderValue.value === 'nvenc'
732
+ ? { H264: 'h264', HEVC: 'hevc' }
733
+ : { COPY: 'copy' },
732
734
  audio: AUDIO_CODECS,
733
735
  data: DATA_CODECS,
734
736
  }[typeValue.value]
@@ -317,6 +317,11 @@ function getEncoderConfig(newEncoderType: string) {
317
317
  config.videoCodec = 'h264'
318
318
  config.videoPreset = 'llhp'
319
319
  break
320
+ case 'netint':
321
+ config.videoCodec = 'h264'
322
+ config.videoPreset = 'medium'
323
+ config.videoProfile = 'main'
324
+ break
320
325
  case 'aurora4':
321
326
  config.videoCodec = 'h264'
322
327
  config.videoPreset = 'veryfast'
package/.npmrc DELETED
@@ -1,3 +0,0 @@
1
- shamefully-hoist=true
2
- strict-peer-dependencies=false
3
- shell-emulator=true