理论上讲,scivi依赖下面的包:
OpenKinect
OpenSceneGraph
ARToolKit
vcglib
0 | |
00:00:00,050 --> 00:00:03,080 | |
你已经休赛了一年,而且习惯了赢得胜利。 | |
1 | |
00:00:03,080 --> 00:00:09,120 | |
适应可能不在第一梯队的麦克拉伦车队会怎样? | |
2 | |
00:00:09,120 --> 00:00:14,600 |
#!/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 |
@echo off | |
ffmpeg -y -i %1 -vcodec libx265 -crf 26 -r 30 -preset veryslow -tag:v hvc1 -acodec copy %1_output.mov |
@echo off | |
ffmpeg -y -i %1 -vcodec libx264 -crf 27 -preset veryslow -vf scale=-1:1080 -acodec aac -ab 96k output.mp4 |
# | |
# 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 |
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 |
# 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 |
.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 *{ |
# 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): | |
""" |