Scripting way to upload videos to peertube and youtube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

23 lines
554 B

#!/usr/bin/env python
# coding: utf-8
import pluginInterfaces as pi
import utils
import video as vid
class Debug(pi.IConsumerPlugin):
"""
Plugin to help knowing the state of prismedia and its variables.
"""
def prepare_options(self, video, options):
print("Debug plugin prepare_options:")
print("Video: ", video)
print("Options: ", options)
return True
def finished(self, video, options):
print("Debug plugin finished:")
print("Video: ", video)
print("Options: ", options)