wip
This commit is contained in:
23
src/mpv/internal/control.gleam
Normal file
23
src/mpv/internal/control.gleam
Normal file
@@ -0,0 +1,23 @@
|
||||
// fn parse_playback_time(
|
||||
// json_string: String,
|
||||
// ) -> Result(PlaybackTime, ControlError) {
|
||||
// let decoder = {
|
||||
// let float_dececoder = fn(data_string) {
|
||||
// case float.parse(data_string) {
|
||||
// Error(_) -> decode.failure(0.0, "data")
|
||||
// Ok(float_value) -> decode.success(float_value)
|
||||
// }
|
||||
// }
|
||||
// use data <- decode.field(
|
||||
// "data",
|
||||
// decode.then(decode.string, float_dececoder),
|
||||
// )
|
||||
|
||||
// decode.success(PlaybackTime(data))
|
||||
// }
|
||||
|
||||
// result.map_error(
|
||||
// json.parse(from: string.trim(json_string), using: decoder),
|
||||
// fn(r) { ControlError(string.inspect(r)) },
|
||||
// )
|
||||
// }
|
||||
Reference in New Issue
Block a user