Questions tagged [surround]

91 questions
1
vote
2 answers

How to make a 5.1 and a 7.1 surround sound file

I'm trying to make/create a 5.1 and a 7.1 surround sound file but I'm having trouble finding a way to do it. I'm using ubuntu 12.04 and I have access to octave / matlab / python. I understand how to create an audio file in octave / matlab / python…
Rick T
  • 3,349
  • 10
  • 54
  • 119
0
votes
1 answer

Vim.surround does nothing

I have installed surround.vim into ~/.vim/plugin I can select with "v", make my selection and then hit "s" or "S" followed by a single or double quote. Nothing happens (well, sometimes text is deleted, but no quoting happens) I was wondering if any…
narnie
  • 1,742
  • 1
  • 18
  • 34
0
votes
1 answer

Create a multichannel audio with Pydub

I'm trying to create an multichannel audio file with Pydub but I received an error. I know that each channels should be the exact same length, but also the frame count. I don't know how to verify if they are at the same frame count but they are at…
0
votes
1 answer

How to fix "m=audio 0 UDP/TLS/RTP/SAVPF 0" issue to enabling surround sound streaming (5.1 and 7.1 channel)

I am creating a streaming application with surround sound audio support, currently stereo is supported and streaming is working. Codec - Opus, Browser - Google Chrome When I give offer SDP to browser it return me with m=audio 0 UDP/TLS/RTP/SAVPF 0…
H Soora
  • 47
  • 5
0
votes
2 answers

Select before and after row with uuid

I have the following table, sorted by pageNumer, exerciseNumber: | uuid | pageNumber | exerciseNumber | name | |--------------------------------------|------------|----------------|------| |…
dosad
  • 151
  • 7
0
votes
0 answers

How do I define a custom snippet using VScode "Surround" extension

I'm using a VScode extension called "Surround" In the docs for this extension it shows how to define a custom snippet. What I want is really simple. I would like to add the ability to surround selected text with tags, ie <> while placing the…
Jo Momma
  • 1,126
  • 15
  • 31
0
votes
1 answer

Installing surround.vim plugin into Vim's plugins folder seems to have no effect?

I've downloaded the surround plugin (surround.vim) for Vim and installed it into the plugins folder. I know plugins work there as i've successfully installed the NERDTree and TList plugins. Once surround is installed, i start Vim and enter insert…
Gary Willoughby
  • 50,926
  • 41
  • 133
  • 199
0
votes
2 answers

vim mapping keys to surround words/lines with

I'm trying to map the keys ALT+SHIFT+W to surround the text/line with

tags. Right now I have this on my _vimrc file: map c

"

But this produces:

Some text.

What I'm doing wrong? I have to scape the…
0
votes
1 answer

Using WAVEFORMATEXTENSIBLE with WAVE_FORMAT_IEEE_FLOAT, waveOutOpen returns WAVERR_BADFORMAT

I have been using WAVEFORMATEX with WaveOut to play audio in Windows, in stereo at rates from 44.1KHz to 192KHz using WAVE_FORMAT_IEEE_FLOAT. The program is written in C++ and compiled in MinGW. This is all working…
Raptor007
  • 366
  • 3
  • 10
0
votes
1 answer

Surround tags in vim

I often want to surround a div tag with another div tag. https://github.com/tpope/vim-surround is a real help there. |
...
if the cursor is at | and I typeysat
I get
...
instead I want
Stefan Mielke
  • 388
  • 2
  • 11
0
votes
1 answer

How to create a surround effect using python by controlling the volume of speakers channels?

I have bought a soundcard: Focusrite Scarlett 4i4 3rd Gen, with 4 outputs channels. I also have 4 speakers and I will link each speaker with the soundcard. I would like to be able to set separately the volume of each speaker, with maybe a tkinter…
TrissN
  • 35
  • 8
0
votes
2 answers

Fill cell based on surrounding cells R

My initial matrix looks like the following (but my matrix is huge) A NA A A A D D B NA B C NA C A NA A B B D C A NA A A NA A D NA D D A A A C NA C C NA C structure(c("A", "A", "D", NA, NA, NA, "A", "A", "D", "A", "B", "D", "A", "B", "A", "D", "D",…
ana_gg
  • 370
  • 1
  • 9
0
votes
1 answer

I installed vim surround plugin and it's not working

I did exactly same as install instruction, and :scriptnames doesn't show surround plugin. surround command doesn't work at all. Used vim8 package manager. I followed this instruction: mkdir -p ~/.vim/pack/tpope/start cd ~/.vim/pack/tpope/start git…
0
votes
1 answer

C++ block with VIM surround plugin

I know how to use vim's surround plugin to add brackets to a c++ block as follows: before: if (condition) bla1 bla2 after: if (condition) { bla1 bla2 } But what if I want the end result to be: if (condition) { bla1 …
George B.
  • 565
  • 7
  • 19
0
votes
0 answers

How to direct realtime-synthesized sound to individual channels in multichannel audio output in Python

I need to read in variable data from sensors use those data to generate audio spit out the generated audio to individual audio output channels in real time My trouble is with item 3. Parts 1&2 have a lot in common with a guitar effects pedal, I…
Hadron
  • 1