mirror of
https://github.com/yattee/yattee.git
synced 2024-12-12 21:30:32 +05:30
fix mpv crashing on macOS
fixes #712 Signed-off-by: Toni Förster <toni.foerster@gmail.com>
This commit is contained in:
parent
3369e23e74
commit
278bc343c2
@ -99,6 +99,11 @@ final class MPVClient: ObservableObject {
|
||||
checkError(mpv_set_option_string(mpv, "demuxer-lavf-analyzeduration", "1"))
|
||||
checkError(mpv_set_option_string(mpv, "demuxer-lavf-probe-info", Defaults[.mpvDemuxerLavfProbeInfo]))
|
||||
|
||||
// Disable ytdl, since it causes crashes on macOS.
|
||||
#if os(macOS)
|
||||
checkError(mpv_set_option_string(mpv, "ytdl", "no"))
|
||||
#endif
|
||||
|
||||
checkError(mpv_initialize(mpv))
|
||||
|
||||
let api = UnsafeMutableRawPointer(mutating: (MPV_RENDER_API_TYPE_OPENGL as NSString).utf8String)
|
||||
|
Loading…
Reference in New Issue
Block a user