diff --git a/src/ipc.rs b/src/ipc.rs index 670dc53..91297bd 100644 --- a/src/ipc.rs +++ b/src/ipc.rs @@ -414,6 +414,19 @@ pub fn listen(instance: &mut Mpv) -> Result { try_convert_property(name.as_ref(), id, data) } + "client-message" => { + let args = match e["args"] { + Value::Array(ref a) => json_array_to_vec(a) + .iter() + .map(|arg| match arg { + MpvDataType::String(s) => Ok(s.to_owned()), + _ => Err(Error(ErrorCode::JsonContainsUnexptectedType)), + }) + .collect::, _>>(), + _ => return Err(Error(ErrorCode::JsonContainsUnexptectedType)), + }?; + Event::ClientMessage { args } + } _ => Event::Unimplemented, }; Ok(event) diff --git a/src/lib.rs b/src/lib.rs index be2b803..4571373 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,6 +25,7 @@ pub enum Event { PlaybackRestart, PropertyChange { id: usize, property: Property }, ChapterChange, + ClientMessage { args: Vec }, Unimplemented, }