feat(twitch): Add flag --oauth-listen-port-twitch

This commit is contained in:
Dmitrii Okunev
2024-10-15 20:48:22 +01:00
parent 3ac051113f
commit a75efc79e1
8 changed files with 81 additions and 15 deletions

View File

@@ -82,3 +82,17 @@ func (c *Client) RecodingEndedChan(
) (<-chan struct{}, error) {
return nil, fmt.Errorf("not compiled with libav support")
}
func (c *Client) CloseInput(
ctx context.Context,
inputID InputID,
) error {
return fmt.Errorf("not compiled with libav support")
}
func (c *Client) CloseOutput(
ctx context.Context,
outputID OutputID,
) error {
return fmt.Errorf("not compiled with libav support")
}