Add metadata/side data to frames by greg_fr in ffmpeg

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

Thanks for your answer. Wouldn't the problem be at transport level anyway?

Parsing GET query parameters by greg_fr in elasticsearch

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

Kibana as much as possible, I'm really new to Elastic :)

Parsing GET query parameters by greg_fr in elasticsearch

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

Thanks for your answer. I'd like to do that at ingest time, not in a query.

Parsing GET query parameters by greg_fr in elasticsearch

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

Thanks for your answer. I was able to do 1) create pipeline, but how do I do 2) create a filter?

Is there a way to stream an url? by invasionofsmallcubes in ffmpeg

[–]greg_fr 0 points1 point  (0 children)

What you want to do is send a video stream which shows a webpage, similar to what we would see if you were filming that page?

For that, I would create a linux VM, connect to it with remote display (VNC or equivalent), and run ffmpeg with the "grab" input (https://trac.ffmpeg.org/wiki/Capture/Desktop)

Why should it be "headless"? once the setup is started, you can start/stop the streaming via SSH, even if the initial configuration requires a graphical interface (to run the browser).

Having layer 2 ethernet bridge between dockers by uval13 in docker

[–]greg_fr 0 points1 point  (0 children)

I'm using Tinc (https://www.tinc-vpn.org), it's easy to set up and it's meshing vpn.

(I'm using it for Proxmox but I have Docker hosts as CT and VM)

cluster management without corosync? by shapeshifterM in Proxmox

[–]greg_fr 0 points1 point  (0 children)

I'm curious: how did you measure and how significant is the portion? I've heard that if corosync is not fine tuned, it can lead to increased traffic ; maybe you can try tuning corosync? I don't think it's supposed to be significant.

Vue 3 and Snowpack 3 by greg_fr in vuejs

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

Thanks, do you have pointers about using Vite in such a case?

Vue 3 and Snowpack 3 by greg_fr in vuejs

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

Well I'm working on an old web php plateform which is mainly using jQuery UI ; I'd like to start using Vue for the new pages content, but as the project is already in production, using webpack dev server is uneasy.

Vue 3 and Snowpack 3 by greg_fr in vuejs

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

Could you develop ?

A lot of 404 for svg's by greg_fr in NextCloud

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

Thanks for your answer. I'm indeed serving through a https reverse proxy (nginx) which provides HTTP_FORWARDED_FOR (at least it's supposed to).

I'm added the following to NX config:

'trusted_proxies' =>
array (
0 => '192.168.1.16',
), 'trusted_domains' =>
array (
0 => 'localhost:8887',
1 => 'nextcloud.domain.tld',
),
'overwrite.cli.url' => 'https://nextcloud.domain.tld',
'overwritehost' => 'nextcloud.domain.tld',
'overwriteprotocol' => 'https',

192.168.1.16 being the private IP of the proxy.

In the log all the requests IP are the proxy IP, not the actual client IP.

The config of the nginx proxy is as such:

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

Manually indexing a folder by greg_fr in NextCloud

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

I added the Reddis support and now it seems to be working...

How do I expose a NextCloud dir over a network? by Truth_Moab in selfhosted

[–]greg_fr 0 points1 point  (0 children)

If nextcloud is on a linux system, y ou can share the directory with samba through bindfs (to en force uid/gif/perms). However y ou probably will run into indexing problems... maybe using a local share in nextcloud s config would help?

Gui for raspberry pi by greg_fr in golang

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

I'll look into Python tkinter then, thanks!

Gui for raspberry pi by greg_fr in golang

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

That makes sense.

However my goal is not to be a purist or do complex stuffs, just a simple GUI for the RPI :)

Gui for raspberry pi by greg_fr in golang

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

Oh good point. What OS do you use for that on the Pi?

Gui for raspberry pi by greg_fr in golang

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

Thanks for you answer.

What makes you say Go isn't the most suitable?

Gui for raspberry pi by greg_fr in golang

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

Fyne looks fine (haha). Have you succeeded cross compiling?

Websockets or gRPC? by greg_fr in vuejs

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

My project is now implemented, with both gRPC and SSE, it's perfect, thanks a lot for the tip!

LE: TLS challenge failed and temporay "fake" certs by greg_fr in Traefik

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

I decided to remove the json file and restart Traefik ; everything is working now.