home · login to get plonkin'

hi kasey

@dreary.dev · 19d ago · python · 67 loc · raw · 0 comments

1import atproto2import requests3import os4from PIL import Image56def upload_voice_to_bluesky(handle, password, voice_clip_path, image_path="generic_image.png"):7    """8    Uploads a voice clip to Bluesky as an mp4 with a generic image.910    Args:11        handle: Your Bluesky handle (e.g., molly.bsky.social).12        password: Your Bluesky app password.13        voice_clip_path: Path to your voice clip (mp3, wav, etc.).14        image_path: Path to a generic image (png, jpg).15    """16    try:17        # Create a Bluesky client18        client = atproto.Client()19        client.login(handle, password)2021        # Create a generic image if one doesn't exist22        if not os.path.exists(image_path):23            img = Image.new('RGB', (100, 100), color=(73, 109, 137))24            img.save(image_path)2526        # Upload the image27        with open(image_path, "rb") as image_file:28            upload_image_result = client.upload_blob(image_file.read())2930        # Convert the audio to an mp4 with the image31        mp4_path = "voice_with_image.mp4"32        os.system(f"ffmpeg -loop 1 -i {image_path} -i {voice_clip_path} -c:v libx264 -tune stillimage -c:a aac -b:a 192k -shortest {mp4_path}")3334        # Upload the mp435        with open(mp4_path, "rb") as mp4_file:36            upload_video_result = client.upload_blob(mp4_file.read())3738        # Create the post with the video39        post_text = "Here's my voice clip!"  # Or whatever you want to say!40        post = client.send_post(41            text=post_text,42            embed=atproto.models.AppBskyEmbedExternal.Main(43                 external=atproto.models.AppBskyEmbedExternal.External(44                    uri=upload_video_result.blob,45                    title="Voice Clip",46                    description="Listen to my voice!",47                    thumb=upload_image_result.blob,48                 )49            )50        )5152        print(f"Post created! {post.uri}")5354        #Clean up the temporary files55        os.remove(mp4_path)56        if not os.path.exists("generic_image.png"):57            os.remove(image_path)5859    except Exception as e:60        print(f"Error uploading voice clip: {e}")6162# Example usage (replace with your actual credentials and file paths)63handle = "yourhandle.bsky.social"64password = "your_app_password" #make sure to create an app password!65voice_clip_path = "your_voice_clip.mp3"6667upload_voice_to_bluesky(handle, password, voice_clip_path)

login to post a comment