[-] pe1uca@lemmy.pe1uca.dev 19 points 6 months ago

Well, that's what has always been mentioned, defederated from them, AFAIK there's no way of blocking it completely from the fediverse, so if your instance's admin wants they can decide to not block them and you can interact with meta.

If your instance defederates and you want to still see their activity then you can choose an instance which is still federated with them.

7

What's your recommendation for a selfhosted services to stream some private videos from S3 compatible service (vultr)?

I was thinking a private peertube instance could work, but it requires the S3 files to be public and allow all origins, so I don't like that idea.

The other one was to use rclone mount to have it as another block storage, but I don't know what are the cons of this, or if it's possible to use it with this kind of services.

This won't be for my camera videos (already have immich) nor for series/movies (jellyfin). It'll be for random videos from youtube, or twitch which I want to hoard.

(Also if you have a recommendation for cheap online storage for this it'll be appreciated, Vultr's is $0.006/GB)

11
submitted 7 months ago by pe1uca@lemmy.pe1uca.dev to c/pcgaming@lemmy.ca

I've been looking for an all mesh chair since I tend to run hot so every chair I use ends up making me sweat.

There's this one Naz President Full-Back Mesh but I can't find any reviews for it.

There are also these two in amazon Razzor Ergonomic Mesh Office Chair and FelixKing Ergonomic Desk Chair but I've been reading mixed reviews (as well as any other chair in amazon)

So, do you guys have any budget all mesh chair recommendation? Or maybe a chair which doesn't heat up so much or cools down quickly?

(I currently have a gaming chair... worst purchase I've ever made for my back)

11
submitted 7 months ago* (last edited 7 months ago) by pe1uca@lemmy.pe1uca.dev to c/selfhosted@lemmy.world

I want to have something similar to a google's nest hub to display different type of information, like weather, bus times, my own services information, photo gallery, etc.

It's not a problem if I have to manually write plugins for custom integrations.
It'll be better if it's meant to be shown in a web browser.

I remember there were some related to a screen for a digital mirror, or a kiosk screen, but I can't find a good one to selfhost and extends to my needs.

The ones I've found are focused on showing stats of deployed services and quick links to them.

8
submitted 7 months ago* (last edited 7 months ago) by pe1uca@lemmy.pe1uca.dev to c/quebec@lemmy.ca

Je jusqu'ai vu un rebais de 40% chez bureau en gros pour une chaise, mais je suis pas sure si cette rebais est suffisamment bon par comparaison à toute autre que pourrait être ca jour.

Vous vous y attendiez?
Ou je fais trop confiance à cette journée?

(J'ai pas l'habitude des rebais de ce journée, alor je sais pas à que m'attendre)

17
submitted 8 months ago* (last edited 8 months ago) by pe1uca@lemmy.pe1uca.dev to c/programming@programming.dev

cross-posted from: https://lemmy.pe1uca.dev/post/317214

I'm cross-posting it here to check if you guys know or if you have an idea which would be the best community to ask.

I'm trying to add the audio of a video to another one so I can have multiple tracks for my media service (Jellyfin).

The issue is the new track doesn't have any sound, it's just there with the proper metadata but it's just mute.
I tried playing it with Jellyfin and with VLC.
The original audio tracks play fine.

This is my command.

ffmpeg -i .\3.english.mkv -i .\3.french.mp4 -c copy -map 0 -map 1:a:0 -y .\3.mix.mkv

I also already tried adding -c:a:1 ac3 since this is the format of the audio in the mkv file.

The data of the original audio of the mkv is

Stream #0:1(eng): Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s
    Metadata:
      title           : English
      BPS-eng         : 384000
      DURATION-eng    : 02:21:42.176000000
      NUMBER_OF_FRAMES-eng: 265693
      NUMBER_OF_BYTES-eng: 408104448
      _STATISTICS_WRITING_APP-eng: mkvmerge v25.0.0 ('Prog Noir') 64-bit
      _STATISTICS_WRITING_DATE_UTC-eng: 2018-07-23 09:18:58
      _STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES

The data of the file I'm trying to inject from the mp4 is

Stream #0:1[0x2](fre): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s (default)
    Metadata:
      creation_time   : 2014-04-17T18:14:55.000000Z
      handler_name    : movie.track_2.aac
      vendor_id       : [0][0][0][0]

do you guys have any idea of what might be the issue?

I also tried extracting the audio to a file and the aac file works fine, it's just when adding it to the mkv which doesn't work.

1
submitted 8 months ago by pe1uca@lemmy.pe1uca.dev to c/ffmpeg@lemmy.world

I'm trying to add the audio of a video to another one so I can have multiple tracks for my media service (Jellyfin).

The issue is the new track doesn't have any sound, it's just there with the proper metadata but it's just mute.
I tried playing it with Jellyfin and with VLC.
The original audio tracks play fine.

This is my command.

ffmpeg -i .\3.english.mkv -i .\3.french.mp4 -c copy -map 0 -map 1:a:0 -y .\3.mix.mkv

I also already tried adding -c:a:1 ac3 since this is the format of the audio in the mkv file.

The data of the original audio of the mkv is

Stream #0:1(eng): Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s
    Metadata:
      title           : English
      BPS-eng         : 384000
      DURATION-eng    : 02:21:42.176000000
      NUMBER_OF_FRAMES-eng: 265693
      NUMBER_OF_BYTES-eng: 408104448
      _STATISTICS_WRITING_APP-eng: mkvmerge v25.0.0 ('Prog Noir') 64-bit
      _STATISTICS_WRITING_DATE_UTC-eng: 2018-07-23 09:18:58
      _STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES

The data of the file I'm trying to inject from the mp4 is

Stream #0:1[0x2](fre): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s (default)
    Metadata:
      creation_time   : 2014-04-17T18:14:55.000000Z
      handler_name    : movie.track_2.aac
      vendor_id       : [0][0][0][0]

do you guys have any idea of what might be the issue?

I also tried extracting the audio to a file and the aac file works fine, it's just when adding it to the mkv which doesn't work.

12

I've seen a lot of people mentioning EQ bank to have the emergency save since it offers 2.5% interest.

Just recently knew about wealthsimple with 4% https://www.wealthsimple.com/en-ca/spend

So I'm wondering if you guys know any drawback on saving in wealthsimple instead of EQ.

4

Est-ce que c'est CEHI en français ? Désolé, j'ai encore besoin d'utilizer un traducteur.

La banque EQ semble être la meilleure avec 2,5 %.
Mais WS donne 4%
Alors, je me demande pourquoi il n'y a pas plus de gens qui recommandent WS et recommande toujours le QE.

Y a-t-il quelque chose que je ne vois pas dans le WS? Dans la section "X", on peut lire "Remarque : Wealthsimple n'est ni une banque ni un membre de la SADC", cela pourrait-il être la raison?

13
submitted 9 months ago by pe1uca@lemmy.pe1uca.dev to c/montreal@lemmy.ca

Je pense que J'ai un peu foiré en acceptant une augmentation de 4 % pour 2024.
J'ai lu ici les augmentations prévues pour cette année, mais l'entreprise a accepté mon offre immédiatement, ce qui me fait penser que cet article est erroné.
Maintenant, je pense que l'offre de 3,5 % pour 2025 qu'ils m'ont faite est peut-être plus élevée qu'elle ne devrait l'être.

Faut-il le rejeter maintenant et attendre l'année prochaine pour voir comment les choses se passent ? Devrais-je négocier moins ? Ou dois-je l'accepter ?

3

J'ai vu quelque part un 11,5 % mais je ne suis pas sûr

Contexte: Si je n'ai pas atteint le maximum de mon CELI, devrais-je y mettre mon argent pour les dépenses mensuelles?
Ou puis-je les conserver sur des comptes d'épargne normaux? Juste pour ne pas avoir à me soucier des droits de cotisation.

13
submitted 9 months ago by pe1uca@lemmy.pe1uca.dev to c/firefox@lemmy.ml

Is there any firefox extension to process SRT or WebVTT files to show subtitles in any page? Not just video streaming sites.

Context: I have some subtitle files for some podcasts, so the site is only playing audio. I'm using podverse.fm
It'll be great to have something similar to lyrics sections in some music players to follow along the audio while reading.

[-] pe1uca@lemmy.pe1uca.dev 22 points 9 months ago

Syncthing is so great, I don't have to deal with things like a FTP server, sending files to a cloud drive, connecting via USB, or similar. I just point syncthing to the folder I want to replicate and my PC has it immediately and receives new files as soon as I connect to a WiFi (because of my configuration), and then at the PC I can easily backup the files.

5
submitted 9 months ago by pe1uca@lemmy.pe1uca.dev to c/quebec@lemmy.ca

cross-posted from: https://lemmy.pe1uca.dev/post/268601

Je l'affiche également ici au cas où quelqu'un connaîtrait une école en ligne même si je suis à Montréal.

J'ai étudié à Dawson, mais apparemment ils ont récemment changé le programme et les 6 niveaux qu'ils ont ne couvrent plus la moitié de ce qu'ils couvraient auparavant.

Quelle est une bonne école qui offre des cours de français?
Je ne sais pas si les résultats de Google auront le même problème et si je finirai par payer pour un cours mal conçu.
Si elle propose un cours en ligne, ce serait mieux.

Ou pour ceux qui connaissent les nouveaux cours de Dawson, sont-ils suffisants pour passer les examens de français au Québec?

[-] pe1uca@lemmy.pe1uca.dev 25 points 9 months ago

if a player deletes and reinstalls a game, that counts for two installs and two charges. Ditto for players installing a single game on two devices.

Wow, I'm without words, I can only imagine the deals to be ended on games in places like Netflix or the Google play pass

[-] pe1uca@lemmy.pe1uca.dev 20 points 11 months ago

I made this Firefox extension to always open reddit links in the wayback machine.
https://addons.mozilla.org/en-CA/firefox/addon/reddit-to-wayback-machine/

[-] pe1uca@lemmy.pe1uca.dev 21 points 1 year ago

I just installed homepage https://gethomepage.dev

Haven't looked into actually extending it with custom widgets since I'd also like bus times.
I'm planning in having it in an unused tablet I have around.

[-] pe1uca@lemmy.pe1uca.dev 16 points 1 year ago

I used this one when I installed pihole and wanted to find out which app was hammering a tracking site (It was a red icon app who complained some apps are not optimized)
https://github.com/TrackerControl/tracker-control-android

Although I don't know who much info you can get about the requests from it, I only used it to find the culprit and since it was an easy decision I uninstalled it, I didn't had to check what data was being collected.

[-] pe1uca@lemmy.pe1uca.dev 17 points 1 year ago

Also your stove is last generation so the pan can only get warm but not boil.

[-] pe1uca@lemmy.pe1uca.dev 17 points 1 year ago

Same story as you, afraid of evil corporations, wanting to take more control over my data, so I changed to a pixel 7 pro with GraphenOS.

If you're wondering how buying a phone from Google helps in this you can read the answer in here https://discuss.grapheneos.org/d/2989-pixel-phone-vs-samsung-or-others

only Pixels that support alternate OS and allowing them full use/access to all the hardware security features.

[-] pe1uca@lemmy.pe1uca.dev 18 points 1 year ago

I think this is one of the pros of federation, one instance could be down but the rest of the instances can still interact with each other instead of everyone being out.

[-] pe1uca@lemmy.pe1uca.dev 23 points 1 year ago

I didn't even know about core-js until the dev complained about all the sites which use it. https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md

[-] pe1uca@lemmy.pe1uca.dev 19 points 1 year ago

So when they said the API pricing wasn't going to be anything like twitter was a fucking lie.
I'm not surprised.

[-] pe1uca@lemmy.pe1uca.dev 30 points 1 year ago

I bet you were really happy seeing that sub at that moment.

view more: ‹ prev next ›

pe1uca

joined 1 year ago
MODERATOR OF