@christianriedl/media 1.0.89 → 1.0.90
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/views/RecordedVideosPage.vue +16 -23
- package/src/views/VideosPage.vue +16 -23
package/package.json
CHANGED
|
@@ -52,34 +52,27 @@
|
|
|
52
52
|
}
|
|
53
53
|
function play() {
|
|
54
54
|
let url = mediaService.getVideoUrl(selected.value.Url);
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
parSet = true;
|
|
60
|
-
}
|
|
61
|
-
if (params && params.set) {
|
|
62
|
-
url += parSet ? '&' : '?';
|
|
63
|
-
url += `width=${params.width}&height=${params.height}&videoBitRate=${params.videoBitRate}&audioBitRate=${params.audioBitRate}`;
|
|
64
|
-
parSet = true;
|
|
65
|
-
}
|
|
66
|
-
router.push({ path: 'video', query: { url: url, media: parSet ? selected.value.Url : "" } });
|
|
55
|
+
let parSet = false;
|
|
56
|
+
if (audioStream.value) {
|
|
57
|
+
url += `?audioStream=${audioStream.value}`;
|
|
58
|
+
parSet = true;
|
|
67
59
|
}
|
|
68
|
-
|
|
69
|
-
|
|
60
|
+
if (params && params.set) {
|
|
61
|
+
url += parSet ? '&' : '?';
|
|
62
|
+
url += `width=${params.width}&height=${params.height}&videoBitRate=${params.videoBitRate}&audioBitRate=${params.audioBitRate}`;
|
|
63
|
+
parSet = true;
|
|
70
64
|
}
|
|
65
|
+
router.push({ path: 'video', query: { url: url, media: parSet ? selected.value.Url : "" } });
|
|
71
66
|
}
|
|
72
67
|
function listItem(item: IMediaItem) {
|
|
73
68
|
if (item.ItemType == EItemType.VideoItem || item.ItemType == EItemType.VideoBroadcast) {
|
|
74
69
|
selected.value = item;
|
|
75
70
|
computeListHeight();
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
paramsText.value = params.text;
|
|
82
|
-
}
|
|
71
|
+
const video = item as IVideoFile;
|
|
72
|
+
const as = mediaService.splitAudioStreams(video.AudioStreams);
|
|
73
|
+
audioStreams.splice(0, audioStreams.length, ...as);
|
|
74
|
+
params = mediaService.getTranscodeParams(true, video.Width, video.Height, window.innerWidth, quality.value);
|
|
75
|
+
paramsText.value = params.text;
|
|
83
76
|
return;
|
|
84
77
|
}
|
|
85
78
|
}
|
|
@@ -114,13 +107,13 @@
|
|
|
114
107
|
<v-btn v-if="backVisible" @click="listBack">
|
|
115
108
|
<v-icon icon="$back" />
|
|
116
109
|
</v-btn>
|
|
117
|
-
<v-select v-if="
|
|
110
|
+
<v-select v-if="playVisible" v-model="quality"
|
|
118
111
|
:items="qualities"
|
|
119
112
|
persistent-hint
|
|
120
113
|
@update:modelValue="onQualityChange"
|
|
121
114
|
hide-details single-line>
|
|
122
115
|
</v-select>
|
|
123
|
-
<v-select v-if="
|
|
116
|
+
<v-select v-if="playVisible" v-model="audioStream"
|
|
124
117
|
:items="audioStreams"
|
|
125
118
|
persistent-hint
|
|
126
119
|
hide-details single-line>
|
package/src/views/VideosPage.vue
CHANGED
|
@@ -85,22 +85,17 @@
|
|
|
85
85
|
}
|
|
86
86
|
function play() {
|
|
87
87
|
let url = mediaService.getVideoUrl(selected.value.Url);
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
parSet = true;
|
|
93
|
-
}
|
|
94
|
-
if (params && params.set) {
|
|
95
|
-
url += parSet ? '&' : '?';
|
|
96
|
-
url += `width=${params.width}&height=${params.height}&videoBitRate=${params.videoBitRate}&audioBitRate=${params.audioBitRate}`;
|
|
97
|
-
parSet = true;
|
|
98
|
-
}
|
|
99
|
-
router.push({ path: 'video', query: { url: url, media: parSet ? selected.value.Url : "" } });
|
|
88
|
+
let parSet = false;
|
|
89
|
+
if (audioStream.value) {
|
|
90
|
+
url += `?audioStream=${audioStream.value}`;
|
|
91
|
+
parSet = true;
|
|
100
92
|
}
|
|
101
|
-
|
|
102
|
-
|
|
93
|
+
if (params && params.set) {
|
|
94
|
+
url += parSet ? '&' : '?';
|
|
95
|
+
url += `width=${params.width}&height=${params.height}&videoBitRate=${params.videoBitRate}&audioBitRate=${params.audioBitRate}`;
|
|
96
|
+
parSet = true;
|
|
103
97
|
}
|
|
98
|
+
router.push({ path: 'video', query: { url: url, media: parSet ? selected.value.Url : "" } });
|
|
104
99
|
}
|
|
105
100
|
async function playTV() {
|
|
106
101
|
const request = {
|
|
@@ -123,13 +118,11 @@
|
|
|
123
118
|
selected.value = item;
|
|
124
119
|
getPlayer();
|
|
125
120
|
computeListHeight();
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
paramsText.value = params.text;
|
|
132
|
-
}
|
|
121
|
+
const video = item as IVideoFile;
|
|
122
|
+
const as = mediaService.splitAudioStreams(video.AudioStreams);
|
|
123
|
+
audioStreams.splice(0, audioStreams.length, ...as);
|
|
124
|
+
params = mediaService.getTranscodeParams(true, video.Width, video.Height, window.innerWidth, quality.value);
|
|
125
|
+
paramsText.value = params.text;
|
|
133
126
|
return;
|
|
134
127
|
}
|
|
135
128
|
const folder = item as IMediaFolder;
|
|
@@ -226,13 +219,13 @@
|
|
|
226
219
|
<v-btn v-if="backVisible" @click="listBack">
|
|
227
220
|
<v-icon size="x-large" icon="$back" />
|
|
228
221
|
</v-btn>
|
|
229
|
-
<v-select v-if="
|
|
222
|
+
<v-select v-if="playVisible" v-model="quality"
|
|
230
223
|
:items="qualities"
|
|
231
224
|
persistent-hint
|
|
232
225
|
@update:modelValue="onQualityChange"
|
|
233
226
|
hide-details single-line>
|
|
234
227
|
</v-select>
|
|
235
|
-
<v-select v-if="
|
|
228
|
+
<v-select v-if="playVisible" v-model="audioStream"
|
|
236
229
|
:items="audioStreams"
|
|
237
230
|
persistent-hint
|
|
238
231
|
hide-details single-line>
|