兼容茅台播放

This commit is contained in:
make
2025-11-29 22:53:25 +08:00
parent 0747eeaff3
commit 734527e8c7
11 changed files with 532 additions and 85 deletions

View File

@@ -48,6 +48,27 @@ db.video.find(
{ "v_play_url.douban": { $exists: true } }
).limit(10)
db.video.find(
{ "v_play_url.maotai": { $exists: true } }
).limit(10)
db.video.find(
{
"v_play_url.douban": { $exists: true },
"v_play_url.maotai": { $exists: true }
}
).limit(10)
db.video.find({
"v_play_url.maotai": { $exists: true },
$expr: {
$gt: [
{ $size: { $objectToArray: "$v_play_url" } },
1
]
}
})
// 删除某个资源线路的数据
db.video.updateMany(
{},