修复国标级自定编号后点播

This commit is contained in:
648540858
2024-09-24 15:17:50 +08:00
parent 92b9c3042f
commit ff2b81b546
7 changed files with 73 additions and 38 deletions

View File

@@ -1639,7 +1639,8 @@ public class PlayServiceImpl implements IPlayService {
log.warn("[点播] 未找到可用媒体节点");
throw new PlayException(Response.SERVER_INTERNAL_ERROR, "server internal error");
}
play(mediaServer, device.getDeviceId(), channel.getGbDeviceId(), null, callback);
DeviceChannel deviceChannel = deviceChannelService.getOneById(channel.getGbId());
play(mediaServer, device, deviceChannel, null, callback);
}
@Override