app

class app.App[source]

Bases: object

The Recorganizer App

run(vlc_path: str)[source]

The method that runs the app. The app is designed to be menu-driven. But there are only two options: Record Session and About.

Parameters:

vlc_path (str) – path to the VLC executable; the path must have forward slashes

Example

if __name__ == "__main__":
    app = App()
    # Enter the path to your VLC player here.
    # Remember to keep forward slashes.
    vlc_path = 'D:/Apps/VLC/vlc.exe'
    app.run(vlc_path)