Using the normal user interface, I get a log file at the location I specified.
When using python-vlc, the best I can get is debug information printed in the console with this code:
Code: Select all
instance = vlc.Instance('--verbose=3')
#Create Player, etc
Code: Select all
options=['--verbose=3','--file-logging','--logmode=text' '--logfile="myvlc.log"']
instance = vlc.Instance(options)
#Create Player, etc