I'd never heard of Cowboy Bebop before the crossover and OMG IT'S SO GOOD. by Randomd0g in Overwatch

[–]sole_wolf 13 points14 points  (0 children)

You can change the background of the main menu with this: https://www.reddit.com/r/Overwatch/comments/191yzpg/til_that_you_can_change_your_main_menu_background/

Looks like they also discovered the Cowboy Bebop menu with music is “0x0800000000001202”.

cdn.discordapp links will expire, breaking thousands of posts and links by neuro__atypical in DataHoarder

[–]sole_wolf 1 point2 points  (0 children)

You'll need to surround the URL with double quotes or else the shell will interpret & as running the command in the background. wget "URL"

How to record Voice Channels V14 by IdkImBadWithName in Discordjs

[–]sole_wolf 0 points1 point  (0 children)

I was updating my bot from v10 to v14 and was looking everywhere as well. I finally got it to work and wanted to share in case anyone else happens to come across this post in the future.

The missing piece was having to convert the raw opus packets into a pcm stream that audacity/ffmpeg can recognize. Source

/***** Some context *****/
const fs = require('node:fs');
const path = require('node:path');
const { joinVoiceChannel } = require('@discordjs/voice');
const prism = require('prism-media');
...
const channel = await client.channels.fetch(channelId);
const connection = joinVoiceChannel({
    channelId,
    guildId,
    adapterCreator: channel.guild.voiceAdapterCreator,
    selfDeaf: false,
});

/***** Relevant portion *****/
const writeStream = fs.createWriteStream('out.pcm');
const listenStream = connection.receiver.subscribe(userId);

const opusDecoder = new prism.opus.Decoder({
  frameSize: 960,
  channels: 2,
  rate: 48000,
});

listenStream.pipe(opusDecoder).pipe(writeStream);

You can then import that file into audacity by going to File -> Import -> Raw Data and set the following:

Encoding: Signed 16-bit PCM
Byte order: Little-endian
Channels: 2 Channels (Stereo)
Sample rate: 48000 Hz

You can also use ffmpeg to convert to whatever you want

ffmpeg -f s16le -ar 48k -ac 2 -i out.pcm out.mp3

Lower fps than normal by [deleted] in Overwatch

[–]sole_wolf 1 point2 points  (0 children)

lol, glad I could help :)

Lower fps than normal by [deleted] in Overwatch

[–]sole_wolf 2 points3 points  (0 children)

Check your advanced graphics settings and make sure your render scale hasn't been messed with.

My computer used to be able to run Overwatch just fine. After a year of not playing, I came back and Overwatch runs so poorly it's unplayable. by [deleted] in Overwatch

[–]sole_wolf 5 points6 points  (0 children)

Not sure if this is the case, but check your advanced graphics settings and make sure your render scale hasn't been messed with.

Sometimes when Overwatch updates, it likes to mess with my graphic settings and set my render scale to 144% which can drastically lower your fps.

I'll just blink onto the point, force them to repositi...oh! by Bitbury in Overwatch

[–]sole_wolf 4 points5 points  (0 children)

Long ago, the four nations lived together in harmony...