boombox_plugin

This commit is contained in:
.[d]. 2022-07-24 04:41:21 -05:00
parent d2ab80ac07
commit eb4e8ea786

View File

@ -44,21 +44,23 @@ boombox - a plugin to collectively sort through music pumped into an irc channel
## boombox: `functional hooking`
```
summary:
in order for boombox to do what it does it needs hooked into places that can feed it information.
there are 3 ideal places for the present Usage.
examples:
1) url_grabber plugin
- url_grabber_plugin.py - this plugin pre-scans every url that passes through a channel
- hookexample: https://git.tcp.direct/decoded/m4pl1mp/src/branch/master/plugins/url_grabber_plugin.py#L73-L75
2) youtube plugin
- youtube_plugin.py - this plugin is used a lot for music videos and for you youtube specific monitoring it works well.
- youtube_plugin.py - this plugin is used a lot and for youtube specific monitoring with links, it works well.
- hooking example: https://git.tcp.direct/decoded/m4pl1mp/src/branch/master/plugins/youtube_plugin.py#L76-L79
- hooking example: https://git.tcp.direct/decoded/m4pl1mp/src/branch/master/plugins/youtube_plugin.py#L137-L140
3) soundcloud plugin
- soundcloud_plugin.py - this plugin is use a lot for music and for soundcloud specific monitoring it works well.
- soundcloud_plugin.py - this plugin is used a lot for soundcloud specific monitoring with links, it works well.
- hooking example: https://git.tcp.direct/decoded/m4pl1mp/src/branch/master/plugins/soundcloud_plugin.py#L75-L77
```
## boombox: `color system`