Skip to content

Instantly share code, notes, and snippets.

View CyberRex0's full-sized avatar

CyberRex CyberRex0

View GitHub Profile

Keybase proof

I hereby claim:

  • I am cyberrex0 on github.
  • I am cyberrex (https://keybase.io/cyberrex) on keybase.
  • I have a public key ASA3Q89o1Ou9QzcsguefH23K2gKzzl7ZcRVk5PaQl5LBaAo

To claim this, I am signing this object:

Chromeでmisskey開いて
スマホでもできるF12検証ツール開こう
以下をURLバーに入力
```
javascript:(function () { var script = document.createElement('script'); script.src="//cdn.jsdelivr.net/npm/eruda"; document.body.appendChild(script); script.onload = function () { eruda.init() } })();
```

FFmpeg for Android unofficial builds

FFmpegバイナリの非公式ビルドです。 バージョンごとにバイナリが異なるため適切なバージョンを選んでください。

最終更新日: 2021/02/11

Android 5.1

アーキテクチャ リンク
@CyberRex0
CyberRex0 / dbul_api.md
Last active November 23, 2020 23:16
Discord Bad Users List API

Discord Bad Users List API Reference

API Endpoint

http://app.cyberrex.ml/discord/badusers

Actions

Get List

@CyberRex0
CyberRex0 / discordpy_reply.md
Last active November 21, 2020 02:20
Discord.pyにおいて、ライブラリを経由しないで返信をする方法

ライブラリを経由しないで返信を使う

async def reply(basemsg, message, reply):
   heads = {
    "Content-Type":"application/json",
    "Authorization":f"Bot {TOKEN}"
   }
   data = {
 "content":message,
@CyberRex0
CyberRex0 / gist:f5ff6f6c711bdd13d53c0c3d83ae3aea
Created November 16, 2020 13:18
FFmpegで字幕を焼く

ffmpeg -i movie.mkv -vf "subtitles=sub.ass" -vcodec h264 -preset fast -b:v 1.5M -acodec aac -b:a 192k -s 1280x720 out.mp4

WebVTT字幕ファイルは

ffmpeg -i sub.vtt sub.ass

であらかじめ変換しておく