HomeTechnologyTech SolutionHow to download BlueSky in-app media player

BlueSky update 1.61 is here. While the app is still in beta state, the constant addition of new features and upgrades has piqued the interest of potential users. One such feature that was introduced is the in-app video media player. So how can you download the in-app media player on BlueSky and play the embedded music on it? We’ll guide you through the process, let’s get started.

How to download BlueSky in-app media player

How to download BlueSky in-app media player

Bluesky’s built-in video and music player supports YouTube, SoundCloud, Spotify, and Twitch embedded links. You don’t need to download a standalone app to play any media in BlueSky, It is integrated into the platform. Just update the app and voila!

Twitter, also known as X, auto-plays videos in posts, unlike Bluesky, which works differently. It does not play content automatically. Rather, users have to tap and trigger it to see or hear it. Therefore, as a user you have the choice whether to interact with the audio-video posts or not.

Also read: How to browse BlueSky without login or account

What is the image upload code to create a BlueSky post?

Since Bluesky Social runs on the open-source Authenticated Transfer (AT) protocol, many programmers and developers have attempted to develop their own code and modules for uploading and posting images on the platform.

1. Provide a uint8array Set further MIME types of the image. Currently, BlueSky only supports JPG and PNG formats.

const testPng = await agent.uploadBlob(testPng, {encoding: "image/png"});

Once the image is uploaded, here’s how to create a post. Use agent.post Include the method and image in the embed field. It depends on whether you want to attach a picture, website card, or a reference to another BlueSky post.

const result = await agent.post({
  text: 'Post Text',
  reply: {
    parent: {
      uri: notif.uri,
      cid: notif.cid,
    },
    root: {
      uri: notif.uri,
      cid: notif.cid,
    },
  },
  embed: {
    images: [
      {
        image: testUpload.data.blob,
        alt: "",
      },
    ],
    $type: "app.bsky.embed.images",
  },
});

Also read: How to hide posts on bluesky

Why am I having problems uploading photos to BlueSky?

There are several reasons why you may face issues when uploading photos to BlueSky. Below are some:

  • File is too large. If the file size exceeds the limit, it will not be uploaded.
  • Image type is not compatible.
  • Bluesky version is not up to date.
  • There is a problem with internet connectivity.
  • Temporary error on platform.

now that you know How to download in-app media player on BlueSky, it’s time to enjoy the audio-visual content and wait for more features to come to the app. If you have any questions or suggestions for us, let us know in the comments section. Stay connected to TechCult for more informative blogs.

RELATED ARTICLES
- Advertisment -