Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
C4illin committed May 24, 2024
1 parent b6380be commit f92cc4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ services:
- "3000:3000"
environment: # Defaults are listed below
- ACCOUNT_REGISTRATION=false # true or false
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken
volumes:
- /path/you/want:/app/data
```
Expand Down
2 changes: 1 addition & 1 deletion src/converters/ffmpeg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ export async function convert(
command += ` -f "${convertTo}"`;
}

command += " ${targetPath}";
command += ` ${targetPath}`;

return exec(command, (error, stdout, stderr) => {
if (error) {
Expand Down

0 comments on commit f92cc4f

Please sign in to comment.