理论上讲,scivi依赖下面的包:
OpenKinect
OpenSceneGraph
ARToolKit
vcglib
| @import url(http://fonts.googleapis.com/css?family=Open+Sans:300); | |
| @-webkit-keyframes animatedBackground { | |
| from { | |
| background-position: 0 0; | |
| } | |
| to { | |
| background-position: 100% 0; | |
| } | |
| } |
| # Definition for singly-linked list. | |
| # class ListNode(object): | |
| # def __init__(self, x): | |
| # self.val = x | |
| # self.next = None | |
| class Solution(object): | |
| def getIntersectionNode(self, headA, headB): | |
| """ |
| .stream-tombstone-container{ | |
| display: block; | |
| font-size:0; | |
| } | |
| .Tombstone{ | |
| background-image: url('https://media.giphy.com/media/aSTJbOerwCKqc/giphy.gif'); | |
| display: block; | |
| height: 300px; | |
| } | |
| .Tombstone *{ |
| # Set build arguments here. See `gn help buildargs`. | |
| is_debug = false | |
| symbol_level = 0 | |
| blink_symbol_level = 0 | |
| is_component_build = false | |
| # enable_resource_allowlist_generation=true requires symbol_level >= 1 | |
| # enable_resource_whitelist_generation = false | |
| enable_resource_allowlist_generation = false |
| cd chromium/src | |
| call gclient sync | |
| call git pull | |
| call gclient sync | |
| cd D:\chromium\src\chrome\build\ | |
| copy chrome.x64.orderfile chrome.arm64.orderfile | |
| copy chrome.x64.orderfile.sha1 chrome.arm64.orderfile.sha1 | |
| copy chrome_child.x64.orderfile chrome_child.arm64.orderfile | |
| copy chrome_child.x64.orderfile.sha1 chrome_child.arm64.orderfile.sha1 | |
| cd ../../out/mybuild2 |
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/powerpc 5.4.6-gentoo Kernel Configuration | |
| # | |
| # | |
| # Compiler: gcc (Gentoo 9.2.0-r2 p3) 9.2.0 | |
| # | |
| CONFIG_CC_IS_GCC=y | |
| CONFIG_GCC_VERSION=90200 |
| @echo off | |
| ffmpeg -y -i %1 -vcodec libx264 -crf 27 -preset veryslow -vf scale=-1:1080 -acodec aac -ab 96k output.mp4 |
| @echo off | |
| ffmpeg -y -i %1 -vcodec libx265 -crf 26 -r 30 -preset veryslow -tag:v hvc1 -acodec copy %1_output.mov |
| #!/bin/bash | |
| # Q: upper bitrate limit: 1/Q | |
| Q=2 | |
| for file in `find ./input/ -iname "*.mov"`; | |
| do | |
| echo $file | |
| bitrate=`./ffprobe -v error -select_streams v:0 -show_entries stream=bit_rate -of csv=p=0 $file` | |
| bitrate=`awk -v var="$bitrate" -v Q="$Q" 'BEGIN {OFMT="%d";print var/Q}'` | |
| echo $bitrate |