Skip to content

Instantly share code, notes, and snippets.

View ROZ-MOFUMOFU-ME's full-sized avatar

ROZ a.k.a. Aoi Emerauda ROZ-MOFUMOFU-ME

View GitHub Profile
@ROZ-MOFUMOFU-ME
ROZ-MOFUMOFU-ME / ts2rtsp_qsv.bat
Created March 23, 2022 04:42
MPEG2TS-Bon to Streaming Server using FFMPEG-QSV
@echo off
:loop
C:\file\path\ffmpeg -hide_banner -hwaccel qsv -re -stream_loop -1 -i "udp://127.0.0.1:1234?pkt_size=2621440&fifo_size=10000000&overrun_nonfatal-0" -vf bwdif=0:-1:1 -map 0:v:0 -threads 0 -c:v h264_qsv -b:v 3M -preset:v 2 -vsync 1 -async 1 -map 0:a:0 -c:a aac -q:a 2 -ac 2 -avoid_negative_ts disabled -f flv -flvflags no_duration_filesize "rtmp://hoge.hoge/live/streamkey?user=username&pass=password"
shift
goto loop
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
[InitializeOnLoad]
public class MakeUploadsFast : MonoBehaviour
{
static MakeUploadsFast()
{
@ROZ-MOFUMOFU-ME
ROZ-MOFUMOFU-ME / install.sh
Created June 11, 2020 23:36 — forked from MiningBeaver/install.sh
ElectrumX-MONA Install script for Ubuntu 18.04
#!/bin/bash
#Donation appreciated.
#Monacoin:MBeaverua23KLV6wDXmm1iggkfRBFHoUAc
#Bitcoin:3DUFHmY6GUSqajoBYBWZhRAmxHkYfHxabM
# __ __ _
#| \/ | ___ _ __ __ _ ___ ___ (_)_ __
#| |\/| |/ _ \| '_ \ / _` |/ __/ _ \| | '_ \
#| | | | (_) | | | | (_| | (_| (_) | | | | |

Keybase proof

I hereby claim:

  • I am roz-mofumofu-me on github.
  • I am roz (https://keybase.io/roz) on keybase.
  • I have a public key ASDB53gAUQSwsxLBY70bk0rFRxPjQ7952nIEJ7-eKklIIQo

To claim this, I am signing this object:

Hello, today our community server was attacked by severe report attack. Attacked which is going by pseudonym Mink created fake account with same nickname as our server admin cryptozeny and posted allegedly his personal info in public his own public server (check attachemnts 1-3). After this he probably reported them to Discord support team. As result today all of server admins, including user who joined just couple hours before was banned, here is not full list (with actual user id) of banned users:

crypt?zeny: 619739278695727104

@ROZ-MOFUMOFU-ME
ROZ-MOFUMOFU-ME / gist:b0cd808f5a28993b1ebd70e06741e366
Last active November 29, 2019 10:49
Install node&npm for zny-nomp on Ubuntu
/* Install nodejs and npm
sudo apt install nodejs npm
/* Install node version control tool "n"
sudo npm install n -g
/* Install node v9
sudo n v9
/* Install npm
@ROZ-MOFUMOFU-ME
ROZ-MOFUMOFU-ME / gist:7300160df213e26798fcfe1488425330
Last active April 13, 2024 18:17
Server Ping display with node.js (PCからサーバーまでのPing値をブラウザ表示する)
# vi package.json
-----------------------------
{
"name": "ping",
"version": "1.3.0",
"description": "A Server Ping display",
"repository": "https://github.com/ROZ-MOFUMOFU-ME/ping",
"main": "app.js",
"scripts": {
"start": "node app.js"