使用MobileVLCKit从UIView捕获RTSP流

问题描述 投票:-1回答:1

我正在使用MobileVLCKit使用RTSP进行流式传输,需要保存实时流以供以后播放。我已经尝试使用Glimpse来捕获我的VLCPlayer所在的UIView的内容但是我仍然无法指定输出URL(Specifying documents directory as file output URL while working with Glimpse in Swift

有没有办法用MobileVLCKit做到这一点?以前我曾尝试使用FFmpeg,但流的质量不好,VLC提供了更好的性能。我只需要能够流式传输RTSP并捕获它。有谁知道如何做到这一点?如果MobileVLCKit无法做到这一点,我也会接受其他解决方案。

ios swift rtsp libvlc
1个回答
0
投票

版本3.2.0添加了录制API

new recording Api
VLCMediaPlayerDelegate:
    - (void)mediaPlayerStartedRecording:(VLCMediaPlayer *)player;
    - (void)mediaPlayer:(VLCMediaPlayer *)player recordingStoppedAtPath:(NSString *)path;
VLCMediaPlayer:
    - (BOOL)startRecordingAtPath:(NSString *)path;
 - (BOOL)stopRecording;
© www.soinside.com 2019 - 2024. All rights reserved.