Skip to content

Instantly share code, notes, and snippets.

2018-06-15 12:53:08 UTC comment server INFO 200 - TranscoderWorkerVideoEncoder.setupEncoder[_defaultVHost_:live/_definst_/test:720p]: Video encoding parameters - - - 29.19 - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - # long: profile_id: 0=H264PROFILE_BASELINE, 1=H264PROFILE_MAIN, 3=H264PROFILE_HIGH - - - 29.191 - - - - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - mainconcept.profile_id: 1 - - - 29.191 - - - - - - - - - - - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - # long: level_id: = 10 -> 1.0, .. 51 -> 5.1 - - - 29.191 - - - - - - - - - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - mainconcept.level_id: 32 - - - 29.191 - - - - - - - - - - - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - # long: idr_interval: gop length - - - 29.191 - - - - - - - - - - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - mainconcept.idr_interval: 0 - - - 29.191 - - - - - - - - - - - - -
2018-06-15 12:53:08 UTC comment server INFO 200 - # long: reordering_delay: max distance betw
@aubryio
aubryio / ohmyzsh-setup.md
Last active November 6, 2018 06:11
Awesome terminal

Awesome terminal

cool terminal

This gists contains my terminal setup on Ubuntu 16.04 which includes:

  • ZSH
  • Oh-my-zsh
  • Terminator (optional, also work with gnome-terminal)
  • Powerline symbols
@nicerobot
nicerobot / jstatd.sh
Created November 18, 2011 00:01
Run jstatd w/o error 'access denied (java.util.PropertyPermission java.rmi.server.ignoreSubClasses write)'
#!/bin/sh
policy=${HOME}/.jstatd.all.policy
[ -r ${policy} ] || cat >${policy} <<'POLICY'
grant codebase "file:${java.home}/../lib/tools.jar" {
permission java.security.AllPermission;
};
POLICY
jstatd -J-Djava.security.policy=${policy} &