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
# Sorry for the silly example | |
def is_platypus(self): | |
if self.is_mammal(): | |
if self.has_fur(): | |
if self.has_beak(): | |
if self.has_tail(): | |
if self.can_swim(): | |
# It's a platypus! | |
return True | |
# Not a platypus |
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
ffmpeg -itsoffset -4 -i "https://scontent.xx.fbcdn.net/v/t50.12441-16/61340994_435915640302058_n.mp4?_nc_cat=106&_nc_ht=scontent.xx&oh=19858915f178f4854a789438b3d9d24b&oe=5D5B3C92" -vcodec mjpeg -vframes 1 -an -f rawvideo test.jpg |
NewerOlder