Add encoder settings

Add encoder cancel button
This commit is contained in:
René Preuß
2023-08-06 17:22:05 +02:00
parent 4ba1f1fb5f
commit 5f96ca82ea
10 changed files with 392 additions and 79 deletions

View File

@@ -161,6 +161,9 @@ window.api = {
logout: () => {
return ipcRenderer.invoke('logout')
},
cancelEncode: () => {
return ipcRenderer.invoke('cancel-encode')
},
encode: (id: string, input: string, options: EncoderOptions) => {
return ipcRenderer.invoke('encode', {id, input, options})
},