Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

NBA Live 19 PS4 SBS/SBR

Featured Replies

  • Author
  • Localization

kli_k95, posted Sat Jul 02, 2022 3:39 am (72372)


Hello there,
this game have a SBS/SBR combination which vgmstream doesn't play for some reason, even putting the files in the same directory. Any help would be grateful because I'm looking forward to listen to the streetball music. Thanks. https://drive.google.com/drive/folders/ ... sp=sharing
  • Author
  • Localization

BloodRaynare, posted Sat Jul 02, 2022 3:55 am (72373)


Looks encrypted/compressed to me. Are you sure the files you didn't forgot to decrypt/decompress the game files first? TBH I never dealt with PS4 game files so I wouldn't know.
  • Author
  • Localization

kli_k95, posted Sat Jul 02, 2022 4:08 am (72374)


BloodRaynare wrote:
Looks encrypted/compressed to me. Are you sure the files you didn't forgot to decrypt/decompress the game files first? TBH I never dealt with PS4 game files so I wouldn't know.

That's decompressed from the game .big file. I did the same thing in PS4 version of Live 18 and worked. I dont know but maybe EA encrypted the files this time. Thanks for looking at the files anyway.
  • Author
  • Localization

kli_k95, posted Mon Jul 04, 2022 4:25 am (72425)


BloodRaynare wrote:
Looks encrypted/compressed to me. Are you sure the files you didn't forgot to decrypt/decompress the game files first? TBH I never dealt with PS4 game files so I wouldn't know.


Good news! I managed to play the files through hex editing and making the 48 00 00 0C 1B 00 BB offset (the files are EA Layer 3) and renaming it to .sps. But I have a question, could someone here make a batch/quickbms script to make the proccess of splitting the files less painful? I would be grateful really.
  • Author
  • Localization

BloodRaynare, posted Mon Jul 04, 2022 4:37 am (72426)


Can you give the screenshots of the content of the file you've modified with hex editor?
  • Author
  • Localization

kli_k95, posted Mon Jul 04, 2022 4:46 am (72427)


BloodRaynare wrote:
Can you give the screenshots of the content of the file you've modified with hex editor?


Deleted the other data and maked this the first offset and renamed it to sps and vgmstream played the file just fine. The 48 00... repeats again in another offset and just goes on.
  • Author
  • Localization

razzledazzle, posted Fri Sep 30, 2022 11:06 pm (73643)


kli_k95 wrote:
BloodRaynare wrote:
Looks encrypted/compressed to me. Are you sure the files you didn't forgot to decrypt/decompress the game files first? TBH I never dealt with PS4 game files so I wouldn't know.


Good news! I managed to play the files through hex editing and making the 48 00 00 0C 1B 00 BB offset (the files are EA Layer 3) and renaming it to .sps. But I have a question, could someone here make a batch/quickbms script to make the proccess of splitting the files less painful? I would be grateful really.

Thanks for this info! Here are two scripts that I tested with NBA Live 18 (not 19, but I'm guessing they use the same format).

The first script splits your "48 00 00 0C 1B 00 BB" hex offset to do what you want, SBS to SPS:

sbs-to-sps.bms:

Code:
#48 00 00 0C 1B 00 BB
findloc OFFSET binary "\x48\x00\x00\x0C\x1B\x00\xBB"
do
    goto OFFSET
    get DUMMY long
    findloc NEXT_OFFSET binary "\x48\x00\x00\x0C\x1B\x00\xBB" 0 ""
    if NEXT_OFFSET == ""
        get SIZE asize
    else
        math SIZE = NEXT_OFFSET
    endif
    math SIZE -= OFFSET
   string NAME p "x.sps" OFFSET
      log NAME OFFSET SIZE
    math OFFSET = NEXT_OFFSET
while NEXT_OFFSET != ""

This will create a ton of files. I don't really recommend this one.

Here's a second script I wrote that splits by the "SBle" text offset and will rename the files from .sbs to .sbr:

sbs-to-sbr.bms:

Code:
findloc OFFSET string "SBle"
do
    goto OFFSET
    get DUMMY long
    findloc NEXT_OFFSET string "SBle" 0 ""
    if NEXT_OFFSET == ""
        get SIZE asize
    else
        math SIZE = NEXT_OFFSET
    endif
    math SIZE -= OFFSET
   string NAME p "x.sbr" OFFSET
      log NAME OFFSET SIZE
    math OFFSET = NEXT_OFFSET
while NEXT_OFFSET != ""

This is better as it groups all related music files together.

However, it appears that both scripts will only play the shorter clips and not longer ones. Maybe there is another offset to use for the bigger tracks.
  • Author
  • Localization

Nick092004, posted Sat Oct 01, 2022 1:12 pm (73647)


Hello, can you write a bms command in the dat archive file in my post, if you can help, thank you very much in advance, the name of the post is reyno elemental, sounds.dat
  • Author
  • Localization

Nick092004, posted Sat Oct 01, 2022 1:14 pm (73648)


by the way, where can i download vg stream program
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.