pe1uca

joined 1 year ago
[–] [email protected] 12 points 1 month ago (1 children)

I would if I'd be able to run my own models, it'd be better than having to connect to my server.
But AFAIK these features won't be available to all developers, so I'm guessing only Google apps will be able to properly use the potential of the phone.

[–] [email protected] 1 points 1 month ago (1 children)

Nice, that's mostly what I need!
The only thing missing now are the parameters needed to launch with the correct workout

[–] [email protected] 3 points 1 month ago

I don't know why it needs internet access and why the first thing it tries to do is connect to an IP TV site, and because it can't it crashes.
Can't trust that, hehe

[–] [email protected] 7 points 1 month ago

I don't think RSS is suited for getting more than just the latest entries in a feed.
What you're looking for is handled by the API which includes pagination.

[–] [email protected] 6 points 1 month ago

I wonder how this is going to work with comments turned off, I mean since I guess these notes will be public and maybe users are going to use them as some sort of comment section.

[–] [email protected] 1 points 2 months ago

It depends what you need to configure.
I'm using this library to move around the camera https://github.com/JurajNyiri/pytapo
For anything else, AFAIK, yeah, you'd need to re-enable internet access.

[–] [email protected] 8 points 2 months ago

I'm not completely sure I understand what you want to do, I can share some tips.

With FreshRSS you can get the RSS feed of a youtube channel and receive notifications, but YT only gives you the latests 15 or 20 videos, so you won't get older videos, only newer ones.
From this URL https://www.youtube.com/@rossmanngroup you need to transform it to something like this https://www.youtube.com/feeds/videos.xml?channel_id=UCl2mFZoRqjw_ELax4Yisf6w
You can automate it with an extension in FreshRSS.

Or if you want you can use tubearchivist which will process the channel and download the videos to process them and index them.

[–] [email protected] 31 points 2 months ago (1 children)

I love playing Dwar Fortress, I've spent hours and hours in there.
The game is free from the developera site, the download is only 15MB.
If you want to support them you can buy it in steam, the listed requirements is 500MB of storage, I assume since this version has a tile set.

I've also put so far 400 hours in oxygen not included, I think it uses around 2GB of storage.

And to me, any monster hunter game its worth its price, I've bought each game and played it for minimum 200 hours each, I think I reached 500 in on of them.
Tho the newer ones are pretty heavy for their respective platforms. Also triple-A game price.

[–] [email protected] 6 points 2 months ago

NFC payments with Google wallet, in theory if your bank provides the service in their app, you could still use this kind of payment, haven't tried it tho.
Also I only found a developer for which their games don't work, it's the developer of guardian tales.

Aside from that, with sandboxed play services there hasn't been any difference since I migrated to GOS.

[–] [email protected] 9 points 2 months ago (2 children)

Text to speech is what piper is doing.
What I'm looking for is called voice changer since I want to change a voice which already read something.

That's exactly what I want: "the thing in the Darth Vader halloween masks" but for linux, preferably via CLI to ingest audio files and be able to configure it to change the voice as I want, not only Darth Vader.

[–] [email protected] 2 points 2 months ago (2 children)

I don't want to manage piper voices, I can handle that directly in my file system as I only have a few.
The issue is none of the ones I've found are good for me, so what I need is something to change the voice once it has been generated by piper.

[–] [email protected] 3 points 2 months ago (1 children)

I haven't completely looked into creating a model for piper, but just having to deal with a dataset is not something I look forward to, like gathering the data and all of what this implies.

So, I'm thinking it's easier to take an existing model and make adjustments to fit a bit better on what I would like to hear constantly.

8
submitted 10 months ago* (last edited 10 months ago) by [email protected] to c/[email protected]
 

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 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 

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.

 

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.

 

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.

 

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?

 

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 ?

 

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.

 

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.

 

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?

 

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?

 

In an API I have there's a requirement to use an authentication method other than OAuth2 or any kind of token generation which requires making an extra HTTP call.

With this in mind there's this https://www.xml.com/pub/a/2003/12/17/dive.html
I've only stored passwords as hashes and used functions like password_verify to know the user sent the proper credentials without actually knowing the password stored in DB.
WSSE requires to encrypt with SHA1 the credentials being sent, which means the API needs to retrieve the password in plain text to recreate the digest and compare it to the one sent by the user.
So, how should I be storing this password if the code needs it to recreate the hash?
Should I have something like a master password and store them encrypted instead of hashed?


Most of the information I've found about WSSE is very very old, and some implementations have it marked as deprecated, do you know any other type of standard authentication where the user can generate the token instead of having to make an extra HTTP call?

 

Is normal soap all I need?

Recently I read rinsing the chicken usually spreads more the bacteria we're trying to kill by cooking it, and I've been doing this in the sink.

So I'm wondering if even without rinsing the chicken the knives, cutting boards, even just my hands touching the raw chicken could be also spreading bacteria after washing them with only soap.

view more: ‹ prev next ›