ffprobe -v quiet -print_format json -show_streams -count_packets SOURCE
-count_packets 옵션으로 header에 정보가 없더라도 frame count(nb_read_packets)를 셀 수 있음.
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| # In[1]: | |
| import pandas as pd | |
| # In[69]: |
| /* my workspace css for stylus */ | |
| @import url(//fonts.googleapis.com/earlyaccess/notosanskr.css); | |
| /* common font-family */ | |
| body.aui-layout { font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif; } | |
| /* common layout */ | |
| #LGE_header_container { display: none; } | |
| #announcement-banner { display: none; } |
| import sys | |
| print(sys.version) | |
| print(sys.argv) |
| import kfp | |
| exp_name = "anonymous-1" | |
| pipe_name = "ad-tpl-test" | |
| params = { | |
| "git_ref":'master', | |
| "model":'', | |
| "data":'', | |
| } |