Lost-MSth / Arcaea-server

一个微型的 Arcaea 本地服务器 A small local server for Arcaea
MIT License
371 stars 52 forks source link

Pack is not downloading #131

Closed MrTerr1riym closed 1 year ago

MrTerr1riym commented 1 year ago

Faced a problem that new pack is not installed (probably because of new video files "video_1080.mp4" & "video_720.mp4"). Help please IMG_20230928_191101

Other songs download without problems

server 2.11.2.6 Arcaea 5.0.1

Lost-MSth commented 1 year ago

I know very little about this issue now. No data to test.

So should the video be downloaded? If yes, you can temporarily delete the songlist file in server's songs folder, and put the video_1080.mp4 and video_720.mp4 file in the arghena folder. Also you need to change some code in line 300 of core/download.py to ('video.mp4', 'video_audio.ogg', 'video_720.mp4', 'video_1080.mp4').

I am not sure whether it will work or not.

MrTerr1riym commented 1 year ago

I deleted songlist and modified the file "download.py" Line 30

FILE_NAMES = ['0.aff', '1.aff', '2.aff', '3.aff',
              'base.ogg', '3.ogg', 'video.mp4', 'video_audio.ogg', 'video_720.mp4', 'video_1080.mp4']

And line 300

        elif i in ('video.mp4', 'video_audio.ogg', 'video_720.mp4', 'video_1080.mp4'):

That helped, thank you