去除wmv
This commit is contained in:
parent
460d2d8f29
commit
5fc90ad0bf
|
@ -159,7 +159,7 @@
|
||||||
? showClockDialog()
|
? showClockDialog()
|
||||||
: item_data.window_type == 'EwindowType::Weather'
|
: item_data.window_type == 'EwindowType::Weather'
|
||||||
? showWeatherDialog()
|
? showWeatherDialog()
|
||||||
: showPlaylistDialog('.mp4;.avi;.ts;.webm;.flv;.mkv;.wmv')
|
: showPlaylistDialog('.mp4;.avi;.ts;.webm;.flv;.mkv')
|
||||||
"
|
"
|
||||||
v-model="item_data.media_url"
|
v-model="item_data.media_url"
|
||||||
:readonly="
|
:readonly="
|
||||||
|
|
|
@ -994,7 +994,7 @@ export default defineComponent({
|
||||||
if (old_signal_source) {
|
if (old_signal_source) {
|
||||||
const obj = await file_manage_dialog.value.showDialogAsync(
|
const obj = await file_manage_dialog.value.showDialogAsync(
|
||||||
"select",
|
"select",
|
||||||
".mp4;.avi;.ts;.webm;.flv;.mkv;.wmv;.jpg;.png;"
|
".mp4;.avi;.ts;.webm;.flv;.mkv;.jpg;.png;"
|
||||||
);
|
);
|
||||||
if (obj) {
|
if (obj) {
|
||||||
interface __I {
|
interface __I {
|
||||||
|
@ -1011,8 +1011,7 @@ export default defineComponent({
|
||||||
file.name.endsWith("ts") ||
|
file.name.endsWith("ts") ||
|
||||||
file.name.endsWith("webm") ||
|
file.name.endsWith("webm") ||
|
||||||
file.name.endsWith("flv") ||
|
file.name.endsWith("flv") ||
|
||||||
file.name.endsWith("mkv") ||
|
file.name.endsWith("mkv")
|
||||||
file.name.endsWith("wmv")
|
|
||||||
) {
|
) {
|
||||||
entity.window_type = "EwindowType::Multimedia";
|
entity.window_type = "EwindowType::Multimedia";
|
||||||
entity.media_url = JSON.stringify([full_path]);
|
entity.media_url = JSON.stringify([full_path]);
|
||||||
|
@ -1120,8 +1119,7 @@ export default defineComponent({
|
||||||
file.name.endsWith("ts") ||
|
file.name.endsWith("ts") ||
|
||||||
file.name.endsWith("webm") ||
|
file.name.endsWith("webm") ||
|
||||||
file.name.endsWith("flv") ||
|
file.name.endsWith("flv") ||
|
||||||
file.name.endsWith("mkv") ||
|
file.name.endsWith("mkv")
|
||||||
file.name.endsWith("wmv")
|
|
||||||
) {
|
) {
|
||||||
entity.window_type = "EwindowType::Multimedia";
|
entity.window_type = "EwindowType::Multimedia";
|
||||||
entity.media_url = JSON.stringify([full_path]);
|
entity.media_url = JSON.stringify([full_path]);
|
||||||
|
|
|
@ -1102,7 +1102,7 @@ export default defineComponent({
|
||||||
|
|
||||||
const obj = await file_manage_dialog.value.showDialogAsync(
|
const obj = await file_manage_dialog.value.showDialogAsync(
|
||||||
"select",
|
"select",
|
||||||
".mp4;.avi;.ts;.webm;.flv;.mkv;.wmv;.jpg;.png;"
|
".mp4;.avi;.ts;.webm;.flv;.mkv;.jpg;.png;"
|
||||||
);
|
);
|
||||||
if (obj) {
|
if (obj) {
|
||||||
interface __I {
|
interface __I {
|
||||||
|
@ -1119,8 +1119,7 @@ export default defineComponent({
|
||||||
file.name.endsWith("ts") ||
|
file.name.endsWith("ts") ||
|
||||||
file.name.endsWith("webm") ||
|
file.name.endsWith("webm") ||
|
||||||
file.name.endsWith("flv") ||
|
file.name.endsWith("flv") ||
|
||||||
file.name.endsWith("mkv") ||
|
file.name.endsWith("mkv")
|
||||||
file.name.endsWith("wmv")
|
|
||||||
) {
|
) {
|
||||||
entity.window_type = "EwindowType::Multimedia";
|
entity.window_type = "EwindowType::Multimedia";
|
||||||
entity.media_url = JSON.stringify([full_path]);
|
entity.media_url = JSON.stringify([full_path]);
|
||||||
|
@ -1188,7 +1187,7 @@ export default defineComponent({
|
||||||
if (old_signal_source) {
|
if (old_signal_source) {
|
||||||
const obj = await file_manage_dialog.value.showDialogAsync(
|
const obj = await file_manage_dialog.value.showDialogAsync(
|
||||||
"select",
|
"select",
|
||||||
".mp4;.avi;.ts;.webm;.flv;.mkv;.wmv;.jpg;.png;"
|
".mp4;.avi;.ts;.webm;.flv;.mkv;.jpg;.png;"
|
||||||
);
|
);
|
||||||
if (obj) {
|
if (obj) {
|
||||||
interface __I {
|
interface __I {
|
||||||
|
@ -1205,8 +1204,7 @@ export default defineComponent({
|
||||||
file.name.endsWith("ts") ||
|
file.name.endsWith("ts") ||
|
||||||
file.name.endsWith("webm") ||
|
file.name.endsWith("webm") ||
|
||||||
file.name.endsWith("flv") ||
|
file.name.endsWith("flv") ||
|
||||||
file.name.endsWith("mkv") ||
|
file.name.endsWith("mkv")
|
||||||
file.name.endsWith("wmv")
|
|
||||||
) {
|
) {
|
||||||
entity.window_type = "EwindowType::Multimedia";
|
entity.window_type = "EwindowType::Multimedia";
|
||||||
entity.media_url = JSON.stringify([full_path]);
|
entity.media_url = JSON.stringify([full_path]);
|
||||||
|
|
Loading…
Reference in New Issue