Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
project:linuxfun [2016/12/23 01:16] over23 |
project:linuxfun [2017/09/19 11:41] (current) over23 |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | {{ project:sorry_vole_error.gif}} | ||
| * LINUX BASICS Public Wiki by Over and LiPo: [[http://wiki.li-on.cz/|http://wiki.li-on.cz/]] | * LINUX BASICS Public Wiki by Over and LiPo: [[http://wiki.li-on.cz/|http://wiki.li-on.cz/]] | ||
| Line 6: | Line 6: | ||
| [[https://over23.github.io/r00t_l4b/useful_linux.html|https://over23.github.io/r00t_l4b/useful_linux.html]] | [[https://over23.github.io/r00t_l4b/useful_linux.html|https://over23.github.io/r00t_l4b/useful_linux.html]] | ||
| + | |||
| + | ===== test machine and scripts ===== | ||
| + | [[test questions]] | ||
| + | |||
| + | [[broken machine]] | ||
| ===== parse IRC logs only for http - example ===== | ===== parse IRC logs only for http - example ===== | ||
| Line 66: | Line 71: | ||
| {{ :project:siroky_vtip.jpg?800}} | {{ :project:siroky_vtip.jpg?800}} | ||
| + | ====== FFMPEG convert script ====== | ||
| + | #!/bin/bash -x | ||
| + | for f in *.mp4 | ||
| + | do | ||
| + | soubor="/Users/pavouk/Movies/xxx/$f" | ||
| + | soubor2="/Users/pavouk/Movies/xxx_h265/$f" | ||
| + | /usr/local/bin/ffmpeg -i ${soubor} -c:v libx265 -preset medium -codec:a aac -strict experimental -b:a 128k ${soubor2} | ||
| + | done | ||
| + | |||
| + | ====== Get a rid of spaces in dir ====== | ||
| + | for f in *\ *; do mv "$f" "${f// /_}"; done | ||