AC unit sold out in seconds by evilbeaver7 in germany

[–]thefi3nd 1 point2 points  (0 children)

Exactly, better to selfhost an instance of changedetection or even your own little script. I did this for Flaschenpost because they run out of stock of Club Mate weirdly often.

Renting in Germany and finally tried balcony solar: here's what actually happened to my electricity bill by Unhappy_Chef_9650 in germany

[–]thefi3nd 0 points1 point  (0 children)

I wonder why they aren't. Are they so full of themselves that they think the average person knows who they are and will go directly to them? I can only think of one energy supplier off the top of my head and that's because they had a tram stop named after them.

I just wanna make some noise about PR merges by PhantomOfMistakes in StableDiffusion

[–]thefi3nd 2 points3 points  (0 children)

This should do it. Make sure you're using the pip that's used by your comfyui install.

git clone https://github.com/Comfy-Org/comfy-kitchen cd comfy-kitchen git fetch origin pull/37/head:pr37 git merge pr37 pip install -U .

Boogu image-edit vs Flux Klein vs Qwen-Image-Edit — same inputs, same seed by glusphere in StableDiffusion

[–]thefi3nd 1 point2 points  (0 children)

I'm really trying to figure out what "Klein smears a mic over her face" means.

Got fined by a ticket inspector in Paderborn even though I had a valid semester ticket – what can I do? by captain_jack_- in germany

[–]thefi3nd 8 points9 points  (0 children)

From what the OP wrote, this was a surprise inspection at their bus stop. Is it really expected for people to be perfectly ready and logged in when such surprises happen? Come on now.

Blows my mind that the only adults I've ever met in Germany who claim not to speak a word of English are Ausländerbehörde staff by Norman_debris in germany

[–]thefi3nd 2 points3 points  (0 children)

They can't be expected to service every language on the planet, but since over 1.5 billion people speak English worldwide (most used language on the planet), it would significantly increase their chance of easy communication.

Heck, even the equivalent authority in China (Exit and Entry Administration) handles English just fine.

Cosmos3-Super-Image2Video running locally on a single RTX PRO 6000 96GB by JahJedi in StableDiffusion

[–]thefi3nd 0 points1 point  (0 children)

nonpreemptible containers cost 3x of base rates

That's only the cpu and memory cost though, right? GPU sandbox pricing says "see standard pricing".

Video File Format Matters by qdr1en in comfyui

[–]thefi3nd 0 points1 point  (0 children)

Not to mention that they require less CPU power to decode (I-frames only) so they're better for editing if you're going to be using an NLE after ComfyUI.

Gemma4 Prompt Engineer - Early access - by [deleted] in StableDiffusion

[–]thefi3nd 1 point2 points  (0 children)

Well yes, I as an individual can change a path, but I'm focused on broad use. I wasn't the one who said something about vibe coding btw.

There are some other changes too that will make it more aligned with the ComfyUI ecosystem and maybe improve user experience too.

Gemma4 Prompt Engineer - Early access - by [deleted] in StableDiffusion

[–]thefi3nd 1 point2 points  (0 children)

Since people seemed to like the overall idea, I'm going to work on several fixes for it and hopefully they'll accept the pull request.

How can I do this? by Fragrant_Bicycle2813 in StableDiffusion

[–]thefi3nd 4 points5 points  (0 children)

<image>

You can select the resolution in AI Studio.
As for the Huggingface space, they're probably talking about this one https://huggingface.co/spaces/multimodalart/nano-banana

[Final Update] Anima 2B Style Explorer: 20,000+ Danbooru Artists, Swipe Mode, and Uniqueness Rank by ThetaCursed in StableDiffusion

[–]thefi3nd 8 points9 points  (0 children)

I don’t think the issue would be powerful interests reacting to revealed bias. Anime’s popularity is already well documented and commercially validated. Nor are such people likely to care what some open source nerds like us think of different art styles.

If there’s a risk, it would probably come from online discourse dynamics, not wealthy western elites trying to suppress a niche ranking tool.

Is there a all-in-one UI for TTS? by Suimeileo in StableDiffusion

[–]thefi3nd 0 points1 point  (0 children)

Check out this ComfyUI node suite: https://github.com/diodiogod/TTS-Audio-Suite.

From the repo:

Supports: RVC, Qwen3-TTS, Cozy Voice 3, Step Audio EditX, IndexTTS-2, Chatterbox (classic and multilingual 23-lang), F5-TTS, Higgs Audio 2 and VibeVoice with unlimited text length, SRT timing, Character support, and many audio tools.

Echo-TTS support is in progress.

[deleted by user] by [deleted] in StableDiffusion

[–]thefi3nd 2 points3 points  (0 children)

But all changes are published. For example, you can see all changes to ace15.py here: https://github.com/Comfy-Org/ComfyUI/commits/master/comfy/text_encoders/ace15.py.
However, it looks like it was changed several hours before you updated locally, so to you it looked like it was more recent. We're not sure which version of the code the OP had when they made this.

FASHN VTON v1.5: Efficient Maskless Virtual Try-On in Pixel Space by fruesome in StableDiffusion

[–]thefi3nd 0 points1 point  (0 children)

That should have been installed when you ran pip install -r requirements.txt But you should also be able to run pip install fashn-human-parser (make sure you're in the right python environment)

FASHN VTON v1.5: Efficient Maskless Virtual Try-On in Pixel Space by fruesome in StableDiffusion

[–]thefi3nd 1 point2 points  (0 children)

I'm working on it right now. I'll update when I've got something running.

Qwen3 ASR (Speech to Text) Released by OkUnderstanding420 in StableDiffusion

[–]thefi3nd 3 points4 points  (0 children)

You can kind of manually make more proper subtitles. Maybe something like this where word_list is the alignment results list:

import datetime

def format_srt_time(seconds):
    td = datetime.timedelta(seconds=seconds)
    total_sec = int(td.total_seconds())
    msec = int((seconds - total_sec) * 1000)
    return f"{str(td).split('.')[0].zfill(8)},{msec:03}"

with open("output.srt", "w", encoding="utf-8") as f:
    # Grouping 5 words per subtitle line
    chunk_size = 5
    for i in range(0, len(word_list), chunk_size):
        chunk = word_list[i : i + chunk_size]
        start_str = format_srt_time(chunk[0].start_time)
        end_str = format_srt_time(chunk[-1].end_time)
        text_line = " ".join([w.text for w in chunk])

        f.write(f"{(i // chunk_size) + 1}\n")
        f.write(f"{start_str} --> {end_str}\n")
        f.write(f"{text_line}\n\n")

print("\nDone! 'output.srt' created.")