We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Audio does not play at all on the snap version of codium. It plays normally on the flathub version.
Please confirm that this problem is VSCodium-specific
Please confirm that the issue/resolution isn't already documented
To Reproduce Just open some music file e.g. .mp3, .ogg in the IDE and click play in the widget.
Alternatively, open the developer tools and paste this in the console to play a beep:
const audioContext = new AudioContext(); const oscillator = audioContext.createOscillator(); oscillator.type = 'sine'; oscillator.frequency.value = 440; oscillator.connect(audioContext.destination); oscillator.start(); setTimeout(() => { oscillator.stop(); }, 1000);
Expected behavior You get audio normally (music or the beep).
Desktop (please complete the following information):
--classic
Additional context
$ snap connections codium # shows nothing $ snap info codium name: codium summary: Code editing. Redefined. publisher: VSCodium store-url: https://snapcraft.io/codium contact: https://github.com/VSCodium/vscodium/issues license: unset description: | Binary releases of Visual Studio Code without branding/telemetry/licensing commands: - codium - codium.url-handler snap-id: lIZWXTqmo6LFSts5Cgk2VPlNwtysZAeH tracking: latest/stable refresh-date: 9 days ago, at 14:21 -03 channels: latest/stable: 1.96.2.24355 2024-12-21 (436) 321MB classic latest/candidate: ^ latest/beta: ^ latest/edge: 1.95.3.24321 2024-11-16 (428) 320MB classic installed: 1.96.2.24355 (436) 321MB classic
The text was updated successfully, but these errors were encountered:
I thinks it's a permission issue.
Have you tried snap connect codium:audio-playback?
snap connect codium:audio-playback
It seems like it would need the following in the snapcraft.yaml:
snapcraft.yaml
apps: codium: plugs: - audio-playback
Sorry, something went wrong.
I think I can't even try it without the changes in snapcraft, unless there's another way?
$ sudo snap connect codium:audio-playback error: snap "codium" has no plug named "audio-playback"
No branches or pull requests
Describe the bug
Audio does not play at all on the snap version of codium. It plays normally on the flathub version.
Please confirm that this problem is VSCodium-specific
Please confirm that the issue/resolution isn't already documented
To Reproduce
Just open some music file e.g. .mp3, .ogg in the IDE and click play in the widget.
Alternatively, open the developer tools and paste this in the console to play a beep:
Expected behavior
You get audio normally (music or the beep).
Desktop (please complete the following information):
--classic
Additional context
The text was updated successfully, but these errors were encountered: