├── .github └── workflows │ └── manual2.yml ├── LICENSE ├── README.md ├── WLEDVideoSync.py ├── assets ├── Font │ └── DejaVuSansCondensed.ttf ├── Source-intro.png ├── camera.png ├── css │ ├── analog-clock.css │ ├── animate.min.css │ ├── clock.css │ └── mobile.css ├── custom_folder.png ├── desktop.png ├── favicon.icns ├── favicon.ico ├── html │ └── mobile.html ├── intro.gif ├── js │ ├── analog-clock.js │ ├── clock.js │ ├── mobile.js │ └── test.txt ├── transparency_blocks.png ├── version-darwin.json ├── version-linux.json ├── version-win32.json ├── windows.png └── youtube.png ├── coldtype-nuitka-package.config.yml ├── config ├── WLEDVideoSync.ini ├── WLEDVideoSync.readme ├── logging.ini ├── presets │ ├── cast │ │ ├── Desktop │ │ │ └── default.ini │ │ └── Media │ │ │ └── default.ini │ └── filter │ │ ├── Desktop │ │ └── default.ini │ │ └── Media │ │ └── default.ini └── tracetool.ini ├── configmanager.py ├── docs └── img │ ├── api.png │ ├── browser.png │ ├── castcenter.png │ ├── chart_launcher.png │ ├── desktop.png │ ├── device_stats.png │ ├── extracted.png │ ├── filters.png │ ├── header_menu.png │ ├── manage.png │ ├── media.png │ ├── mobile.png │ ├── mobile_icon.png │ ├── native.png │ ├── network_stats.png │ ├── player.png │ ├── scheduler.png │ ├── system_stats.png │ ├── text_animator_control.png │ └── text_overlay.png ├── favicon.icns ├── favicon.ico ├── favicon.png ├── log └── log.txt ├── mainapp.py ├── media ├── 15minutes_blank_video.mp4 ├── 1hour_out.mp4 ├── 2hours_blank_video.mp4 ├── 30minutes_blank_video.mp4 ├── 7minutes_blank_video.mp4 ├── Big_Buck_Bunny_360_10s.mp4 ├── gif │ └── file.txt ├── image │ └── file.txt ├── intro.gif └── moviepy │ └── file.txt ├── requirements.txt ├── src ├── api │ └── api.py ├── cst │ ├── desktop.py │ └── media.py ├── gui │ ├── calculator.py │ ├── castcenter.py │ ├── config_page.py │ ├── niceutils.py │ ├── presets.py │ ├── pyeditor.py │ ├── schedulergui.py │ ├── syscharts.py │ ├── text_page.py │ ├── tkarea.py │ ├── tkinter_fonts.py │ ├── tkmacinit.py │ ├── tkwininit.py │ ├── videoplayer.py │ └── wledtray.py ├── net │ ├── artnet_queue.py │ ├── ddp_queue.py │ ├── discover.py │ └── e131_queue.py ├── tst │ ├── testtextdemo.py │ └── textapi.py ├── txt │ ├── coldtypemp.py │ ├── fontsmanager.py │ ├── textanimator.py │ ├── textdemo.py │ └── textmovie.py └── utl │ ├── actionutils.py │ ├── console.py │ ├── cv2utils.py │ ├── managejobs.py │ ├── multicast.py │ ├── scheduler.py │ ├── self_signed_cert.py │ ├── sharedlistclient.py │ ├── sharedlistmanager.py │ ├── text_utils.py │ ├── utils.py │ ├── webviewmanager.py │ └── winutil.py ├── tmp └── tmp.txt ├── xtra ├── bg-led.jpg ├── cert │ └── file.txt ├── charts │ ├── file.txt │ └── runcharts.py ├── gif │ ├── bg-anim03.gif │ ├── file.txt │ └── gifplayer.htm ├── jobs │ ├── WLEDJobs.py │ └── file.txt ├── mobile │ ├── file.txt │ └── mobile.py ├── scheduler │ ├── WLEDScheduler.py │ ├── example.py │ ├── file.txt │ ├── run_cast.py │ └── run_cast_wled.py ├── scripts │ ├── File.txt │ └── test.py ├── splash-screen.png ├── text │ ├── animator │ │ ├── customize_me.py │ │ └── cv2_demo_01.py │ └── coldtype │ │ ├── cold_demo_01.py │ │ ├── cold_demo_02.py │ │ ├── cold_demo_03.py │ │ ├── cold_demo_04.py │ │ └── cold_effect_01.py └── tracetool │ └── tracetool.py └── yt_dlp-fix-nuitka-package.config.yml /.github/workflows/manual2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/.github/workflows/manual2.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/README.md -------------------------------------------------------------------------------- /WLEDVideoSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/WLEDVideoSync.py -------------------------------------------------------------------------------- /assets/Font/DejaVuSansCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/Font/DejaVuSansCondensed.ttf -------------------------------------------------------------------------------- /assets/Source-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/Source-intro.png -------------------------------------------------------------------------------- /assets/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/camera.png -------------------------------------------------------------------------------- /assets/css/analog-clock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/css/analog-clock.css -------------------------------------------------------------------------------- /assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/css/animate.min.css -------------------------------------------------------------------------------- /assets/css/clock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/css/clock.css -------------------------------------------------------------------------------- /assets/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/css/mobile.css -------------------------------------------------------------------------------- /assets/custom_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/custom_folder.png -------------------------------------------------------------------------------- /assets/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/desktop.png -------------------------------------------------------------------------------- /assets/favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/favicon.icns -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/html/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/html/mobile.html -------------------------------------------------------------------------------- /assets/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/intro.gif -------------------------------------------------------------------------------- /assets/js/analog-clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/js/analog-clock.js -------------------------------------------------------------------------------- /assets/js/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/js/clock.js -------------------------------------------------------------------------------- /assets/js/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/js/mobile.js -------------------------------------------------------------------------------- /assets/js/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/transparency_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/transparency_blocks.png -------------------------------------------------------------------------------- /assets/version-darwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/version-darwin.json -------------------------------------------------------------------------------- /assets/version-linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/version-linux.json -------------------------------------------------------------------------------- /assets/version-win32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/version-win32.json -------------------------------------------------------------------------------- /assets/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/windows.png -------------------------------------------------------------------------------- /assets/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/assets/youtube.png -------------------------------------------------------------------------------- /coldtype-nuitka-package.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/coldtype-nuitka-package.config.yml -------------------------------------------------------------------------------- /config/WLEDVideoSync.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/WLEDVideoSync.ini -------------------------------------------------------------------------------- /config/WLEDVideoSync.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/WLEDVideoSync.readme -------------------------------------------------------------------------------- /config/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/logging.ini -------------------------------------------------------------------------------- /config/presets/cast/Desktop/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/presets/cast/Desktop/default.ini -------------------------------------------------------------------------------- /config/presets/cast/Media/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/presets/cast/Media/default.ini -------------------------------------------------------------------------------- /config/presets/filter/Desktop/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/presets/filter/Desktop/default.ini -------------------------------------------------------------------------------- /config/presets/filter/Media/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/presets/filter/Media/default.ini -------------------------------------------------------------------------------- /config/tracetool.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/config/tracetool.ini -------------------------------------------------------------------------------- /configmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/configmanager.py -------------------------------------------------------------------------------- /docs/img/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/api.png -------------------------------------------------------------------------------- /docs/img/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/browser.png -------------------------------------------------------------------------------- /docs/img/castcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/castcenter.png -------------------------------------------------------------------------------- /docs/img/chart_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/chart_launcher.png -------------------------------------------------------------------------------- /docs/img/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/desktop.png -------------------------------------------------------------------------------- /docs/img/device_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/device_stats.png -------------------------------------------------------------------------------- /docs/img/extracted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/extracted.png -------------------------------------------------------------------------------- /docs/img/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/filters.png -------------------------------------------------------------------------------- /docs/img/header_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/header_menu.png -------------------------------------------------------------------------------- /docs/img/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/manage.png -------------------------------------------------------------------------------- /docs/img/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/media.png -------------------------------------------------------------------------------- /docs/img/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/mobile.png -------------------------------------------------------------------------------- /docs/img/mobile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/mobile_icon.png -------------------------------------------------------------------------------- /docs/img/native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/native.png -------------------------------------------------------------------------------- /docs/img/network_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/network_stats.png -------------------------------------------------------------------------------- /docs/img/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/player.png -------------------------------------------------------------------------------- /docs/img/scheduler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/scheduler.png -------------------------------------------------------------------------------- /docs/img/system_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/system_stats.png -------------------------------------------------------------------------------- /docs/img/text_animator_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/text_animator_control.png -------------------------------------------------------------------------------- /docs/img/text_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/docs/img/text_overlay.png -------------------------------------------------------------------------------- /favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/favicon.icns -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/favicon.png -------------------------------------------------------------------------------- /log/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/mainapp.py -------------------------------------------------------------------------------- /media/15minutes_blank_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/15minutes_blank_video.mp4 -------------------------------------------------------------------------------- /media/1hour_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/1hour_out.mp4 -------------------------------------------------------------------------------- /media/2hours_blank_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/2hours_blank_video.mp4 -------------------------------------------------------------------------------- /media/30minutes_blank_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/30minutes_blank_video.mp4 -------------------------------------------------------------------------------- /media/7minutes_blank_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/7minutes_blank_video.mp4 -------------------------------------------------------------------------------- /media/Big_Buck_Bunny_360_10s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/Big_Buck_Bunny_360_10s.mp4 -------------------------------------------------------------------------------- /media/gif/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/image/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/media/intro.gif -------------------------------------------------------------------------------- /media/moviepy/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/api/api.py -------------------------------------------------------------------------------- /src/cst/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/cst/desktop.py -------------------------------------------------------------------------------- /src/cst/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/cst/media.py -------------------------------------------------------------------------------- /src/gui/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/calculator.py -------------------------------------------------------------------------------- /src/gui/castcenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/castcenter.py -------------------------------------------------------------------------------- /src/gui/config_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/config_page.py -------------------------------------------------------------------------------- /src/gui/niceutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/niceutils.py -------------------------------------------------------------------------------- /src/gui/presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/presets.py -------------------------------------------------------------------------------- /src/gui/pyeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/pyeditor.py -------------------------------------------------------------------------------- /src/gui/schedulergui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/schedulergui.py -------------------------------------------------------------------------------- /src/gui/syscharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/syscharts.py -------------------------------------------------------------------------------- /src/gui/text_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/text_page.py -------------------------------------------------------------------------------- /src/gui/tkarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/tkarea.py -------------------------------------------------------------------------------- /src/gui/tkinter_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/tkinter_fonts.py -------------------------------------------------------------------------------- /src/gui/tkmacinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/tkmacinit.py -------------------------------------------------------------------------------- /src/gui/tkwininit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/tkwininit.py -------------------------------------------------------------------------------- /src/gui/videoplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/videoplayer.py -------------------------------------------------------------------------------- /src/gui/wledtray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/gui/wledtray.py -------------------------------------------------------------------------------- /src/net/artnet_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/net/artnet_queue.py -------------------------------------------------------------------------------- /src/net/ddp_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/net/ddp_queue.py -------------------------------------------------------------------------------- /src/net/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/net/discover.py -------------------------------------------------------------------------------- /src/net/e131_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/net/e131_queue.py -------------------------------------------------------------------------------- /src/tst/testtextdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/tst/testtextdemo.py -------------------------------------------------------------------------------- /src/tst/textapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/tst/textapi.py -------------------------------------------------------------------------------- /src/txt/coldtypemp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/txt/coldtypemp.py -------------------------------------------------------------------------------- /src/txt/fontsmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/txt/fontsmanager.py -------------------------------------------------------------------------------- /src/txt/textanimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/txt/textanimator.py -------------------------------------------------------------------------------- /src/txt/textdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/txt/textdemo.py -------------------------------------------------------------------------------- /src/txt/textmovie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/txt/textmovie.py -------------------------------------------------------------------------------- /src/utl/actionutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/actionutils.py -------------------------------------------------------------------------------- /src/utl/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/console.py -------------------------------------------------------------------------------- /src/utl/cv2utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/cv2utils.py -------------------------------------------------------------------------------- /src/utl/managejobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/managejobs.py -------------------------------------------------------------------------------- /src/utl/multicast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/multicast.py -------------------------------------------------------------------------------- /src/utl/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/scheduler.py -------------------------------------------------------------------------------- /src/utl/self_signed_cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/self_signed_cert.py -------------------------------------------------------------------------------- /src/utl/sharedlistclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/sharedlistclient.py -------------------------------------------------------------------------------- /src/utl/sharedlistmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/sharedlistmanager.py -------------------------------------------------------------------------------- /src/utl/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/text_utils.py -------------------------------------------------------------------------------- /src/utl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/utils.py -------------------------------------------------------------------------------- /src/utl/webviewmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/webviewmanager.py -------------------------------------------------------------------------------- /src/utl/winutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/src/utl/winutil.py -------------------------------------------------------------------------------- /tmp/tmp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/bg-led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/bg-led.jpg -------------------------------------------------------------------------------- /xtra/cert/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/charts/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/charts/runcharts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/charts/runcharts.py -------------------------------------------------------------------------------- /xtra/gif/bg-anim03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/gif/bg-anim03.gif -------------------------------------------------------------------------------- /xtra/gif/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/gif/gifplayer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/gif/gifplayer.htm -------------------------------------------------------------------------------- /xtra/jobs/WLEDJobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/jobs/WLEDJobs.py -------------------------------------------------------------------------------- /xtra/jobs/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/mobile/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/mobile/mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/mobile/mobile.py -------------------------------------------------------------------------------- /xtra/scheduler/WLEDScheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/scheduler/WLEDScheduler.py -------------------------------------------------------------------------------- /xtra/scheduler/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/scheduler/example.py -------------------------------------------------------------------------------- /xtra/scheduler/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/scheduler/run_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/scheduler/run_cast.py -------------------------------------------------------------------------------- /xtra/scheduler/run_cast_wled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/scheduler/run_cast_wled.py -------------------------------------------------------------------------------- /xtra/scripts/File.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xtra/scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/scripts/test.py -------------------------------------------------------------------------------- /xtra/splash-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/splash-screen.png -------------------------------------------------------------------------------- /xtra/text/animator/customize_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/animator/customize_me.py -------------------------------------------------------------------------------- /xtra/text/animator/cv2_demo_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/animator/cv2_demo_01.py -------------------------------------------------------------------------------- /xtra/text/coldtype/cold_demo_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/coldtype/cold_demo_01.py -------------------------------------------------------------------------------- /xtra/text/coldtype/cold_demo_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/coldtype/cold_demo_02.py -------------------------------------------------------------------------------- /xtra/text/coldtype/cold_demo_03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/coldtype/cold_demo_03.py -------------------------------------------------------------------------------- /xtra/text/coldtype/cold_demo_04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/coldtype/cold_demo_04.py -------------------------------------------------------------------------------- /xtra/text/coldtype/cold_effect_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/text/coldtype/cold_effect_01.py -------------------------------------------------------------------------------- /xtra/tracetool/tracetool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/xtra/tracetool/tracetool.py -------------------------------------------------------------------------------- /yt_dlp-fix-nuitka-package.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zak-45/WLEDVideoSync/HEAD/yt_dlp-fix-nuitka-package.config.yml --------------------------------------------------------------------------------