10 lines
182 B
Go
10 lines
182 B
Go
package player
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// PlayVideo returns an exec.Cmd for playing the video URL using mpv
|
|
func PlayVideo(url string) *exec.Cmd {
|
|
return exec.Command("mpv", url)
|
|
}
|