We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice a module like this in Deno: https://github.com/jaseg/python-mpv
Playing video in:
import mpv player = mpv.MPV(ytdl=True) player.play('https://youtu.be/DOmdB7D-pUU') player.wait_for_playback()
and an audio (online radio):
import mpv player = mpv.MPV() player.play('http://s1.myradiostream.com:12508/listen.mp3') player.wait_for_playback()
The text was updated successfully, but these errors were encountered:
Well, considering the python module already exists you could do the following using my deno_python module:
import { python } from "https://deno.land/x/python/mod.ts"; const mpv = python.import("mpv"); const player = new mpv.MPV(ytdl=True); player.play('https://youtu.be/dQw4w9WgXcQ'); player.wait_for_playback();
import { python } from "https://deno.land/x/python/mod.ts"; const mpv = python.import("mpv"); player = mpv.MPV(); player.play('http://s1.myradiostream.com:12508/listen.mp3') player.wait_for_playback();
Sorry, something went wrong.
No branches or pull requests
It would be nice a module like this in Deno: https://github.com/jaseg/python-mpv
Playing video in:
and an audio (online radio):
The text was updated successfully, but these errors were encountered: