Yichen Chi

Results 2 issues of Yichen Chi

我试图传递一段视频,尝试了两种方案: (1)直接使用base64编码视频发送 base64.b64encode(video_file.read()).decode('utf-8') 编码后,发送: "type": "video_url", "video_url": { "url": f"data:video/mp4;base64,{video_base64}" } 传递python的opencv保存的视频和ffmpeg重新 -c:v libx264编码的视频,经常无法得到正确的输出,或者产生死循环。 (2)参考:https://github.com/QwenLM/Qwen3-VL/blob/main/cookbooks/video_understanding.ipynb中的inference_with_openai_api,发送frame_list: "type": "video", "video": frame_list, "fps": 5 这个方式看上去更合适,因为可以自己resize图像的大小。但是vllm后端提示没有type:video和type:frame_list的支持,只接受video_url作为输入。 请问我该如何正确的使用vllm部署的服务(openai)接口,来让qwen3VL支持视频输入?

### Checklist - [ ] 1. I have searched related issues but cannot get the expected help. - [ ] 2. The bug has not been fixed in the latest...