forum

The ability to delete all videos from your beatmaps

posted
Total Posts
6
This is a feature request. Feature requests can be voted up by supporters.
Current Priority: +0
Topic Starter
PancakeGD
For all players that 100% dim the background the videos are pretty much useless. And they can take a lot of data on your computer without the need to be there. Can a feature that will automatically delete all videos be added? Yeah I know you can do it by yourself but when you have loads of beatmaps, believe me it's so boring...
Kondou-Shinichi
if you really say like that we should also be able to delete storyboard because we play 100% dim?
maybe we should be able to delete custom hitsounds because people don't use custom hitsound all the time?

also really, i dont see anyone care enough to use that function
abraker
Vuelo Eluko
Search "kind:=video" in your Songs folder select all delete
dont need a silly program for this
Nitrous
Just use a batch script...
This prompts you your song directory (<osu installation directory>/osu!/Songs) then deletes all ".mp4" and ".flv" files in your song folder. Please use with caution.
save this in notepad as a ".bat"
@echo off
set /p UserInputPath=osu! song directory:
cd /D %UserInputPath%

set /P choice=Are you sure you want to delete videos in %UserInputPath% [Y/N]?
if /I "%choice%" EQU "Y" goto :Yes
if /I "%choice%" EQU "N" goto :No

:Yes
for /R %%f in (*.mp4 *.flv) do (
echo Deleting %%~nxf
del "%%f"
)
echo Successfully deleted video files.
pause
exit

:No
echo Canceled deletion.
pause
exit
Tanomoshii Nekojou

Nitrous wrote:

Just use a batch script...
This prompts you your song directory (<osu installation directory>/osu!/Songs) then deletes all ".mp4" and ".flv" files in your song folder. Please use with caution.
save this in notepad as a ".bat"
@echo off
set /p UserInputPath=osu! song directory:
cd /D %UserInputPath%

set /P choice=Are you sure you want to delete videos in %UserInputPath% [Y/N]?
if /I "%choice%" EQU "Y" goto :Yes
if /I "%choice%" EQU "N" goto :No

:Yes
for /R %%f in (*.mp4 *.flv) do (
echo Deleting %%~nxf
del "%%f"
)
echo Successfully deleted video files.
pause
exit

:No
echo Canceled deletion.
pause
exit
wow. are you a CMD god?! (just kidding lol)
Please sign in to reply.

New reply