V
V
Vladislav2019-10-21 15:08:11
Software and Internet Services
Vladislav, 2019-10-21 15:08:11

Which microphone to choose for recording conversations in the office?

Good afternoon!
There are 3 rooms 10x10
. It is necessary to record conversations of employees in these rooms.
What microphone to buy?
How many do you need?
What mixer?
The sound must be clear and of excellent quality.
Cameras work too

Answer the question

In order to leave comments, you need to log in

2 answer(s)
L
longclaps, 2018-08-11
@longclaps

#!/usr/bin/python3
from string import ascii_uppercase as A, digits as D
from random import choice

print('-'.join(map(lambda s: ''.join(choice(s) for _ in '1234'), [D, A, D, A])))

D
dollar, 2018-08-11
@dollar

Go to https://www.lua.org/cgi-bin/demo
Paste this code there:

math.randomseed(os.time())
d='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' --36
function c() x=math.random(1,36) return d:sub(x,x) end
function s() return c()..c()..c()..c() end
print(s().."-"..s().."-"..s().."-"..s())
And click "run".
Such a crutch can be written in any convenient language in 5 minutes.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question