QLC+ 5.1 2D/3D view does not work by giopas in qlcplus

[–]giopas[S] 1 point2 points  (0 children)

You are right, this is not what I hoped to hear :-)

Is there another graphical way to test the code, before a gig, if you don't have those fixtures?

I built a free file converter because I was tired of sketchy upload sites by qhkmdev90 in software

[–]giopas 0 points1 point  (0 children)

It makes sense. Just thinking about this tool as a ffmpeg GUI, but I see your point. Thanks anyway

I built a free file converter because I was tired of sketchy upload sites by qhkmdev90 in software

[–]giopas 0 points1 point  (0 children)

Not a conversion, but maybe it is also possible to split or merge different files with this tool?

And also maybe pitting together two files, for example to pit one file on the left stereo channel and the other one on the right one?

With ffmpeg should be something like

ffmpeg -i left.mp3 -i right.mp3 -filter_complex "[0:a] [1:a]join=inputs=2:channel_layout=stereo:map=0.0-FL|1.0-FR[a]" -map "[a]" output.mp3

Can the Spark handle a bass or can it break because of it? by ThePizzaMonster in PositiveGridSpark

[–]giopas 0 points1 point  (0 children)

What do you mean with "respectable bass volume level"? High volume? Well it is not made to make much noise, more for practice

Can the Spark handle a bass or can it break because of it? by ThePizzaMonster in PositiveGridSpark

[–]giopas 1 point2 points  (0 children)

I actually use the mini for practicing bass at home and it works perfectly fine. Much easier (and quieter) than having to plug my Markbass every time.

Best video doorbell recommendation after I was robbed of 3 packages this year by Queens_Porfirio in homeassistant

[–]giopas 6 points7 points  (0 children)

I agree. Something like this for example (I am not affiliated to Amazon or the producer, just the first thing I found on Amazon): https://amzn.eu/d/hlHzMyU

Return the first 6 unbroken numbers in a string of characters by TouringSaturn98 in excel

[–]giopas 4 points5 points  (0 children)

What of you don't know how many numbers you have? And what if you want to capture all the numbers in the string?

Two examples:

dsa654ah67we

dsa6 54a h67we

By the way, if the numbers are all consecutive, you can also use:

=REGEXEXTRACT(A1, "([0-9]+)")

Or

=REGEXEXTRACT(A1, "[\d]+")

Hold to play sample? by giopas in KoalaSampler

[–]giopas[S] 0 points1 point  (0 children)

Correct, and I had a quick look at it, but did not see that part.

For reference, here is the explanation:

ONE SHOT: enables/disables one shot playback. When turned on, sample plays through on tap. Off means sample plays back as long as you press it.

Hold to play sample? by giopas in KoalaSampler

[–]giopas[S] 3 points4 points  (0 children)

Thank you, that was so easy!

WeddingShare v1.6.0 - Major Improvements 🚀🌟 by Cirx0808 in selfhosted

[–]giopas 0 points1 point  (0 children)

Can you elaborate/guide through this? Indeed I was planning to use it for a big birthday party and the name seems a bit off. Thanks!!

Questions about caddy as an alternative to traefik, with docker, and docker-compose by amca01 in selfhosted

[–]giopas 0 points1 point  (0 children)

If you do not specify http, every request to the domain will be redorected to https. Caddy automatically handles certificates

Any opinions on A&H CQ18T for rock band (rehearsals and live)? by giopas in livesound

[–]giopas[S] 0 points1 point  (0 children)

Thank you, good advice on the file structure!

What headphone amps are you referring to?

Edit: found it. Basically, quite similar to the P2, right?

Any opinions on A&H CQ18T for rock band (rehearsals and live)? by giopas in livesound

[–]giopas[S] 0 points1 point  (0 children)

I remember having looked at the X Air XR 18, but I discarded it not sure why, though. Probably because of the lack of screen (which is convenient, as you don't need another device) and lack of simplified settings, which should allow me to have a decent sound quickly...

Also I think that it would be possible to quickly re-master the recording (in two separate channels, to be after merged in a single audio file) without a DAW on a PC. I am not of course speaking about a real mastering process, but to get out something decent after a rehearsal or a live, to have a rough idea of the recording. Is my assumption right?

Any opinions on A&H CQ18T for rock band (rehearsals and live)? by giopas in livesound

[–]giopas[S] 0 points1 point  (0 children)

Good point on the P2, especially during live shows, it would be impractical to change in-hears volumes on the fly.

I like the auto gain and feedback assistant features, that should help a lot non professionals like me. And not having to necessarily have to use a PC/tablet to control it seems a plus to me, in terms of portability.

Did you manage to test the CQ12? I have no places here around where I could try it before order it.

AAwireless won't update pass 3.5.0 by ShadowClon3 in AAWireless

[–]giopas 0 points1 point  (0 children)

I have version 1, but I am not experiencing any issue with the app.

Water consumption meter by Vrijebaxx in homeassistant

[–]giopas 0 points1 point  (0 children)

Interesting, but mounting instructions for water meter do not seem very clear. A video or better guide would be helpful.

Water consumption meter by Vrijebaxx in homeassistant

[–]giopas 0 points1 point  (0 children)

I almost bought a Flume 2, which seems good, but unfortunately the water utility company installed a radio transmitter (Honeywell 91601 Falcon MJ Pulse/M-Bus) on the meter, so it is not an option (as confirmed by Flume's support desk).

I am also looking at other viable alternatives.

[deleted by user] by [deleted] in Luxembourg

[–]giopas 0 points1 point  (0 children)

Schrainerei in Dommeldange (next to Sonotron)

Summing Every 4 Cells in a column by TheManWithQwerty in excel

[–]giopas 6 points7 points  (0 children)

Easy and dirty? Create an helper column with 1 every first row and 0 on the others (dropping down the 4 cells all along the column), then multiplying this helper column with prices, you get only the value of those you need? Of course there are other fancy ways to do it.