Jumpcutter can't handle inputs with spaces
See original GitHub issue./jump --input_file filename\ with\ spaces
will try to load from filename
Definitely seems like a problem in argparse, but there might be an easy way to make it still work.
Obviously there is an easy workaround of naming a file without spaces, but it would be nice to allow it.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:17 (8 by maintainers)
Top Results From Across the Web
Automatic on-the-fly video editing tool! - YouTube
Go here for my friend and I's most-polished version of this project: https:// jumpcutter.com/More up-to-date version of this video: ...
Read more >How prevent whitespace in input field with plain javascript
Use event.preventDefault to prevent its default behavior. var field = document.querySelector('[name="username"]'); field.addEventListener('keypress' ...
Read more >VWRT: Automatically cut out low volume clips with ffmpeg
Run with vwrt [-i "INPUT"] [-t REG_SPEED] [-s LOWVOL_SPEED] [-o "OUTDIR"] . ... However it does take up a TON of space while...
Read more >Top 8 Video Silence Removers to Remove Silence from Video
Your browser can't play this video. ... However, the silence remover tool in Jump Cutter might take some time, depending on the video...
Read more >Top 10 Quotes: Redskins-Titans Practice Week
"He's got to handle the progressions, the snap counts, the formations, ... he makes plays in space [and] he's a good jump cutter....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@balsoft No its a problem with Unix systems, as they fail to take filename/ foldername with space(s) as input on the terminal. Here’s the more insight into this problem: https://askubuntu.com/questions/516772/how-to-access-files-directories-with-spaces-in-the-name , Your solution will not work on the terminal, and the algorithm will fail before it even starts. Here is an example, try this:
python jumpcutter.py --input_file abc/filename with space.mp4
Output:no such file or directory
Hope that clears your doubt.Does
--input_file "filename with spaces"
not work?