@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 +1 -1
- package/src/components/Channel/PresetConfigItem.vue +49 -32
- package/.npmrc +0 -3
package/package.json
CHANGED
|
@@ -692,43 +692,60 @@ const optionsPreset = computed(() => {
|
|
|
692
692
|
value: 'llhp',
|
|
693
693
|
},
|
|
694
694
|
]
|
|
695
|
-
:
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
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'
|
|
740
|
+
video: (encoderValue.value === 'open_h264' || encoderValue.value === 'aurora4')
|
|
726
741
|
? { H264: 'h264' }
|
|
727
|
-
: encoderValue.value === '
|
|
728
|
-
|
|
729
|
-
: encoderValue.value === '
|
|
730
|
-
? {
|
|
731
|
-
:
|
|
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