Created
January 10, 2019 21:46
-
-
Save andrisgauracs/5c9ec495c09a74baa2cd0b54b4b7d05b to your computer and use it in GitHub Desktop.
We define our custom VLC Player class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # We define our custom VLC Player class | |
| class Custom_VLC_Player(Player): | |
| def __init__(self): | |
| # We inherit all the attributes of the original class | |
| super(Custom_VLC_Player, self).__init__() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment