playerx - Overview

View playerx's full-sized avatar

Ezeki Zibzibadze playerx

  • Jok Entertainers Inc.

  • Tbilisi, Georgia
  • ez.jok.io

Organizations

@jokio @ScanProduct

Block or report playerx

About me

I love creating online games 👾 entertaining people 🤡

My recent (hobby) projects:

Pinned Loading

  1. 1

    import WebSocket from "ws";

    3

    export async function textToSpeech(
  2. 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. 1

    export const jsonReplacer = (_: string, value: unknown) => {

    2

      if (value instanceof Map)

    3

        return { __type: 'Map', value: Array.from(value.entries()) }

    5

      if (value instanceof Set)