H
H
h1_0ne2019-01-10 16:49:49
css
h1_0ne, 2019-01-10 16:49:49

How to get sound from the output of c# applications?

I want to get the sound that is output to the audio output and make it so that the win forms application duplicates it. How to do it?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
S
Sergey Goryachev, 2016-04-12
@webirus

https://jsfiddle.net/yam6o8a5/
The main thing is to fit the background image correctly.
Essence: to join the background image of two elements. The pseudo-element has alignment (50% 100%) in the center and bottom, and the block itself has the opposite (50% 0%) in the center and top. And then the joint will be correct.
But in general, everything is through the before pseudo-element.
PS: In such a solution, it will be possible to use a non- uniform background .

A
Alexey Nikolaev, 2016-04-12
@Heian

I would cut the white part into an image and overlay it on top of the blue part with background-size: cover (or whatever value you want). Since the circle must also have a background, and continue in the bottom block, this is the most cross-browser solution.

C
Cyber_bober, 2016-04-12
@Cyber_bober

And ask

.line{
height:50px;
width:100%;
background:#000;
}

.circle{
width:80px;
height:80px;
position:absolute;
left:50%;
margin-left:-40px;
bottom:10px;
background:#000;
}

Or is there some specific task? sorry, no time for fiddle, I'm going to bed)

P
Peter, 2019-01-10
@petermzg

WASAPI and example here

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question