Is there software to convert audio files to BCSTM?

SylverReZ

GBATemp's Meme Lord
Member
GBAtemp Patron
Joined
Sep 13, 2022
Messages
7,468
Trophies
3
Location
The Wired
Website
m4x1mumrez87.neocities.org
XP
21,163
Country
United Kingdom
Im getting the error "Invalid Theme BGM"
https://github.com/usagirei/3DS-Theme-Editor/issues/23

I've added a version of the audio with a loop as every theme should always have looping background audio.
Post automatically merged:

https://github.com/usagirei/3DS-Theme-Editor/issues/23

I've added a version of the audio with a loop as every theme should always have looping background audio.
Try importing either the (.WAV) or (.BCSTM) files.
 

Attachments

  • converted_3.zip
    3.7 MB · Views: 23

Tally_Andromeda

Member
OP
Newcomer
Joined
Oct 25, 2022
Messages
23
Trophies
0
Age
16
XP
74
Country
United States
https://github.com/usagirei/3DS-Theme-Editor/issues/23

I've added a version of the audio with a loop as every theme should always have looping background audio.
Post automatically merged:


Try importing either the (.WAV) or (.BCSTM) files.
Thank.
Post automatically merged:

I don't understand the issue but it still wont work.
https://github.com/usagirei/3DS-Theme-Editor/issues/23

I've added a version of the audio with a loop as every theme should always have looping background audio.
Post automatically merged:


Try importing either the (.WAV) or (.BCSTM) files.
 

Attachments

  • Screenshot 2022-10-25 9.43.25 PM.png
    Screenshot 2022-10-25 9.43.25 PM.png
    113.6 KB · Views: 15
Last edited by Tally_Andromeda,
  • Like
Reactions: SylverReZ

SylverReZ

GBATemp's Meme Lord
Member
GBAtemp Patron
Joined
Sep 13, 2022
Messages
7,468
Trophies
3
Location
The Wired
Website
m4x1mumrez87.neocities.org
XP
21,163
Country
United Kingdom
Thank.
Post automatically merged:

I don't understand the issue but it still wont work.
Very strange. :unsure: It's been a very long time since I've known on how to do this.
This should hopefully work now.
Post automatically merged:

Very strange. :unsure: It's been a very long time since I've known on how to do this.
This should hopefully work now.
Tell me if it works or not.
 

Attachments

  • fixed conversion.zip
    2.9 MB · Views: 22
  • Love
Reactions: Maximumbeans

Tally_Andromeda

Member
OP
Newcomer
Joined
Oct 25, 2022
Messages
23
Trophies
0
Age
16
XP
74
Country
United States
Very strange. :unsure: It's been a very long time since I've known on how to do this.
This should hopefully work now.
Post automatically merged:


Tell me if it works or not.
Finally it worked thank you so much for all your effort and trouble to help me!
Post automatically merged:

Finally it worked thank you so much for all your effort and trouble to help me!
sounds funny so i think it makes it funnier
Post automatically merged:

Finally it worked thank you so much for all your effort and trouble to help me!
Post automatically merged:


sounds funny so i think it makes it funnier
this is what I did so i dont have to put it on it for real so I can just scan the QR code and put it on that way https://themeplaza.art/item/53260
so you can hear it in full glory
 
  • Like
Reactions: SylverReZ

IC_

GBAtemp's ???
Member
Joined
Aug 24, 2017
Messages
1,572
Trophies
1
Location
The Forest
XP
5,516
Country
Antarctica
Is there a file converter anyone can refer me to for Linux Debian Bullseye or something that could run on that? If not can someone convert it for me and send it to me on Discord? Tally Andromeda#0021
openrevolution can convert WAV files to BCSTM and runs natively on Linux, if you'd need to convert one again.
 
  • Love
Reactions: SylverReZ

SylverReZ

GBATemp's Meme Lord
Member
GBAtemp Patron
Joined
Sep 13, 2022
Messages
7,468
Trophies
3
Location
The Wired
Website
m4x1mumrez87.neocities.org
XP
21,163
Country
United Kingdom
Can I install it onto a Debian based operating system because I don't know how arch works
You should have no problems of getting it to compile and run on Debian-based distros. I was able to get it to work alright with Linux Mint.
 
  • Like
Reactions: IC_

Tally_Andromeda

Member
OP
Newcomer
Joined
Oct 25, 2022
Messages
23
Trophies
0
Age
16
XP
74
Country
United States
You should have no problems of getting it to compile and run on Debian-based distros. I was able to get it to work alright with Linux Mint.
Mint is based off of ubuntu which is based off debian but im kinda not exactly knowledgable of Linux anything so im a bit stupid when it comes to linux
 
  • Like
Reactions: SylverReZ

IC_

GBAtemp's ???
Member
Joined
Aug 24, 2017
Messages
1,572
Trophies
1
Location
The Forest
XP
5,516
Country
Antarctica
openrevolution can convert WAV files to BCSTM and runs natively on Linux, if you'd need to convert one again.
Instructions for Debian-based distributions:

- Open a terminal in your home directory or another directory you can store the programs in.
- Install RtAudio if you wish to use the brstm_rt player. Otherwise, skip this step.
Code:
sudo apt install librtaudio-dev
- Run these commands:
Code:
git clone https://github.com/ic-scm/openrevolution
cd openrevolution
./build.sh
- If you get an error about the g++ command not being found, run this command to install the C++ development tools, then run ./build.sh again:
Code:
sudo apt install g++
./build.sh
- Run the brstm_rt and brstm_converter programs, which will show you how to use them.
Code:
./brstm_rt
./brstm_converter

Note that you will always have to execute the programs with "./" and while being in the cloned openrevolution directory. If you wish for them to be available globally, you can copy the executables to /usr/bin or add the cloned openrevolution directory to your shell's PATH.
 
  • Love
Reactions: SylverReZ

Tally_Andromeda

Member
OP
Newcomer
Joined
Oct 25, 2022
Messages
23
Trophies
0
Age
16
XP
74
Country
United States
Instructions for Debian-based distributions:

- Open a terminal in your home directory or another directory you can store the programs in.
- Install RtAudio if you wish to use the brstm_rt player. Otherwise, skip this step.
Code:
sudo apt install librtaudio-dev
- Run these commands:
Code:
git clone https://github.com/ic-scm/openrevolution
cd openrevolution
./build.sh
- If you get an error about the g++ command not being found, run this command to install the C++ development tools, then run ./build.sh again:
Code:
sudo apt install g++
./build.sh
- Run the brstm_rt and brstm_converter programs, which will show you how to use them.
Code:
./brstm_rt
./brstm_converter

Note that you will always have to execute the programs with "./" and while being in the cloned openrevolution directory. If you wish for them to be available globally, you can copy the executables to /usr/bin or add the cloned openrevolution directory to your shell's PATH.
I installed it but I cant seem to run it because it says it doesnt exist like there is no such file or directory
Post automatically merged:

except for converter
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Xdqwerty @ Xdqwerty:
    @BigOnYa, did you get drunk?
  • BigOnYa @ BigOnYa:
    No I don't drink much when i goto bar, cause I driving, or if/when I do, ill take a uber/cab home. But I'm working on it now tho I'm home, beer n whiskey shots today.
  • K3Nv2 @ K3Nv2:
    He's afraid he might wake up next to ancientboi the next day
    +1
  • BigOnYa @ BigOnYa:
    What a "Scared Straight" moment that would be.
  • BigOnYa @ BigOnYa:
    A friend give me a $35 cigar, and pssf, just as good as a $5 one. But of course gonna have to tell him it was awesome.
  • Psionic Roshambo @ Psionic Roshambo:
    What makes a good Cuban rum soaked cigar is a nice cosmopolitan to go with it.
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Used to do that every time I went to Miami on business
  • Psionic Roshambo @ Psionic Roshambo:
    There was this little bar I would stop in have that combo and watch the beach
    +1
  • BigOnYa @ BigOnYa:
    I've never met a girl named cosmopolitan, but cool. And where do you insert the cigar? Mr clinton
  • Psionic Roshambo @ Psionic Roshambo:
    Slightly more than 35 dollars lol but I was making thousands on a job.
  • Psionic Roshambo @ Psionic Roshambo:
    Cosmopolitan is just vodka and cranberry juice lol
  • Psionic Roshambo @ Psionic Roshambo:
    I'm a martini glass
  • K3Nv2 @ K3Nv2:
    My dental assistant is Cuban I'm gonna have to him for cigars and sandwiches now
    +1
  • BigOnYa @ BigOnYa:
    Yea wish I could get Cubans cheap, they are ridiculous priced up here. But they are hard workers.
  • Psionic Roshambo @ Psionic Roshambo:
    I think I was paying like 75 back in the early 90s
  • Psionic Roshambo @ Psionic Roshambo:
    Rolled on the thighs of virgins if the stories are to be believed
  • K3Nv2 @ K3Nv2:
    I don't think we belive any of your stories
  • Psionic Roshambo @ Psionic Roshambo:
    That's honestly for the best lol
  • BigOnYa @ BigOnYa:
    I'd read his autobiography.
  • K3Nv2 @ K3Nv2:
    "If I may have done it."
  • Psionic Roshambo @ Psionic Roshambo:
    I'm deliberately vague about some of the details sure it's been 30 years but some crimes don't have limitations
  • K3Nv2 @ K3Nv2:
    Psis sex life is Dubai
    FB-IMG-1717887564361.jpg
  • BigOnYa @ BigOnYa:
    Or I picture its like quagmire from family guy, gigity.
    BigOnYa @ BigOnYa: Or I picture its like quagmire from family guy, gigity.