Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
String mrl="rtsp://"XX.XX.XX.XX"/axis-media/media.amp?videocodec=h264&resolution=720x480";
我使用 mediaPlayer.playMedia(mrl); 播放视频 它工作得很好。但现在我想动态改变播放视频的分辨率。例如,在播放时我需要将分辨率更改为 720X560 或类似的东西。可以吗?
最后我才知道,这是不可能通过 MRL 实现的。要么我必须停止并以新的分辨率启动播放器,否则我应该手动调整 JPanl 大小。