This is installation documentation for installing Koel on Debian 8.
Most packages can be installed via apt-get.
user@debian:~/$ sudo apt-get install -y apache2 mysql-server php5 php5-mysql g++ git curl
This is installation documentation for installing Koel on Debian 8.
Most packages can be installed via apt-get.
user@debian:~/$ sudo apt-get install -y apache2 mysql-server php5 php5-mysql g++ git curl
| Odroid U2 | |
| H264 1080p 8 bits | |
| $ time ffmpeg -i bbb_sunflower_1080p_30fps_normal.mp4 -map 0:v -c:v rawvideo -f nut -y /dev/null | |
| frame=19036 fps= 36 q=-0.0 Lsize=57822535kB time=00:10:34.56 bitrate=746465.6kbits/s speed=1.19x | |
| video:57821850kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.001185% | |
| real 8m55,587s | |
| user 23m6,625s | |
| sys 4m40,540s |
| commit b380377d028415e4fc59e018c1ecfa36ae3b878a | |
| Author: Yamashita Ren <lemaitre.dulotus@yahoo.fr> | |
| Date: Mon Sep 3 01:49:57 2018 +0200 | |
| Fix compilation with newer GCC. | |
| diff --git a/MSVC_Round.cpp b/MSVC_Round.cpp | |
| index 2200335..2d0bb8c 100644 | |
| --- a/MSVC_Round.cpp | |
| +++ b/MSVC_Round.cpp |
| # $Id$ | |
| # Maintainer: Yamashita Ren | |
| # Contributor: Sławomir Kowalski <suawekk+aur@gmail.com> | |
| # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> | |
| # Contributor: Timm Preetz <timm@preetz.us> | |
| # Contributor: Michael 'manveru' Fellinger <m.fellinger@gmail.com> | |
| # Contributor: Dave Pretty <david dot pretty at gmail dot com> | |
| pkgname=anki20 | |
| pkgver=2.0.43 |
| $ cmake -DUSE_MINIUPNP=ON -DLOCAL_MINIUPNP=ON .. | |
| -- Building with UPNP support (miniupnpc) | |
| CMake Error at CMakeLists.txt:159 (add_subdirectory): | |
| The source directory | |
| /home/quentin/build/bmdc/src/bmdc++/miniupnpc | |
| does not contain a CMakeLists.txt file. | |
| import vapoursynth as vs | |
| core = vs.get_core() | |
| ClipA=core.ffms2.Source(source='[HorribleSubs] Kabaneri of the Iron Fortress - 02v2 [1080p].mkv') | |
| ClipA=core.resize.Spline36(ClipA,854,480,vs.YUV440P8) | |
| ClipT=core.ffms2.Source(source='[SAA] Koutetsujou no Kabaneri - 02 vostfr (1280x720 x264 AAC).mkv') | |
| ClipT=core.resize.Spline36(ClipT,1913,1080,vs.YUV440P8) | |
| ClipT=core.std.AddBorders(ClipT,3,4) | |
| ClipT=core.resize.Spline36(ClipT,854,480) |
| # Maintainer: Yamashita Ren | |
| # Contributor: Gustavo Alvarez <sl1pkn07@gmail.com> | |
| _plug=havsfunc | |
| pkgname=vapoursynth-plugin-${_plug}-git-light | |
| pkgver=r21.0.g1c17eda | |
| pkgrel=1 | |
| pkgdesc="Plugin for Vapoursynth: ${_plug}. (GIT Version, light depends)" | |
| arch=('any') | |
| url='http://forum.doom9.org/showthread.php?t=166582' |
| # -*- coding: utf-8 -*- | |
| import numpy as np | |
| import vapoursynth as vs | |
| def bool_to_number(function): | |
| def wrapped(*args): | |
| value = function(*args) | |
| return np.where(value, np.array(1.0), np.array(-1.0)) | |
| return wrapped |
| def nnedi3_rpow2(clip,rfactor,correct_shift="zimg",nsize=0,nns=3,qual=None,etype=None,pscrn=None,opt=None,int16_prescreener=None,int16_predictor=None,exp=None): | |
| import vapoursynth as vs | |
| core = vs.get_core() | |
| def edi(clip,field,dh): | |
| return core.nnedi3.nnedi3(clip=clip,field=field,dh=dh,nsize=nsize,nns=nns,qual=qual,etype=etype,pscrn=pscrn,opt=opt,int16_prescreener=int16_prescreener,int16_predictor=int16_predictor,exp=exp) | |
| return edi_rpow2(clip=clip,rfactor=rfactor,correct_shift=correct_shift,edi=edi) | |
| def znedi3_rpow2(clip,rfactor,correct_shift="zimg",nsize=0,nns=3,qual=None,etype=None,pscrn=None,opt=None,int16_prescreener=None,int16_predictor=None,exp=None): |