Skip to content
View playerx's full-sized avatar
🃏
🃏
  • Jok Entertainers Inc.
  • Tbilisi, Georgia

Organizations

@jokio @ScanProduct

Block or report playerx

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
playerx/README.md

About me

I love creating online games 👾 entertaining people 🤡


My recent (hobby) projects:



Pinned Loading

  1. Edge-TTS low level client implementa... Edge-TTS low level client implementation (Deno example)
    1
    import WebSocket from "ws";
    2
    
                  
    3
    export async function textToSpeech(
    4
      text: string,
    5
      voice: string,
  2. Script for preparing AppStore App Pr... Script for preparing AppStore App Preview video
    1
    # for iPhone
    2
    ffmpeg -i iphone_video.mp4 -i audio.mp3 \
    3
      -t 30 \ # Trim to 30 sec, it's max for app preview videos
    4
      -r 30 \ # Frame rate set to 30
    5
      -vf scale=886:1920,setsar=1:1 \ # resolution should be 886:1920 if it's portrait
  3. JSON.ts JSON.ts
    1
    export const jsonReplacer = (_: string, value: unknown) => {
    2
      if (value instanceof Map)
    3
        return { __type: 'Map', value: Array.from(value.entries()) }
    4
    
                  
    5
      if (value instanceof Set)
  4. account-abstraction-webauthn account-abstraction-webauthn Public

    Forked from G7DAO/account-abstraction-webauthn

    A research project to use WebAuthn with Account Abstraction (ERC 4337)

    Solidity