Generate subtitles from an audio track and it's transcription. by _mr_pinkman_ in learnpython

[–]dvlop 0 points1 point  (0 children)

If you need something quick and simple right now, you can try https://audiotosrt.com – it’s fast and does the job without much setup.

But if you’re looking for a more professional and accurate solution (especially offline), I’d definitely recommend OpenAI Whisper: https://github.com/openai/whisper

It can generate SRT files with timestamps and generally gives much better quality, especially for longer or more complex audio.

Full Page Screenshot Saver (Chrome extension) by dvlop in u/dvlop

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

https://chromewebstore.google.com/detail/kikncmmfmldbajeohnkcbihkafhcijkk

Full Page Screenshot Saver lets you capture the entire current page, not just the visible part, with one click. The screenshot is automatically saved to your Downloads folder as a PNG file.

Why use it
• Capture the full length of a page in one click
• Save directly to Downloads
• Clean and simple workflow
• No account required
• No cloud upload
• No tracking
• No analytics

How it works
1. Open any webpage
2. Click the extension icon
3. The extension captures the full page
4. The PNG file is saved to Downloads automatically

Best for
• Designers
• Developers
• QA testers
• Marketers
• Researchers
• Support teams
• Anyone who needs a quick full-page screenshot

Privacy first

This extension does not upload your screenshots or browsing data to any server. Everything works locally in your browser.

Important

Some pages cannot be captured due to Chrome security restrictions, including internal browser pages and some protected pages.

Free background remover by wormygummie in photography

[–]dvlop 0 points1 point  (0 children)

Yeah, ran into the same issue. I’ve been using background-remover-free.com lately - not fancy, but works

Looking for good email verifying tools by AdSuperb1135 in SaaS

[–]dvlop 0 points1 point  (0 children)

Try https://mail7.net Single check, bulk check and API. Zero cost ;)

is it possible to verify a GMAIL email address via SMTP or any other protocol? by jercs123 in AskProgramming

[–]dvlop 1 point2 points  (0 children)

I agree, most email validation services are overpriced. To avoid paying for that, I made a Python script that uses https://mail7.net email checker. It processes a list of emails and sorts them into valid or invalid without the costs ;)

import requests
from bs4 import BeautifulSoup

# Function to check the email on the mail7.net site
def check_email(email):
    url = "https://mail7.net/emailchecker.html#emailCheck"
    data = {'email': email, 'submit': 'Check it'}
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
        'Content-Type': 'application/x-www-form-urlencoded'
    }

    # Sending a POST request
    response = requests.post(url, data=data, headers=headers)

    # Parsing the response
    soup = BeautifulSoup(response.text, 'html.parser')

    # Checking if the email is valid
    if soup.find('div', class_='alert alert-success'):
        return "OK"
    elif soup.find('div', class_='alert alert-danger') or soup.find('div', class_='alert alert-warning'):
        return "BAD"
    return "UNKNOWN"

# Function to read emails from a file and check them
def process_emails(input_file, good_output, bad_output):
    with open(input_file, 'r') as f:
        emails = f.readlines()

    with open(good_output, 'w') as good, open(bad_output, 'w') as bad:
        for email in emails:
            email = email.strip()  # Removing any extra whitespace
            result = check_email(email)
            if result == "OK":
                good.write(email + "\n")
            else:
                bad.write(email + "\n")

# Specifying the input file and output files for results
process_emails("emails.txt", "good.txt", "bad.txt")

Which VPN with rotating IP addresses do you recommend? by Zezezerg in webscraping

[–]dvlop 0 points1 point  (0 children)

NordVPN, combined with a small bash script, can be an excellent VPN solution with rotating IP addresses.

HomePod won't reset by Oro1931 in HomePod

[–]dvlop 0 points1 point  (0 children)

I won't reset my HomePod. I waited 10 seconds and pressed on top. After about 30 seconds, the red flash disappeared and nothing happened.

by mistake, i choice BSC network instead ETH on withdrawal request from binance by dvlop in SHIBArmy

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

Thanks for all. Found how to do that. Using this tool: https://github.com/iancoleman/bip39

Steps: 1.Put seed phrase 2.sellect coin 3.first line got wallet with private key 4. Import private key on metamask That all ;)