Skip to content

Instantly share code, notes, and snippets.

@hosseinm1997
hosseinm1997 / iran-subnets
Created October 11, 2022 08:24
Iran IP subnet/CIDR
103.130.144.0/24
103.130.146.0/24
103.215.220.0/22
103.216.60.0/22
103.231.136.0/22
109.107.131.0/24
109.108.160.0/19
109.109.32.0/19
109.110.160.0/19
109.122.193.0/24
@spirillen
spirillen / ffmpeg-add-subtitles.md
Last active July 18, 2024 13:52
Use FFmpeg to add subtitles to video

Use FFmpeg to add subtitles to video

MP4:

ffmpeg -i input.mp4 -f srt -i input.srt -map 0:0 -map 0:1 -map 1:0 -c:v copy \
    -c:a copy -c:s mov_text output.mp4

MKV:

// Gist for https://medium.com/@ebakhtarov/bidirectional-websockets-with-redux-saga
import { eventChannel } from "redux-saga";
import { all, call, put, take, select, race } from "redux-saga/effects";
import { actionTypes } from "./constants";
function watchMessages(socket) {
return eventChannel(emit => {
/* eslint-disable no-param-reassign */