Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Safe file names #204

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Safe file names #204

wants to merge 1 commit into from

Conversation

barisx
Copy link

@barisx barisx commented Aug 14, 2021

I faced a problem about it.

command = "ffmpeg -i 9. Introduction Testing.ts -qscale:v 3 TEMP/frame%06d.jpg -hide_banner"

This is not solvable for OS. Some trick is going to solve it.

command = "ffmpeg -i \"9. Introduction Testing.ts\" -qscale:v 3 TEMP/frame%06d.jpg -hide_banner"

After this cmd working like

ffmpeg -i "9. Introduction Testing.ts" -qscale:v 3 TEMP/frame%06d.jpg -hide_banner

Tested and work.

I faced a problem about it. 
```py
command = "ffmpeg -i 9. Introduction Testing.ts -qscale:v 3 TEMP/frame%06d.jpg -hide_banner"
```
This is not solvable for OS. Some trick is going to solve it.
```py
command = "ffmpeg -i "9. Introduction Testing.ts" -qscale:v 3 TEMP/frame%06d.jpg -hide_banner"
```
After this cmd working like
```bash
ffmpeg -i "9. Introduction Testing.ts" -qscale:v 3 TEMP/frame%06d.jpg -hide_banner
```
Tested and work.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant