@sigmaott/base-next 1.4.47 → 1.4.49

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.47",
4
+ "version": "1.4.49",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -692,43 +692,60 @@ const optionsPreset = computed(() => {
692
692
  value: 'llhp',
693
693
  },
694
694
  ]
695
- : [
696
- {
697
- label: 'MEDIUM',
698
- value: 'medium',
699
- },
700
- {
701
- label: 'FAST',
702
- value: 'fast',
703
- },
704
- {
705
- label: 'FASTER',
706
- value: 'faster',
707
- },
708
- {
709
- label: 'VERYFAST',
710
- value: 'veryfast',
711
- },
712
- {
713
- label: 'SUPERFAST',
714
- value: 'superfast',
715
- },
716
- {
717
- label: 'ULTRAFAST',
718
- value: 'ultrafast',
719
- },
720
- ]
695
+ : encoderValue.value === 'netint'
696
+ ? [
697
+ {
698
+ label: 'MEDIUM',
699
+ value: 'medium',
700
+ },
701
+ {
702
+ label: 'FAST',
703
+ value: 'fast',
704
+ },
705
+ {
706
+ label: 'SLOW',
707
+ value: 'slow',
708
+ },
709
+ ]
710
+ : [
711
+ {
712
+ label: 'MEDIUM',
713
+ value: 'medium',
714
+ },
715
+ {
716
+ label: 'FAST',
717
+ value: 'fast',
718
+ },
719
+ {
720
+ label: 'FASTER',
721
+ value: 'faster',
722
+ },
723
+ {
724
+ label: 'VERYFAST',
725
+ value: 'veryfast',
726
+ },
727
+ {
728
+ label: 'SUPERFAST',
729
+ value: 'superfast',
730
+ },
731
+ {
732
+ label: 'ULTRAFAST',
733
+ value: 'ultrafast',
734
+ },
735
+ ]
721
736
  })
722
737
 
723
738
  const codecSelection = computed(() => {
724
739
  return {
725
- video: (encoderValue.value === 'open_h264' || encoderValue.value === 'aurora4' || encoderValue.value === 'netint')
740
+ video: (encoderValue.value === 'open_h264' || encoderValue.value === 'aurora4')
726
741
  ? { H264: 'h264' }
727
- : encoderValue.value === 'open_hevc'
728
- ? { HEVC: 'hevc' }
729
- : encoderValue.value === 'nvenc'
730
- ? { H264: 'h264', HEVC: 'hevc' }
731
- : { COPY: 'copy' },
742
+ : encoderValue.value === 'netint' ?
743
+ { H264: 'h264', HEVC: 'hevc' }
744
+ : encoderValue.value === 'open_hevc'
745
+ ? { HEVC: 'hevc' }
746
+ : encoderValue.value === 'nvenc'
747
+ ? { H264: 'h264', HEVC: 'hevc' }
748
+ : { COPY: 'copy' },
732
749
  audio: AUDIO_CODECS,
733
750
  data: DATA_CODECS,
734
751
  }[typeValue.value]
package/.npmrc DELETED
@@ -1,3 +0,0 @@
1
- shamefully-hoist=true
2
- strict-peer-dependencies=false
3
- shell-emulator=true