Spaces:
vztu
/
Runtime error

nanushio commited on
Commit
a135217
1 Parent(s): 90e9a46

- [MINOR] [SOURCE] [UPDATE] 1. update app.py

Browse files
app.py CHANGED
@@ -15,6 +15,8 @@ import matplotlib.patches as patches
15
  from cover.datasets import UnifiedFrameSampler, spatial_temporal_view_decomposition
16
  from cover.models import COVER
17
 
 
 
18
  mean, std = (
19
  torch.FloatTensor([123.675, 116.28, 103.53]),
20
  torch.FloatTensor([58.395, 57.12, 57.375]),
@@ -27,10 +29,18 @@ mean_clip, std_clip = (
27
 
28
  sample_interval = 30
29
 
 
 
 
 
 
 
 
30
  comparison_array = {
31
- "semantic": [3.0, 3.5, 2.5, 4.0, 2.0], # 示例数组
32
- "technical": [2.0, 3.0, 3.5, 4.0, 1.5],
33
- "aesthetic": [2.5, 3.0, 2.0, 4.5, 3.5]
 
34
  }
35
 
36
  def get_sampler_params(video_path):
@@ -52,7 +62,7 @@ def fuse_results(results: list):
52
  "overall" : x,
53
  }
54
 
55
- def normalize_score(score, min_score=0, max_score=5):
56
  return (score - min_score) / (max_score - min_score) * 5
57
 
58
  def compare_score(score, score_list):
@@ -67,7 +77,6 @@ def create_bar_chart(scores, comparisons):
67
  fig, ax = plt.subplots(figsize=(10, 5))
68
 
69
  for i, (label, score, comparison, base_color) in enumerate(zip(labels, scores, comparisons, base_colors)):
70
- color = plt.cm.ScalarMappable(cmap=plt.cm.RdYlBu).to_rgba((score / 5))
71
  gradient = patches.Rectangle((0, i), 5, 1, color=base_color, alpha=0.5)
72
  ax.add_patch(gradient)
73
 
@@ -78,7 +87,9 @@ def create_bar_chart(scores, comparisons):
78
  ax.text(5.1, i + 0.5, comparison, va='center', ha='left', color=base_color)
79
 
80
  ax.set_yticks(range(len(labels)))
81
- ax.set_yticklabels(labels, color=base_colors)
 
 
82
  ax.set_xticks([0, 1, 2, 3, 4, 5])
83
  ax.set_xticklabels([0, 1, 2, 3, 4, 5])
84
  ax.set_xlim(0, 5)
@@ -160,17 +171,22 @@ def inference_one_video(input_video):
160
  pred_score = fuse_results(results)
161
 
162
  normalized_scores = [
163
- normalize_score(pred_score["semantic"]),
164
- normalize_score(pred_score["technical"]),
165
- normalize_score(pred_score["aesthetic"]),
166
- normalize_score(pred_score["overall"])
167
  ]
168
 
 
 
 
 
 
169
  comparisons = [
170
  compare_score(pred_score["semantic"], comparison_array["semantic"]),
171
  compare_score(pred_score["technical"], comparison_array["technical"]),
172
  compare_score(pred_score["aesthetic"], comparison_array["aesthetic"]),
173
- compare_score(pred_score["overall"], comparison_array["semantic"] + comparison_array["technical"] + comparison_array["aesthetic"]) # 假设 overall 分数的比较使用所有维度分数的组合
174
  ]
175
 
176
  image_path = create_bar_chart(normalized_scores, comparisons)
 
15
  from cover.datasets import UnifiedFrameSampler, spatial_temporal_view_decomposition
16
  from cover.models import COVER
17
 
18
+ import pandas as pd
19
+
20
  mean, std = (
21
  torch.FloatTensor([123.675, 116.28, 103.53]),
22
  torch.FloatTensor([58.395, 57.12, 57.375]),
 
29
 
30
  sample_interval = 30
31
 
32
+ normalization_array = {
33
+ "semantic" : [-0.1477,-0.0181],
34
+ "technical": [-1.8762, 1.2428],
35
+ "aesthetic": [-1.2899, 0.5290],
36
+ "overall" : [-3.2538, 1.6728]
37
+ }
38
+
39
  comparison_array = {
40
+ "semantic" : [], # 示例数组
41
+ "technical": [],
42
+ "aesthetic": [],
43
+ "overall" : []
44
  }
45
 
46
  def get_sampler_params(video_path):
 
62
  "overall" : x,
63
  }
64
 
65
+ def normalize_score(score, min_score, max_score):
66
  return (score - min_score) / (max_score - min_score) * 5
67
 
68
  def compare_score(score, score_list):
 
77
  fig, ax = plt.subplots(figsize=(10, 5))
78
 
79
  for i, (label, score, comparison, base_color) in enumerate(zip(labels, scores, comparisons, base_colors)):
 
80
  gradient = patches.Rectangle((0, i), 5, 1, color=base_color, alpha=0.5)
81
  ax.add_patch(gradient)
82
 
 
87
  ax.text(5.1, i + 0.5, comparison, va='center', ha='left', color=base_color)
88
 
89
  ax.set_yticks(range(len(labels)))
90
+ ax.set_yticklabels(labels)
91
+ for tick, color in zip(ax.get_yticklabels(), base_colors):
92
+ tick.set_color(color)
93
  ax.set_xticks([0, 1, 2, 3, 4, 5])
94
  ax.set_xticklabels([0, 1, 2, 3, 4, 5])
95
  ax.set_xlim(0, 5)
 
171
  pred_score = fuse_results(results)
172
 
173
  normalized_scores = [
174
+ normalize_score(pred_score["semantic"] , normalization_array["semantic"][0] , normalization_array["semantic"][1] ),
175
+ normalize_score(pred_score["technical"], normalization_array["technical"][0], normalization_array["technical"][1]),
176
+ normalize_score(pred_score["aesthetic"], normalization_array["aesthetic"][0], normalization_array["aesthetic"][1]),
177
+ normalize_score(pred_score["overall"] , normalization_array["overall"][0] , normalization_array["overall"][1])
178
  ]
179
 
180
+ comparison_array["semantic"] = pd.read_csv('./prediction_results/youtube_ugc/smos.csv')['Mos']
181
+ comparison_array["technical"] = pd.read_csv('./prediction_results/youtube_ugc/tmos.csv')['Mos']
182
+ comparison_array["aesthetic"] = pd.read_csv('./prediction_results/youtube_ugc/amos.csv')['Mos']
183
+ comparison_array["overall"] = pd.read_csv('./prediction_results/youtube_ugc/overall.csv')['Mos']
184
+
185
  comparisons = [
186
  compare_score(pred_score["semantic"], comparison_array["semantic"]),
187
  compare_score(pred_score["technical"], comparison_array["technical"]),
188
  compare_score(pred_score["aesthetic"], comparison_array["aesthetic"]),
189
+ compare_score(pred_score["overall"], comparison_array["overall"])
190
  ]
191
 
192
  image_path = create_bar_chart(normalized_scores, comparisons)
prediction_results/youtube_ugc/amos.csv ADDED
@@ -0,0 +1,1202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Mos
2
+ Animation_1080P-01b3_crf_10_ss_00_t_20.0,0.03897195681929588
3
+ Animation_1080P-05f8_crf_10_ss_00_t_20.0,0.042816489934921265
4
+ Animation_1080P-0c4f_crf_10_ss_00_t_20.0,0.1808883100748062
5
+ Animation_1080P-0cdf_crf_10_ss_00_t_20.0,0.2438787817955017
6
+ Animation_1080P-18f5_crf_10_ss_00_t_20.0,0.2981838583946228
7
+ Animation_1080P-209f_crf_10_ss_00_t_20.0,0.3133091330528259
8
+ Animation_1080P-21dd_crf_10_ss_00_t_20.0,0.02881705015897751
9
+ Animation_1080P-2fbe_crf_10_ss_00_t_20.0,-0.058650873601436615
10
+ Animation_1080P-2fff_crf_10_ss_00_t_20.0,0.2795519530773163
11
+ Animation_1080P-3d67_crf_10_ss_00_t_20.0,-0.646600604057312
12
+ Animation_1080P-3dbf_crf_10_ss_00_t_20.0,0.22943493723869324
13
+ Animation_1080P-3e01_crf_10_ss_00_t_20.0,0.14405669271945953
14
+ Animation_1080P-4214_crf_10_ss_00_t_20.0,0.15504932403564453
15
+ Animation_1080P-4be3_crf_10_ss_00_t_20.0,-0.031089652329683304
16
+ Animation_1080P-4ea8_crf_10_ss_00_t_20.0,-0.07301823794841766
17
+ Animation_1080P-5083_crf_10_ss_00_t_20.0,-0.0937342718243599
18
+ Animation_1080P-58d3_crf_10_ss_00_t_20.0,0.27693971991539
19
+ Animation_1080P-5dd8_crf_10_ss_00_t_20.0,0.2200724333524704
20
+ Animation_1080P-646f_crf_10_ss_00_t_20.0,-0.13093449175357819
21
+ Animation_1080P-66ba_crf_10_ss_00_t_20.0,0.07326237857341766
22
+ Animation_1080P-6a33_crf_10_ss_00_t_20.0,-0.39920365810394287
23
+ Animation_1080P-6ec0_crf_10_ss_00_t_20.0,0.25533661246299744
24
+ Animation_2160P-41dc_crf_10_ss_00_t_20.0,-0.016476048156619072
25
+ Animation_2160P-6f3b_crf_10_ss_00_t_20.0,0.16794338822364807
26
+ Animation_360P-08c9_crf_10_ss_00_t_20.0,0.07114317268133163
27
+ Animation_360P-188f_crf_10_ss_00_t_20.0,0.017723144963383675
28
+ Animation_360P-24d4_crf_10_ss_00_t_20.0,-0.07739420235157013
29
+ Animation_360P-3e40_crf_10_ss_00_t_20.0,-0.43708333373069763
30
+ Animation_360P-3e52_crf_10_ss_00_t_20.0,0.09132684767246246
31
+ Animation_360P-47cc_crf_10_ss_00_t_20.0,-0.1598324030637741
32
+ Animation_360P-4b4c_crf_10_ss_00_t_20.0,-0.33078745007514954
33
+ Animation_360P-4edc_crf_10_ss_00_t_20.0,0.03472322225570679
34
+ Animation_360P-5712_crf_10_ss_00_t_20.0,0.0436365082859993
35
+ Animation_360P-5de0_crf_10_ss_00_t_20.0,-0.21181079745292664
36
+ Animation_360P-631c_crf_10_ss_00_t_20.0,-0.6223183870315552
37
+ Animation_360P-69e0_crf_10_ss_00_t_20.0,-0.1743626445531845
38
+ Animation_360P-7856_crf_10_ss_00_t_20.0,-0.15931233763694763
39
+ Animation_360P-794f_crf_10_ss_00_t_20.0,-0.13195908069610596
40
+ Animation_480P-046c_crf_10_ss_00_t_20.0,-0.20047883689403534
41
+ Animation_480P-073c_crf_10_ss_00_t_20.0,-0.01059996522963047
42
+ Animation_480P-087e_crf_10_ss_00_t_20.0,-0.028960073366761208
43
+ Animation_480P-08a5_crf_10_ss_00_t_20.0,-0.04010375589132309
44
+ Animation_480P-0d04_crf_10_ss_00_t_20.0,-0.21130572259426117
45
+ Animation_480P-1da7_crf_10_ss_00_t_20.0,0.04850289225578308
46
+ Animation_480P-35ee_crf_10_ss_00_t_20.0,-0.10419528931379318
47
+ Animation_480P-3fdf_crf_10_ss_00_t_20.0,-0.1646963655948639
48
+ Animation_480P-4b86_crf_10_ss_00_t_20.0,-0.17389434576034546
49
+ Animation_480P-4e36_crf_10_ss_00_t_20.0,-0.05954580381512642
50
+ Animation_480P-52af_crf_10_ss_00_t_20.0,-0.0188179612159729
51
+ Animation_480P-66c0_crf_10_ss_00_t_20.0,-0.004646340385079384
52
+ Animation_480P-6e23_crf_10_ss_00_t_20.0,0.07097180187702179
53
+ Animation_480P-6ef6_crf_10_ss_00_t_20.0,-0.0370209664106369
54
+ Animation_480P-6ff4_crf_10_ss_00_t_20.0,-0.16685126721858978
55
+ Animation_480P-70d4_crf_10_ss_00_t_20.0,0.039455633610486984
56
+ Animation_480P-791b_crf_10_ss_00_t_20.0,-0.12449967861175537
57
+ Animation_480P-7a31_crf_10_ss_00_t_20.0,0.03536413982510567
58
+ Animation_480P-7ef2_crf_10_ss_00_t_20.0,-0.22228273749351501
59
+ Animation_720P-0116_crf_10_ss_00_t_20.0,0.24960771203041077
60
+ Animation_720P-01b3_crf_10_ss_00_t_20.0,0.05079813301563263
61
+ Animation_720P-06a6_crf_10_ss_00_t_20.0,0.15690939128398895
62
+ Animation_720P-0acc_crf_10_ss_00_t_20.0,0.13799014687538147
63
+ Animation_720P-13b7_crf_10_ss_00_t_20.0,0.3003939390182495
64
+ Animation_720P-1a6d_crf_10_ss_00_t_20.0,0.11207584291696548
65
+ Animation_720P-2525_crf_10_ss_00_t_20.0,0.009990516118705273
66
+ Animation_720P-2abf_crf_10_ss_00_t_20.0,-0.017626866698265076
67
+ Animation_720P-3adc_crf_10_ss_00_t_20.0,0.07236635684967041
68
+ Animation_720P-412a_crf_10_ss_00_t_20.0,0.3141622245311737
69
+ Animation_720P-41cf_crf_10_ss_00_t_20.0,0.12770609557628632
70
+ Animation_720P-41d6_crf_10_ss_00_t_20.0,0.265577107667923
71
+ Animation_720P-4268_crf_10_ss_00_t_20.0,0.08001116663217545
72
+ Animation_720P-431c_crf_10_ss_00_t_20.0,0.3876156508922577
73
+ Animation_720P-57d9_crf_10_ss_00_t_20.0,-0.15185174345970154
74
+ Animation_720P-620f_crf_10_ss_00_t_20.0,0.38911566138267517
75
+ Animation_720P-6372_crf_10_ss_00_t_20.0,0.34413132071495056
76
+ Animation_720P-79ee_crf_10_ss_00_t_20.0,-0.6891890168190002
77
+ Animation_720P-7b29_crf_10_ss_00_t_20.0,0.08802908658981323
78
+ Animation_720P-7e7d_crf_10_ss_00_t_20.0,-0.014669885858893394
79
+ Animation_720P-7ff2_crf_10_ss_00_t_20.0,0.13180504739284515
80
+ CoverSong_1080P-0188_crf_10_ss_00_t_20.0,0.06059052795171738
81
+ CoverSong_1080P-033d_crf_10_ss_00_t_20.0,0.34650278091430664
82
+ CoverSong_1080P-0a86_crf_10_ss_00_t_20.0,0.18589626252651215
83
+ CoverSong_1080P-0cdc_crf_10_ss_00_t_20.0,-0.5640705227851868
84
+ CoverSong_1080P-0f33_crf_10_ss_00_t_20.0,-0.46249207854270935
85
+ CoverSong_1080P-0f3a_crf_10_ss_00_t_20.0,0.2878813147544861
86
+ CoverSong_1080P-1963_crf_10_ss_00_t_20.0,0.18403375148773193
87
+ CoverSong_1080P-1b08_crf_10_ss_00_t_20.0,0.12642858922481537
88
+ CoverSong_1080P-1b0c_crf_10_ss_00_t_20.0,0.07725806534290314
89
+ CoverSong_1080P-2207_crf_10_ss_00_t_20.0,-0.009374968707561493
90
+ CoverSong_1080P-237f_crf_10_ss_00_t_20.0,0.2240450531244278
91
+ CoverSong_1080P-3409_crf_10_ss_00_t_20.0,0.31268736720085144
92
+ CoverSong_1080P-3499_crf_10_ss_00_t_20.0,0.34593507647514343
93
+ CoverSong_1080P-3aac_crf_10_ss_00_t_20.0,-0.11534328758716583
94
+ CoverSong_1080P-3df8_crf_10_ss_00_t_20.0,0.04590998962521553
95
+ CoverSong_1080P-4bad_crf_10_ss_00_t_20.0,0.30965837836265564
96
+ CoverSong_1080P-5430_crf_10_ss_00_t_20.0,0.2040378600358963
97
+ CoverSong_1080P-5456_crf_10_ss_00_t_20.0,0.1061384454369545
98
+ CoverSong_1080P-5cae_crf_10_ss_00_t_20.0,0.14850521087646484
99
+ CoverSong_1080P-5e69_crf_10_ss_00_t_20.0,-0.1128278598189354
100
+ CoverSong_1080P-5f92_crf_10_ss_00_t_20.0,0.15969203412532806
101
+ CoverSong_1080P-6f26_crf_10_ss_00_t_20.0,0.3135731518268585
102
+ CoverSong_360P-0a9d_crf_10_ss_00_t_20.0,-0.7604798078536987
103
+ CoverSong_360P-0aa2_crf_10_ss_00_t_20.0,-0.7536512017250061
104
+ CoverSong_360P-11f9_crf_10_ss_00_t_20.0,-0.5847296118736267
105
+ CoverSong_360P-13d2_crf_10_ss_00_t_20.0,-0.5331383347511292
106
+ CoverSong_360P-14b9_crf_10_ss_00_t_20.0,-0.6680107116699219
107
+ CoverSong_360P-1b2b_crf_10_ss_00_t_20.0,-0.08962081372737885
108
+ CoverSong_360P-2146_crf_10_ss_00_t_20.0,-1.0296636819839478
109
+ CoverSong_360P-2b4d_crf_10_ss_00_t_20.0,-0.5445442199707031
110
+ CoverSong_360P-3218_crf_10_ss_00_t_20.0,-0.8020988702774048
111
+ CoverSong_360P-4add_crf_10_ss_00_t_20.0,-0.3619581162929535
112
+ CoverSong_360P-53a6_crf_10_ss_00_t_20.0,-0.22921864688396454
113
+ CoverSong_360P-59d1_crf_10_ss_00_t_20.0,-0.6133506298065186
114
+ CoverSong_360P-5a24_crf_10_ss_00_t_20.0,-0.4669590890407562
115
+ CoverSong_360P-5d20_crf_10_ss_00_t_20.0,-0.4749005138874054
116
+ CoverSong_360P-67ec_crf_10_ss_00_t_20.0,-0.6292127966880798
117
+ CoverSong_360P-69ef_crf_10_ss_00_t_20.0,-0.6090812683105469
118
+ CoverSong_360P-6d6a_crf_10_ss_00_t_20.0,-0.2709278166294098
119
+ CoverSong_360P-6da7_crf_10_ss_00_t_20.0,-0.6311264038085938
120
+ CoverSong_480P-0170_crf_10_ss_00_t_20.0,-0.3075989782810211
121
+ CoverSong_480P-1019_crf_10_ss_00_t_20.0,0.10751079022884369
122
+ CoverSong_480P-1109_crf_10_ss_00_t_20.0,-0.6784937381744385
123
+ CoverSong_480P-2142_crf_10_ss_00_t_20.0,-0.24088065326213837
124
+ CoverSong_480P-2207_crf_10_ss_00_t_20.0,-0.4851282238960266
125
+ CoverSong_480P-2d2c_crf_10_ss_00_t_20.0,0.024277187883853912
126
+ CoverSong_480P-3076_crf_10_ss_00_t_20.0,-1.1718488931655884
127
+ CoverSong_480P-35e1_crf_10_ss_00_t_20.0,-0.028750907629728317
128
+ CoverSong_480P-3e4b_crf_10_ss_00_t_20.0,-0.40347564220428467
129
+ CoverSong_480P-3e92_crf_10_ss_00_t_20.0,0.2509452700614929
130
+ CoverSong_480P-3f3b_crf_10_ss_00_t_20.0,-0.28017646074295044
131
+ CoverSong_480P-41a5_crf_10_ss_00_t_20.0,-0.2526824176311493
132
+ CoverSong_480P-4d34_crf_10_ss_00_t_20.0,-0.6430922746658325
133
+ CoverSong_480P-53f4_crf_10_ss_00_t_20.0,-0.2956230938434601
134
+ CoverSong_480P-59f2_crf_10_ss_00_t_20.0,-0.10312590003013611
135
+ CoverSong_480P-5b62_crf_10_ss_00_t_20.0,-0.5041599273681641
136
+ CoverSong_480P-60a6_crf_10_ss_00_t_20.0,-0.7817307710647583
137
+ CoverSong_480P-64d0_crf_10_ss_00_t_20.0,0.08468902856111526
138
+ CoverSong_480P-6c3e_crf_10_ss_00_t_20.0,-0.6660392880439758
139
+ CoverSong_480P-6c50_crf_10_ss_00_t_20.0,-0.6665103435516357
140
+ CoverSong_480P-7f6d_crf_10_ss_00_t_20.0,-0.4082583487033844
141
+ CoverSong_720P-014c_crf_10_ss_00_t_20.0,-0.7099223732948303
142
+ CoverSong_720P-01a1_crf_10_ss_00_t_20.0,-0.10287653654813766
143
+ CoverSong_720P-0239_crf_10_ss_00_t_20.0,-0.6980408430099487
144
+ CoverSong_720P-05d6_crf_10_ss_00_t_20.0,0.07611426711082458
145
+ CoverSong_720P-10f1_crf_10_ss_00_t_20.0,-0.5491731762886047
146
+ CoverSong_720P-1393_crf_10_ss_00_t_20.0,0.04707120358943939
147
+ CoverSong_720P-2d05_crf_10_ss_00_t_20.0,-0.2981019914150238
148
+ CoverSong_720P-3dca_crf_10_ss_00_t_20.0,-0.13523951172828674
149
+ CoverSong_720P-4006_crf_10_ss_00_t_20.0,0.0006259307265281677
150
+ CoverSong_720P-449f_crf_10_ss_00_t_20.0,-0.03936767578125
151
+ CoverSong_720P-5689_crf_10_ss_00_t_20.0,-0.7514804601669312
152
+ CoverSong_720P-5ba2_crf_10_ss_00_t_20.0,-0.5089874863624573
153
+ CoverSong_720P-60d3_crf_10_ss_00_t_20.0,-0.3873203694820404
154
+ CoverSong_720P-6626_crf_10_ss_00_t_20.0,-0.14551468193531036
155
+ CoverSong_720P-6b8c_crf_10_ss_00_t_20.0,-0.48079147934913635
156
+ CoverSong_720P-6d6a_crf_10_ss_00_t_20.0,-0.07381639629602432
157
+ CoverSong_720P-6d81_crf_10_ss_00_t_20.0,-0.3261278569698334
158
+ CoverSong_720P-7360_crf_10_ss_00_t_20.0,-0.6152716875076294
159
+ CoverSong_720P-7539_crf_10_ss_00_t_20.0,-0.2506660521030426
160
+ Gaming_1080P-0ce6_crf_10_ss_00_t_20.0,0.09303563088178635
161
+ Gaming_1080P-0ef8_crf_10_ss_00_t_20.0,0.05927377939224243
162
+ Gaming_1080P-12d4_crf_10_ss_00_t_20.0,0.36874499917030334
163
+ Gaming_1080P-13e3_crf_10_ss_00_t_20.0,0.41299206018447876
164
+ Gaming_1080P-1704_crf_10_ss_00_t_20.0,0.21150945127010345
165
+ Gaming_1080P-173a_crf_10_ss_00_t_20.0,-0.4856691360473633
166
+ Gaming_1080P-190d_crf_10_ss_00_t_20.0,0.14167235791683197
167
+ Gaming_1080P-2221_crf_10_ss_00_t_20.0,0.25946804881095886
168
+ Gaming_1080P-223e_crf_10_ss_00_t_20.0,0.2924199402332306
169
+ Gaming_1080P-26dc_crf_10_ss_00_t_20.0,0.050441108644008636
170
+ Gaming_1080P-277c_crf_10_ss_00_t_20.0,0.0024906164035201073
171
+ Gaming_1080P-2927_crf_10_ss_00_t_20.0,0.25458744168281555
172
+ Gaming_1080P-29b1_crf_10_ss_00_t_20.0,0.21464870870113373
173
+ Gaming_1080P-2e97_crf_10_ss_00_t_20.0,0.3065602779388428
174
+ Gaming_1080P-35fa_crf_10_ss_00_t_20.0,-0.4111972749233246
175
+ Gaming_1080P-3a9d_crf_10_ss_00_t_20.0,0.12682580947875977
176
+ Gaming_1080P-3bf7_crf_10_ss_00_t_20.0,-0.47408759593963623
177
+ Gaming_1080P-3d58_crf_10_ss_00_t_20.0,0.07401411980390549
178
+ Gaming_1080P-44c4_crf_10_ss_00_t_20.0,0.05037619546055794
179
+ Gaming_1080P-45af_crf_10_ss_00_t_20.0,0.3622320592403412
180
+ Gaming_1080P-45fc_crf_10_ss_00_t_20.0,0.12338604032993317
181
+ Gaming_1080P-4865_crf_10_ss_00_t_20.0,0.28336039185523987
182
+ Gaming_1080P-51fc_crf_10_ss_00_t_20.0,0.26659664511680603
183
+ Gaming_1080P-564e_crf_10_ss_00_t_20.0,0.26892340183258057
184
+ Gaming_1080P-57ca_crf_10_ss_00_t_20.0,0.30750513076782227
185
+ Gaming_1080P-58ba_crf_10_ss_00_t_20.0,0.09080544114112854
186
+ Gaming_1080P-5ae7_crf_10_ss_00_t_20.0,-0.419971764087677
187
+ Gaming_1080P-6530_crf_10_ss_00_t_20.0,0.16132549941539764
188
+ Gaming_1080P-6578_crf_10_ss_00_t_20.0,0.30918940901756287
189
+ Gaming_1080P-66d2_crf_10_ss_00_t_20.0,0.24719461798667908
190
+ Gaming_1080P-698a_crf_10_ss_00_t_20.0,0.02961302176117897
191
+ Gaming_1080P-6d53_crf_10_ss_00_t_20.0,0.16018173098564148
192
+ Gaming_1080P-6db2_crf_10_ss_00_t_20.0,-0.05770256742835045
193
+ Gaming_1080P-6dc6_crf_10_ss_00_t_20.0,0.4621880054473877
194
+ Gaming_1080P-6e45_crf_10_ss_00_t_20.0,-0.7934774160385132
195
+ Gaming_1080P-71a5_crf_10_ss_00_t_20.0,0.37594714760780334
196
+ Gaming_1080P-72c8_crf_10_ss_00_t_20.0,0.3189302682876587
197
+ Gaming_1080P-777b_crf_10_ss_00_t_20.0,0.13513217866420746
198
+ Gaming_1080P-7a1e_crf_10_ss_00_t_20.0,0.13293151557445526
199
+ Gaming_2160P-2436_crf_10_ss_00_t_20.0,0.29008749127388
200
+ Gaming_2160P-28de_crf_10_ss_00_t_20.0,0.3283495008945465
201
+ Gaming_2160P-2b92_crf_10_ss_00_t_20.0,0.1314585655927658
202
+ Gaming_2160P-2cb1_crf_10_ss_00_t_20.0,0.33866798877716064
203
+ Gaming_2160P-2dc4_crf_10_ss_00_t_20.0,0.2709427773952484
204
+ Gaming_2160P-3002_crf_10_ss_00_t_20.0,0.28794318437576294
205
+ Gaming_2160P-31f6_crf_10_ss_00_t_20.0,0.36627572774887085
206
+ Gaming_2160P-348d_crf_10_ss_00_t_20.0,0.20549635589122772
207
+ Gaming_2160P-34a1_crf_10_ss_00_t_20.0,0.3611719608306885
208
+ Gaming_2160P-387f_crf_10_ss_00_t_20.0,0.3750661015510559
209
+ Gaming_2160P-3a25_crf_10_ss_00_t_20.0,0.30913662910461426
210
+ Gaming_2160P-3aec_crf_10_ss_00_t_20.0,0.38218626379966736
211
+ Gaming_2160P-3ce4_crf_10_ss_00_t_20.0,0.458370178937912
212
+ Gaming_2160P-4139_crf_10_ss_00_t_20.0,0.23277123272418976
213
+ Gaming_2160P-416f_crf_10_ss_00_t_20.0,0.31915077567100525
214
+ Gaming_2160P-4258_crf_10_ss_00_t_20.0,0.0770697295665741
215
+ Gaming_2160P-5c33_crf_10_ss_00_t_20.0,-0.5825880765914917
216
+ Gaming_2160P-5c53_crf_10_ss_00_t_20.0,0.4587048590183258
217
+ Gaming_2160P-673d_crf_10_ss_00_t_20.0,0.3237261176109314
218
+ Gaming_2160P-67b0_crf_10_ss_00_t_20.0,0.19992071390151978
219
+ Gaming_2160P-6bb6_crf_10_ss_00_t_20.0,0.42909005284309387
220
+ Gaming_2160P-6cd8_crf_10_ss_00_t_20.0,0.2549855709075928
221
+ Gaming_2160P-7e80_crf_10_ss_00_t_20.0,0.213248610496521
222
+ Gaming_2160P-7ff0_crf_10_ss_00_t_20.0,0.24043521285057068
223
+ Gaming_360P-043e_crf_10_ss_00_t_20.0,-0.41454124450683594
224
+ Gaming_360P-0b98_crf_10_ss_00_t_20.0,-0.286859929561615
225
+ Gaming_360P-187a_crf_10_ss_00_t_20.0,-0.2729741334915161
226
+ Gaming_360P-215f_crf_10_ss_00_t_20.0,-0.42880308628082275
227
+ Gaming_360P-2164_crf_10_ss_00_t_20.0,-0.12578442692756653
228
+ Gaming_360P-21d2_crf_10_ss_00_t_20.0,-0.615118682384491
229
+ Gaming_360P-2330_crf_10_ss_00_t_20.0,-0.5794243216514587
230
+ Gaming_360P-279f_crf_10_ss_00_t_20.0,-0.341270387172699
231
+ Gaming_360P-2f99_crf_10_ss_00_t_20.0,-0.22650159895420074
232
+ Gaming_360P-3794_crf_10_ss_00_t_20.0,-1.0849354267120361
233
+ Gaming_360P-3eb6_crf_10_ss_00_t_20.0,-0.25540634989738464
234
+ Gaming_360P-48b0_crf_10_ss_00_t_20.0,-0.09592859447002411
235
+ Gaming_360P-4f09_crf_10_ss_00_t_20.0,-0.195995032787323
236
+ Gaming_360P-56fe_crf_10_ss_00_t_20.0,-0.5096749067306519
237
+ Gaming_360P-586d_crf_10_ss_00_t_20.0,-0.2782149016857147
238
+ Gaming_360P-5e0f_crf_10_ss_00_t_20.0,-0.3167194724082947
239
+ Gaming_360P-6207_crf_10_ss_00_t_20.0,-0.3004864454269409
240
+ Gaming_360P-63e6_crf_10_ss_00_t_20.0,-0.5150306820869446
241
+ Gaming_360P-73c7_crf_10_ss_00_t_20.0,-0.15131263434886932
242
+ Gaming_360P-7975_crf_10_ss_00_t_20.0,-0.6194827556610107
243
+ Gaming_360P-7acb_crf_10_ss_00_t_20.0,-0.24954430758953094
244
+ Gaming_480P-0109_crf_10_ss_00_t_20.0,-0.5786216259002686
245
+ Gaming_480P-062e_crf_10_ss_00_t_20.0,-0.4062584340572357
246
+ Gaming_480P-09ab_crf_10_ss_00_t_20.0,0.15486811101436615
247
+ Gaming_480P-0a03_crf_10_ss_00_t_20.0,-0.39379793405532837
248
+ Gaming_480P-0d23_crf_10_ss_00_t_20.0,-0.04697171598672867
249
+ Gaming_480P-0dbc_crf_10_ss_00_t_20.0,-0.5670577883720398
250
+ Gaming_480P-14fc_crf_10_ss_00_t_20.0,0.059320591390132904
251
+ Gaming_480P-1542_crf_10_ss_00_t_20.0,-0.4724321961402893
252
+ Gaming_480P-20ca_crf_10_ss_00_t_20.0,-0.39918023347854614
253
+ Gaming_480P-3a44_crf_10_ss_00_t_20.0,-0.2243615984916687
254
+ Gaming_480P-445b_crf_10_ss_00_t_20.0,0.07846441119909286
255
+ Gaming_480P-4560_crf_10_ss_00_t_20.0,0.09076370298862457
256
+ Gaming_480P-5a5a_crf_10_ss_00_t_20.0,-0.0749640166759491
257
+ Gaming_480P-61ee_crf_10_ss_00_t_20.0,0.3450802266597748
258
+ Gaming_480P-626a_crf_10_ss_00_t_20.0,0.04828878864645958
259
+ Gaming_480P-6491_crf_10_ss_00_t_20.0,-0.4411315619945526
260
+ Gaming_480P-6548_crf_10_ss_00_t_20.0,-0.2299058735370636
261
+ Gaming_480P-6a5a_crf_10_ss_00_t_20.0,0.02146245911717415
262
+ Gaming_480P-6c92_crf_10_ss_00_t_20.0,-0.45854100584983826
263
+ Gaming_480P-6cdc_crf_10_ss_00_t_20.0,-0.6185846924781799
264
+ Gaming_480P-6d1e_crf_10_ss_00_t_20.0,-0.544176459312439
265
+ Gaming_480P-6f4b_crf_10_ss_00_t_20.0,0.10516200214624405
266
+ Gaming_480P-75f7_crf_10_ss_00_t_20.0,-0.460842490196228
267
+ Gaming_480P-7893_crf_10_ss_00_t_20.0,0.03200993314385414
268
+ Gaming_480P-7a08_crf_10_ss_00_t_20.0,-0.02062785066664219
269
+ Gaming_480P-7ccb_crf_10_ss_00_t_20.0,0.20756368339061737
270
+ Gaming_480P-7e76_crf_10_ss_00_t_20.0,-0.5807473063468933
271
+ Gaming_720P-0fba_crf_10_ss_00_t_20.0,0.20271188020706177
272
+ Gaming_720P-0fdb_crf_10_ss_00_t_20.0,-0.1989343911409378
273
+ Gaming_720P-1035_crf_10_ss_00_t_20.0,0.008261512964963913
274
+ Gaming_720P-103a_crf_10_ss_00_t_20.0,0.17267057299613953
275
+ Gaming_720P-1cbb_crf_10_ss_00_t_20.0,0.12262128293514252
276
+ Gaming_720P-221d_crf_10_ss_00_t_20.0,-0.09713370352983475
277
+ Gaming_720P-25aa_crf_10_ss_00_t_20.0,-0.22199465334415436
278
+ Gaming_720P-2dbe_crf_10_ss_00_t_20.0,0.28142374753952026
279
+ Gaming_720P-312f_crf_10_ss_00_t_20.0,0.12014812231063843
280
+ Gaming_720P-324d_crf_10_ss_00_t_20.0,-0.14700908958911896
281
+ Gaming_720P-3524_crf_10_ss_00_t_20.0,-0.3844109773635864
282
+ Gaming_720P-40b2_crf_10_ss_00_t_20.0,0.04989404231309891
283
+ Gaming_720P-469a_crf_10_ss_00_t_20.0,0.09368189424276352
284
+ Gaming_720P-4813_crf_10_ss_00_t_20.0,0.12394984066486359
285
+ Gaming_720P-493e_crf_10_ss_00_t_20.0,-0.06288869678974152
286
+ Gaming_720P-4cda_crf_10_ss_00_t_20.0,-0.01089723315089941
287
+ Gaming_720P-5973_crf_10_ss_00_t_20.0,0.2066117376089096
288
+ Gaming_720P-5ba2_crf_10_ss_00_t_20.0,0.2876617908477783
289
+ Gaming_720P-6403_crf_10_ss_00_t_20.0,0.19595320522785187
290
+ Gaming_720P-64b0_crf_10_ss_00_t_20.0,0.3903256952762604
291
+ Gaming_720P-6625_crf_10_ss_00_t_20.0,0.021175924688577652
292
+ Gaming_720P-6658_crf_10_ss_00_t_20.0,0.046940576285123825
293
+ Gaming_720P-6a45_crf_10_ss_00_t_20.0,0.24370788037776947
294
+ Gaming_720P-7afd_crf_10_ss_00_t_20.0,-0.46551278233528137
295
+ HDR_1080P-0d31_crf_10_ss_00_t_20.0,0.16770803928375244
296
+ HDR_1080P-13eb_crf_10_ss_00_t_20.0,0.24936485290527344
297
+ HDR_1080P-1be2_crf_10_ss_00_t_20.0,0.05493580177426338
298
+ HDR_1080P-1e5b_crf_10_ss_00_t_20.0,-0.610831618309021
299
+ HDR_1080P-206d_crf_10_ss_00_t_20.0,0.2640884518623352
300
+ HDR_1080P-282a_crf_10_ss_00_t_20.0,0.05111108347773552
301
+ HDR_1080P-2d32_crf_10_ss_00_t_20.0,0.30624252557754517
302
+ HDR_1080P-3181_crf_10_ss_00_t_20.0,-0.17418614029884338
303
+ HDR_1080P-33e3_crf_10_ss_00_t_20.0,0.24802328646183014
304
+ HDR_1080P-3521_crf_10_ss_00_t_20.0,0.16592393815517426
305
+ HDR_1080P-35f4_crf_10_ss_00_t_20.0,0.2605903446674347
306
+ HDR_1080P-3749_crf_10_ss_00_t_20.0,0.2789359390735626
307
+ HDR_1080P-3a4a_crf_10_ss_00_t_20.0,0.0023975775111466646
308
+ HDR_1080P-46a4_crf_10_ss_00_t_20.0,0.004953940398991108
309
+ HDR_1080P-49d6_crf_10_ss_00_t_20.0,0.4262775480747223
310
+ HDR_1080P-4f4a_crf_10_ss_00_t_20.0,0.14271137118339539
311
+ HDR_1080P-548b_crf_10_ss_00_t_20.0,0.21278782188892365
312
+ HDR_1080P-549e_crf_10_ss_00_t_20.0,0.2541860342025757
313
+ HDR_1080P-55c4_crf_10_ss_00_t_20.0,0.10718202590942383
314
+ HDR_1080P-601b_crf_10_ss_00_t_20.0,0.2224111258983612
315
+ HDR_1080P-687e_crf_10_ss_00_t_20.0,-0.3871544599533081
316
+ HDR_1080P-68c8_crf_10_ss_00_t_20.0,0.16261683404445648
317
+ HDR_1080P-69de_crf_10_ss_00_t_20.0,0.2527512311935425
318
+ HDR_1080P-6eb7_crf_10_ss_00_t_20.0,0.2591135501861572
319
+ HDR_1080P-7825_crf_10_ss_00_t_20.0,0.19357217848300934
320
+ HDR_2160P-06ae_crf_10_ss_00_t_20.0,0.3879414498806
321
+ HDR_2160P-0e7a_crf_10_ss_00_t_20.0,-0.15520256757736206
322
+ HDR_2160P-15e2_crf_10_ss_00_t_20.0,0.41533294320106506
323
+ HDR_2160P-1743_crf_10_ss_00_t_20.0,0.22692346572875977
324
+ HDR_2160P-1e9e_crf_10_ss_00_t_20.0,0.17061661183834076
325
+ HDR_2160P-2a72_crf_10_ss_00_t_20.0,0.2801441550254822
326
+ HDR_2160P-351f_crf_10_ss_00_t_20.0,0.1757643073797226
327
+ HDR_2160P-3663_crf_10_ss_00_t_20.0,0.08599964529275894
328
+ HDR_2160P-382f_crf_10_ss_00_t_20.0,0.2133425623178482
329
+ HDR_2160P-40ab_crf_10_ss_00_t_20.0,0.15286210179328918
330
+ HDR_2160P-4348_crf_10_ss_00_t_20.0,0.21231767535209656
331
+ HDR_2160P-4581_crf_10_ss_00_t_20.0,0.22361397743225098
332
+ HDR_2160P-4dcd_crf_10_ss_00_t_20.0,-0.02937362901866436
333
+ HDR_2160P-51ea_crf_10_ss_00_t_20.0,0.06430898606777191
334
+ HDR_2160P-5275_crf_10_ss_00_t_20.0,0.23843204975128174
335
+ HDR_2160P-5926_crf_10_ss_00_t_20.0,0.5208846926689148
336
+ HDR_2160P-5c86_crf_10_ss_00_t_20.0,0.26669299602508545
337
+ HDR_2160P-5cdf_crf_10_ss_00_t_20.0,0.10134053975343704
338
+ HDR_2160P-5e25_crf_10_ss_00_t_20.0,0.23012615740299225
339
+ HDR_2160P-664d_crf_10_ss_00_t_20.0,-0.07510891556739807
340
+ HDR_2160P-6c6e_crf_10_ss_00_t_20.0,0.31120261549949646
341
+ HDR_2160P-6ed1_crf_10_ss_00_t_20.0,0.15756599605083466
342
+ HDR_2160P-6eeb_crf_10_ss_00_t_20.0,0.32350435853004456
343
+ HDR_2160P-6fa4_crf_10_ss_00_t_20.0,0.20676636695861816
344
+ HDR_2160P-6fab_crf_10_ss_00_t_20.0,-0.08512707054615021
345
+ HDR_2160P-70ca_crf_10_ss_00_t_20.0,0.2822401821613312
346
+ HowTo_1080P-0267_crf_10_ss_00_t_20.0,-0.05442722141742706
347
+ HowTo_1080P-03fd_crf_10_ss_00_t_20.0,-0.003741289023309946
348
+ HowTo_1080P-13aa_crf_10_ss_00_t_20.0,0.3590660095214844
349
+ HowTo_1080P-1f3b_crf_10_ss_00_t_20.0,0.20395024120807648
350
+ HowTo_1080P-36a9_crf_10_ss_00_t_20.0,0.17688660323619843
351
+ HowTo_1080P-4d7b_crf_10_ss_00_t_20.0,0.2585562467575073
352
+ HowTo_1080P-52bb_crf_10_ss_00_t_20.0,0.3074808120727539
353
+ HowTo_1080P-55d1_crf_10_ss_00_t_20.0,0.3106997311115265
354
+ HowTo_1080P-63e4_crf_10_ss_00_t_20.0,0.20611277222633362
355
+ HowTo_1080P-63ec_crf_10_ss_00_t_20.0,0.23974253237247467
356
+ HowTo_1080P-64f7_crf_10_ss_00_t_20.0,0.08852490782737732
357
+ HowTo_1080P-6cbf_crf_10_ss_00_t_20.0,-0.8601671457290649
358
+ HowTo_1080P-7399_crf_10_ss_00_t_20.0,0.22906184196472168
359
+ HowTo_1080P-763c_crf_10_ss_00_t_20.0,0.1284630447626114
360
+ HowTo_1080P-7cf2_crf_10_ss_00_t_20.0,-0.0019453407730907202
361
+ HowTo_1080P-7f18_crf_10_ss_00_t_20.0,0.13742108643054962
362
+ HowTo_1080P-7f4c_crf_10_ss_00_t_20.0,-0.32742589712142944
363
+ HowTo_360P-041c_crf_10_ss_00_t_20.0,-0.14733967185020447
364
+ HowTo_360P-0562_crf_10_ss_00_t_20.0,-0.13733872771263123
365
+ HowTo_360P-06be_crf_10_ss_00_t_20.0,-0.5286732316017151
366
+ HowTo_360P-09f8_crf_10_ss_00_t_20.0,-0.33128488063812256
367
+ HowTo_360P-127f_crf_10_ss_00_t_20.0,-0.2552866041660309
368
+ HowTo_360P-1823_crf_10_ss_00_t_20.0,-0.1420315057039261
369
+ HowTo_360P-18e7_crf_10_ss_00_t_20.0,-0.21254603564739227
370
+ HowTo_360P-1dba_crf_10_ss_00_t_20.0,-0.7859930992126465
371
+ HowTo_360P-2074_crf_10_ss_00_t_20.0,-0.12842093408107758
372
+ HowTo_360P-2a3b_crf_10_ss_00_t_20.0,-0.6172716617584229
373
+ HowTo_360P-2d35_crf_10_ss_00_t_20.0,-0.3624047636985779
374
+ HowTo_360P-2fd5_crf_10_ss_00_t_20.0,-0.849409282207489
375
+ HowTo_360P-3aa6_crf_10_ss_00_t_20.0,-0.3486403524875641
376
+ HowTo_360P-4276_crf_10_ss_00_t_20.0,-0.2562428414821625
377
+ HowTo_360P-4e4c_crf_10_ss_00_t_20.0,-0.3249060809612274
378
+ HowTo_360P-55e9_crf_10_ss_00_t_20.0,-0.08415725827217102
379
+ HowTo_360P-5da7_crf_10_ss_00_t_20.0,-0.09626948833465576
380
+ HowTo_360P-6093_crf_10_ss_00_t_20.0,-0.14203588664531708
381
+ HowTo_360P-6a0e_crf_10_ss_00_t_20.0,-0.8253384828567505
382
+ HowTo_360P-7083_crf_10_ss_00_t_20.0,-0.1377645581960678
383
+ HowTo_360P-7dcd_crf_10_ss_00_t_20.0,-0.2924119532108307
384
+ HowTo_360P-7fb1_crf_10_ss_00_t_20.0,-0.1403488665819168
385
+ HowTo_480P-04f1_crf_10_ss_00_t_20.0,-0.08891516923904419
386
+ HowTo_480P-0cb3_crf_10_ss_00_t_20.0,-0.01899472065269947
387
+ HowTo_480P-0d00_crf_10_ss_00_t_20.0,0.10188202559947968
388
+ HowTo_480P-0eb3_crf_10_ss_00_t_20.0,-0.6691638231277466
389
+ HowTo_480P-118d_crf_10_ss_00_t_20.0,-1.0216411352157593
390
+ HowTo_480P-15c1_crf_10_ss_00_t_20.0,-0.2236599326133728
391
+ HowTo_480P-221e_crf_10_ss_00_t_20.0,-0.22584596276283264
392
+ HowTo_480P-2610_crf_10_ss_00_t_20.0,-0.34920889139175415
393
+ HowTo_480P-32c9_crf_10_ss_00_t_20.0,-0.5158392190933228
394
+ HowTo_480P-3435_crf_10_ss_00_t_20.0,0.13385815918445587
395
+ HowTo_480P-470b_crf_10_ss_00_t_20.0,0.11777801066637039
396
+ HowTo_480P-48ac_crf_10_ss_00_t_20.0,-0.44291478395462036
397
+ HowTo_480P-4948_crf_10_ss_00_t_20.0,-0.6166248917579651
398
+ HowTo_480P-4a28_crf_10_ss_00_t_20.0,-0.05510210618376732
399
+ HowTo_480P-4b6a_crf_10_ss_00_t_20.0,-0.5419201254844666
400
+ HowTo_480P-4c99_crf_10_ss_00_t_20.0,-0.27624061703681946
401
+ HowTo_480P-56a5_crf_10_ss_00_t_20.0,0.27787038683891296
402
+ HowTo_480P-60b3_crf_10_ss_00_t_20.0,-0.0025825442280620337
403
+ HowTo_480P-63a2_crf_10_ss_00_t_20.0,-0.03997161611914635
404
+ HowTo_480P-64a2_crf_10_ss_00_t_20.0,-0.3419019877910614
405
+ HowTo_480P-7579_crf_10_ss_00_t_20.0,0.07537826150655746
406
+ HowTo_480P-7c11_crf_10_ss_00_t_20.0,-0.22513772547245026
407
+ HowTo_720P-017a_crf_10_ss_00_t_20.0,0.16399575769901276
408
+ HowTo_720P-06eb_crf_10_ss_00_t_20.0,0.3683641254901886
409
+ HowTo_720P-0a67_crf_10_ss_00_t_20.0,0.3212684392929077
410
+ HowTo_720P-0b01_crf_10_ss_00_t_20.0,0.2887319326400757
411
+ HowTo_720P-0c47_crf_10_ss_00_t_20.0,0.0664387121796608
412
+ HowTo_720P-111e_crf_10_ss_00_t_20.0,0.03504130244255066
413
+ HowTo_720P-12f7_crf_10_ss_00_t_20.0,-0.24289676547050476
414
+ HowTo_720P-21c6_crf_10_ss_00_t_20.0,-0.36010023951530457
415
+ HowTo_720P-269e_crf_10_ss_00_t_20.0,0.014523365534842014
416
+ HowTo_720P-2cc6_crf_10_ss_00_t_20.0,-0.2080845981836319
417
+ HowTo_720P-37d0_crf_10_ss_00_t_20.0,0.35439762473106384
418
+ HowTo_720P-3813_crf_10_ss_00_t_20.0,-0.047576356679201126
419
+ HowTo_720P-3a5d_crf_10_ss_00_t_20.0,-0.5944509506225586
420
+ HowTo_720P-479b_crf_10_ss_00_t_20.0,0.08950935304164886
421
+ HowTo_720P-483c_crf_10_ss_00_t_20.0,0.007335091475397348
422
+ HowTo_720P-4d55_crf_10_ss_00_t_20.0,0.23707126080989838
423
+ HowTo_720P-4d9e_crf_10_ss_00_t_20.0,0.048996277153491974
424
+ HowTo_720P-6323_crf_10_ss_00_t_20.0,0.11310966312885284
425
+ HowTo_720P-6791_crf_10_ss_00_t_20.0,-0.4036548435688019
426
+ HowTo_720P-7782_crf_10_ss_00_t_20.0,0.04075902700424194
427
+ HowTo_720P-7878_crf_10_ss_00_t_20.0,0.0672009214758873
428
+ HowTo_720P-7c38_crf_10_ss_00_t_20.0,0.2044723778963089
429
+ Lecture_1080P-011f_crf_10_ss_00_t_20.0,-0.2219090312719345
430
+ Lecture_1080P-0201_crf_10_ss_00_t_20.0,-0.1171262115240097
431
+ Lecture_1080P-0c8a_crf_10_ss_00_t_20.0,0.4405904710292816
432
+ Lecture_1080P-1709_crf_10_ss_00_t_20.0,0.1921219825744629
433
+ Lecture_1080P-1969_crf_10_ss_00_t_20.0,0.09913839399814606
434
+ Lecture_360P-03bc_crf_10_ss_00_t_20.0,-0.4409296214580536
435
+ Lecture_360P-051a_crf_10_ss_00_t_20.0,-0.5369178056716919
436
+ Lecture_360P-114f_crf_10_ss_00_t_20.0,0.3088432550430298
437
+ Lecture_360P-20c3_crf_10_ss_00_t_20.0,-0.21484844386577606
438
+ Lecture_360P-2276_crf_10_ss_00_t_20.0,0.11431685090065002
439
+ Lecture_360P-27db_crf_10_ss_00_t_20.0,-0.2388598471879959
440
+ Lecture_360P-2c55_crf_10_ss_00_t_20.0,-0.14444425702095032
441
+ Lecture_360P-2d1f_crf_10_ss_00_t_20.0,0.048251956701278687
442
+ Lecture_360P-30eb_crf_10_ss_00_t_20.0,-0.11991942673921585
443
+ Lecture_360P-311d_crf_10_ss_00_t_20.0,-0.04562077671289444
444
+ Lecture_360P-3590_crf_10_ss_00_t_20.0,0.06749514490365982
445
+ Lecture_360P-44c2_crf_10_ss_00_t_20.0,-0.16253098845481873
446
+ Lecture_360P-4bb4_crf_10_ss_00_t_20.0,0.0494227260351181
447
+ Lecture_360P-4f00_crf_10_ss_00_t_20.0,-0.29087162017822266
448
+ Lecture_360P-506c_crf_10_ss_00_t_20.0,-0.1663275957107544
449
+ Lecture_360P-5594_crf_10_ss_00_t_20.0,-0.0018420667620375752
450
+ Lecture_360P-5779_crf_10_ss_00_t_20.0,-0.0977320447564125
451
+ Lecture_360P-5aea_crf_10_ss_00_t_20.0,-0.25345003604888916
452
+ Lecture_360P-5d0a_crf_10_ss_00_t_20.0,-0.22168061137199402
453
+ Lecture_360P-6656_crf_10_ss_00_t_20.0,-0.09554187953472137
454
+ Lecture_360P-6d29_crf_10_ss_00_t_20.0,-0.42822808027267456
455
+ Lecture_360P-7550_crf_10_ss_00_t_20.0,-0.3358891010284424
456
+ Lecture_360P-7a57_crf_10_ss_00_t_20.0,-0.1240786537528038
457
+ Lecture_360P-7f7e_crf_10_ss_00_t_20.0,-0.0630766972899437
458
+ Lecture_480P-02f2_crf_10_ss_00_t_20.0,-0.2791328728199005
459
+ Lecture_480P-11df_crf_10_ss_00_t_20.0,-0.0582139752805233
460
+ Lecture_480P-181a_crf_10_ss_00_t_20.0,-1.2198055982589722
461
+ Lecture_480P-1ec3_crf_10_ss_00_t_20.0,-0.10353770852088928
462
+ Lecture_480P-2513_crf_10_ss_00_t_20.0,-1.0750513076782227
463
+ Lecture_480P-2655_crf_10_ss_00_t_20.0,-0.19436879456043243
464
+ Lecture_480P-2ed0_crf_10_ss_00_t_20.0,-1.2898958921432495
465
+ Lecture_480P-369f_crf_10_ss_00_t_20.0,0.28084611892700195
466
+ Lecture_480P-3bdc_crf_10_ss_00_t_20.0,-0.48340439796447754
467
+ Lecture_480P-41b7_crf_10_ss_00_t_20.0,-0.08611790835857391
468
+ Lecture_480P-4272_crf_10_ss_00_t_20.0,0.023923341184854507
469
+ Lecture_480P-42c3_crf_10_ss_00_t_20.0,-0.09219931066036224
470
+ Lecture_480P-4bc3_crf_10_ss_00_t_20.0,0.14702504873275757
471
+ Lecture_480P-4c86_crf_10_ss_00_t_20.0,-0.0029055909253656864
472
+ Lecture_480P-5aee_crf_10_ss_00_t_20.0,-0.5884414911270142
473
+ Lecture_480P-5cd7_crf_10_ss_00_t_20.0,0.12839816510677338
474
+ Lecture_480P-5f3a_crf_10_ss_00_t_20.0,-0.6643685102462769
475
+ Lecture_480P-6191_crf_10_ss_00_t_20.0,-0.13251043856143951
476
+ Lecture_480P-6b1e_crf_10_ss_00_t_20.0,4.4789787352783605e-05
477
+ Lecture_480P-71c0_crf_10_ss_00_t_20.0,-0.14076828956604004
478
+ Lecture_480P-71d6_crf_10_ss_00_t_20.0,-0.18623808026313782
479
+ Lecture_480P-7205_crf_10_ss_00_t_20.0,-0.18066969513893127
480
+ Lecture_480P-73f6_crf_10_ss_00_t_20.0,-0.0887434184551239
481
+ Lecture_480P-74cf_crf_10_ss_00_t_20.0,-0.09532177448272705
482
+ Lecture_480P-74ea_crf_10_ss_00_t_20.0,-0.13082043826580048
483
+ Lecture_480P-7d77_crf_10_ss_00_t_20.0,0.03603413328528404
484
+ Lecture_480P-7e55_crf_10_ss_00_t_20.0,-0.016469968482851982
485
+ Lecture_480P-7eec_crf_10_ss_00_t_20.0,-0.2920857071876526
486
+ Lecture_720P-003a_crf_10_ss_00_t_20.0,0.07089962065219879
487
+ Lecture_720P-07e0_crf_10_ss_00_t_20.0,0.24263416230678558
488
+ Lecture_720P-094d_crf_10_ss_00_t_20.0,-0.08431274443864822
489
+ Lecture_720P-0f64_crf_10_ss_00_t_20.0,0.026989944279193878
490
+ Lecture_720P-1033_crf_10_ss_00_t_20.0,0.009073604829609394
491
+ Lecture_720P-10bc_crf_10_ss_00_t_20.0,-0.3160964846611023
492
+ Lecture_720P-11e7_crf_10_ss_00_t_20.0,-0.6213135719299316
493
+ Lecture_720P-1e62_crf_10_ss_00_t_20.0,0.13662776350975037
494
+ Lecture_720P-1f22_crf_10_ss_00_t_20.0,0.19141517579555511
495
+ Lecture_720P-2442_crf_10_ss_00_t_20.0,-0.0752953514456749
496
+ Lecture_720P-2b0f_crf_10_ss_00_t_20.0,0.1271035522222519
497
+ Lecture_720P-2f38_crf_10_ss_00_t_20.0,0.018141865730285645
498
+ Lecture_720P-2f8c_crf_10_ss_00_t_20.0,0.07348854839801788
499
+ Lecture_720P-3b7f_crf_10_ss_00_t_20.0,0.2563660442829132
500
+ Lecture_720P-3f9f_crf_10_ss_00_t_20.0,0.01934533193707466
501
+ Lecture_720P-4c87_crf_10_ss_00_t_20.0,0.020523563027381897
502
+ Lecture_720P-50b9_crf_10_ss_00_t_20.0,0.13618752360343933
503
+ Lecture_720P-5120_crf_10_ss_00_t_20.0,0.2536541521549225
504
+ Lecture_720P-53a1_crf_10_ss_00_t_20.0,0.03375561535358429
505
+ Lecture_720P-5725_crf_10_ss_00_t_20.0,0.29250288009643555
506
+ Lecture_720P-5c7e_crf_10_ss_00_t_20.0,0.11085060983896255
507
+ Lecture_720P-6016_crf_10_ss_00_t_20.0,-0.3216858208179474
508
+ Lecture_720P-6951_crf_10_ss_00_t_20.0,0.2918250262737274
509
+ Lecture_720P-7189_crf_10_ss_00_t_20.0,0.1928102970123291
510
+ Lecture_720P-7dcf_crf_10_ss_00_t_20.0,0.048568859696388245
511
+ Lecture_720P-7e40_crf_10_ss_00_t_20.0,0.3506835401058197
512
+ LiveMusic_1080P-14af_crf_10_ss_00_t_20.0,0.3754866421222687
513
+ LiveMusic_1080P-157b_crf_10_ss_00_t_20.0,0.316049188375473
514
+ LiveMusic_1080P-1ace_crf_10_ss_00_t_20.0,0.2570914030075073
515
+ LiveMusic_1080P-21dd_crf_10_ss_00_t_20.0,0.13258084654808044
516
+ LiveMusic_1080P-28fe_crf_10_ss_00_t_20.0,0.03049543872475624
517
+ LiveMusic_1080P-2930_crf_10_ss_00_t_20.0,0.07499449700117111
518
+ LiveMusic_1080P-2b7a_crf_10_ss_00_t_20.0,0.14189642667770386
519
+ LiveMusic_1080P-2f7f_crf_10_ss_00_t_20.0,-0.03308267891407013
520
+ LiveMusic_1080P-3549_crf_10_ss_00_t_20.0,0.2526918053627014
521
+ LiveMusic_1080P-3f95_crf_10_ss_00_t_20.0,0.2516109049320221
522
+ LiveMusic_1080P-48d5_crf_10_ss_00_t_20.0,0.18568722903728485
523
+ LiveMusic_1080P-51f6_crf_10_ss_00_t_20.0,0.022960813716053963
524
+ LiveMusic_1080P-541f_crf_10_ss_00_t_20.0,0.23439541459083557
525
+ LiveMusic_1080P-59b3_crf_10_ss_00_t_20.0,-0.01509712915867567
526
+ LiveMusic_1080P-6b1c_crf_10_ss_00_t_20.0,0.09783961623907089
527
+ LiveMusic_1080P-6bbe_crf_10_ss_00_t_20.0,0.13670875132083893
528
+ LiveMusic_1080P-6d1a_crf_10_ss_00_t_20.0,0.08690809458494186
529
+ LiveMusic_1080P-6fe2_crf_10_ss_00_t_20.0,-0.10271526873111725
530
+ LiveMusic_1080P-77e8_crf_10_ss_00_t_20.0,-0.3547525703907013
531
+ LiveMusic_1080P-7948_crf_10_ss_00_t_20.0,-0.14826808869838715
532
+ LiveMusic_1080P-7ead_crf_10_ss_00_t_20.0,-0.016734585165977478
533
+ LiveMusic_360P-121f_crf_10_ss_00_t_20.0,-0.06866976618766785
534
+ LiveMusic_360P-1d94_crf_10_ss_00_t_20.0,-0.3435584008693695
535
+ LiveMusic_360P-22c5_crf_10_ss_00_t_20.0,-0.23542600870132446
536
+ LiveMusic_360P-2508_crf_10_ss_00_t_20.0,-0.10742142051458359
537
+ LiveMusic_360P-265c_crf_10_ss_00_t_20.0,-0.7161692380905151
538
+ LiveMusic_360P-2b0f_crf_10_ss_00_t_20.0,-0.2513750195503235
539
+ LiveMusic_360P-3979_crf_10_ss_00_t_20.0,-1.0006178617477417
540
+ LiveMusic_360P-3b96_crf_10_ss_00_t_20.0,-0.7666178345680237
541
+ LiveMusic_360P-3be0_crf_10_ss_00_t_20.0,-0.9718667268753052
542
+ LiveMusic_360P-48d5_crf_10_ss_00_t_20.0,-0.051083192229270935
543
+ LiveMusic_360P-5281_crf_10_ss_00_t_20.0,0.06945667415857315
544
+ LiveMusic_360P-54d0_crf_10_ss_00_t_20.0,-0.014346842654049397
545
+ LiveMusic_360P-5b57_crf_10_ss_00_t_20.0,-0.5597842335700989
546
+ LiveMusic_360P-6266_crf_10_ss_00_t_20.0,-0.11040577292442322
547
+ LiveMusic_360P-6640_crf_10_ss_00_t_20.0,-0.31842413544654846
548
+ LiveMusic_360P-6a65_crf_10_ss_00_t_20.0,-0.5956013202667236
549
+ LiveMusic_360P-7483_crf_10_ss_00_t_20.0,-0.20132121443748474
550
+ LiveMusic_480P-0638_crf_10_ss_00_t_20.0,-0.4586467742919922
551
+ LiveMusic_480P-1a91_crf_10_ss_00_t_20.0,-0.23827487230300903
552
+ LiveMusic_480P-2019_crf_10_ss_00_t_20.0,-0.002894734963774681
553
+ LiveMusic_480P-2a5e_crf_10_ss_00_t_20.0,-0.24293072521686554
554
+ LiveMusic_480P-34be_crf_10_ss_00_t_20.0,-0.19878269731998444
555
+ LiveMusic_480P-38f3_crf_10_ss_00_t_20.0,-0.348869651556015
556
+ LiveMusic_480P-3d03_crf_10_ss_00_t_20.0,-0.48905739188194275
557
+ LiveMusic_480P-459c_crf_10_ss_00_t_20.0,-0.553406834602356
558
+ LiveMusic_480P-474a_crf_10_ss_00_t_20.0,-1.2454133033752441
559
+ LiveMusic_480P-4c3a_crf_10_ss_00_t_20.0,-0.43815672397613525
560
+ LiveMusic_480P-4f88_crf_10_ss_00_t_20.0,-0.1961638331413269
561
+ LiveMusic_480P-559d_crf_10_ss_00_t_20.0,-0.01298339944332838
562
+ LiveMusic_480P-58fb_crf_10_ss_00_t_20.0,-0.1506832242012024
563
+ LiveMusic_480P-61ef_crf_10_ss_00_t_20.0,-0.3278842270374298
564
+ LiveMusic_480P-6542_crf_10_ss_00_t_20.0,-0.17278476059436798
565
+ LiveMusic_480P-65ca_crf_10_ss_00_t_20.0,-0.10877186805009842
566
+ LiveMusic_720P-0cd5_crf_10_ss_00_t_20.0,0.15998567640781403
567
+ LiveMusic_720P-0d9f_crf_10_ss_00_t_20.0,-0.06484653055667877
568
+ LiveMusic_720P-2620_crf_10_ss_00_t_20.0,0.053088340908288956
569
+ LiveMusic_720P-267b_crf_10_ss_00_t_20.0,-0.07478070259094238
570
+ LiveMusic_720P-289b_crf_10_ss_00_t_20.0,-0.5046443939208984
571
+ LiveMusic_720P-3320_crf_10_ss_00_t_20.0,-0.11715777963399887
572
+ LiveMusic_720P-4ae2_crf_10_ss_00_t_20.0,-0.10658333450555801
573
+ LiveMusic_720P-58db_crf_10_ss_00_t_20.0,0.2669372260570526
574
+ LiveMusic_720P-6343_crf_10_ss_00_t_20.0,-0.09173611551523209
575
+ LiveMusic_720P-6452_crf_10_ss_00_t_20.0,-0.3233673870563507
576
+ LiveMusic_720P-653e_crf_10_ss_00_t_20.0,-0.2009538859128952
577
+ LiveMusic_720P-65f6_crf_10_ss_00_t_20.0,0.19513605535030365
578
+ LiveMusic_720P-66df_crf_10_ss_00_t_20.0,0.48063820600509644
579
+ LiveMusic_720P-71c5_crf_10_ss_00_t_20.0,-0.06628824025392532
580
+ LyricVideo_1080P-0075_crf_10_ss_00_t_20.0,-0.07369454205036163
581
+ LyricVideo_1080P-0625_crf_10_ss_00_t_20.0,0.2512013614177704
582
+ LyricVideo_1080P-16b6_crf_10_ss_00_t_20.0,0.3689934313297272
583
+ LyricVideo_1080P-1b04_crf_10_ss_00_t_20.0,0.1733195185661316
584
+ LyricVideo_1080P-1d75_crf_10_ss_00_t_20.0,0.3197920322418213
585
+ LyricVideo_1080P-28e8_crf_10_ss_00_t_20.0,-0.2860475480556488
586
+ LyricVideo_1080P-2946_crf_10_ss_00_t_20.0,0.3207060992717743
587
+ LyricVideo_1080P-3803_crf_10_ss_00_t_20.0,0.06161222234368324
588
+ LyricVideo_1080P-41ee_crf_10_ss_00_t_20.0,0.18580639362335205
589
+ LyricVideo_1080P-4b40_crf_10_ss_00_t_20.0,-0.0029530441388487816
590
+ LyricVideo_1080P-5461_crf_10_ss_00_t_20.0,0.09703975915908813
591
+ LyricVideo_1080P-584f_crf_10_ss_00_t_20.0,-0.024947181344032288
592
+ LyricVideo_1080P-63d4_crf_10_ss_00_t_20.0,0.2757125198841095
593
+ LyricVideo_1080P-63d9_crf_10_ss_00_t_20.0,0.03956252709031105
594
+ LyricVideo_1080P-725e_crf_10_ss_00_t_20.0,0.40148645639419556
595
+ LyricVideo_1080P-756a_crf_10_ss_00_t_20.0,0.2805219292640686
596
+ LyricVideo_360P-0ac7_crf_10_ss_00_t_20.0,-0.5781822204589844
597
+ LyricVideo_360P-17ce_crf_10_ss_00_t_20.0,-0.35784199833869934
598
+ LyricVideo_360P-3afc_crf_10_ss_00_t_20.0,-0.55953449010849
599
+ LyricVideo_360P-5868_crf_10_ss_00_t_20.0,-0.326636403799057
600
+ LyricVideo_360P-5e87_crf_10_ss_00_t_20.0,-0.38367775082588196
601
+ LyricVideo_480P-0a5b_crf_10_ss_00_t_20.0,0.23509064316749573
602
+ LyricVideo_480P-0f72_crf_10_ss_00_t_20.0,-0.6475043892860413
603
+ LyricVideo_480P-1484_crf_10_ss_00_t_20.0,-0.14462417364120483
604
+ LyricVideo_480P-200a_crf_10_ss_00_t_20.0,-0.0344262532889843
605
+ LyricVideo_480P-2c50_crf_10_ss_00_t_20.0,-0.4398241937160492
606
+ LyricVideo_480P-3b2c_crf_10_ss_00_t_20.0,-0.059392742812633514
607
+ LyricVideo_480P-3ccf_crf_10_ss_00_t_20.0,-0.559211254119873
608
+ LyricVideo_480P-4346_crf_10_ss_00_t_20.0,-0.20454907417297363
609
+ LyricVideo_480P-51e4_crf_10_ss_00_t_20.0,-0.09033112972974777
610
+ LyricVideo_480P-5c17_crf_10_ss_00_t_20.0,-0.029219865798950195
611
+ LyricVideo_480P-6fca_crf_10_ss_00_t_20.0,-0.5806787610054016
612
+ LyricVideo_480P-7919_crf_10_ss_00_t_20.0,-0.4311416745185852
613
+ LyricVideo_720P-068d_crf_10_ss_00_t_20.0,0.19106002151966095
614
+ LyricVideo_720P-081c_crf_10_ss_00_t_20.0,-0.021468229591846466
615
+ LyricVideo_720P-0940_crf_10_ss_00_t_20.0,-0.4083844721317291
616
+ LyricVideo_720P-09ed_crf_10_ss_00_t_20.0,-0.18891239166259766
617
+ LyricVideo_720P-0ae4_crf_10_ss_00_t_20.0,-0.018143588677048683
618
+ LyricVideo_720P-1c89_crf_10_ss_00_t_20.0,0.16553671658039093
619
+ LyricVideo_720P-2d24_crf_10_ss_00_t_20.0,0.3359827995300293
620
+ LyricVideo_720P-36fb_crf_10_ss_00_t_20.0,0.0823010802268982
621
+ LyricVideo_720P-4253_crf_10_ss_00_t_20.0,0.20455707609653473
622
+ LyricVideo_720P-47a9_crf_10_ss_00_t_20.0,-0.5009722709655762
623
+ LyricVideo_720P-59ed_crf_10_ss_00_t_20.0,0.28281646966934204
624
+ LyricVideo_720P-5d3a_crf_10_ss_00_t_20.0,0.27733805775642395
625
+ LyricVideo_720P-6f0c_crf_10_ss_00_t_20.0,-0.3244709372520447
626
+ LyricVideo_720P-6fc9_crf_10_ss_00_t_20.0,-0.667310893535614
627
+ LyricVideo_720P-7003_crf_10_ss_00_t_20.0,0.2298792153596878
628
+ LyricVideo_720P-739a_crf_10_ss_00_t_20.0,-0.4780838191509247
629
+ LyricVideo_720P-74a0_crf_10_ss_00_t_20.0,-0.00960242934525013
630
+ LyricVideo_720P-7f44_crf_10_ss_00_t_20.0,0.26495125889778137
631
+ MusicVideo_1080P-04b6_crf_10_ss_00_t_20.0,0.19163788855075836
632
+ MusicVideo_1080P-0706_crf_10_ss_00_t_20.0,0.1595003604888916
633
+ MusicVideo_1080P-0860_crf_10_ss_00_t_20.0,0.11084643751382828
634
+ MusicVideo_1080P-106d_crf_10_ss_00_t_20.0,-0.2597818672657013
635
+ MusicVideo_1080P-16e6_crf_10_ss_00_t_20.0,0.36175087094306946
636
+ MusicVideo_1080P-18f5_crf_10_ss_00_t_20.0,-0.1403702348470688
637
+ MusicVideo_1080P-1a53_crf_10_ss_00_t_20.0,-0.11002254486083984
638
+ MusicVideo_1080P-24f5_crf_10_ss_00_t_20.0,0.39151960611343384
639
+ MusicVideo_1080P-2b2b_crf_10_ss_00_t_20.0,0.329082190990448
640
+ MusicVideo_1080P-2d1c_crf_10_ss_00_t_20.0,0.04033138230443001
641
+ MusicVideo_1080P-34ff_crf_10_ss_00_t_20.0,0.031740859150886536
642
+ MusicVideo_1080P-3a50_crf_10_ss_00_t_20.0,-0.12353379279375076
643
+ MusicVideo_1080P-453f_crf_10_ss_00_t_20.0,0.23356404900550842
644
+ MusicVideo_1080P-4671_crf_10_ss_00_t_20.0,-0.34419044852256775
645
+ MusicVideo_1080P-4b61_crf_10_ss_00_t_20.0,0.17912325263023376
646
+ MusicVideo_1080P-5072_crf_10_ss_00_t_20.0,0.27502545714378357
647
+ MusicVideo_1080P-55af_crf_10_ss_00_t_20.0,-0.0010371907847002149
648
+ MusicVideo_1080P-59c4_crf_10_ss_00_t_20.0,0.050919827073812485
649
+ MusicVideo_1080P-6260_crf_10_ss_00_t_20.0,-0.4492184817790985
650
+ MusicVideo_1080P-65c6_crf_10_ss_00_t_20.0,0.20951974391937256
651
+ MusicVideo_1080P-6c1d_crf_10_ss_00_t_20.0,0.4067556858062744
652
+ MusicVideo_1080P-6c88_crf_10_ss_00_t_20.0,-0.09183119237422943
653
+ MusicVideo_1080P-6fb1_crf_10_ss_00_t_20.0,0.21574491262435913
654
+ MusicVideo_1080P-7265_crf_10_ss_00_t_20.0,0.013129218481481075
655
+ MusicVideo_1080P-7706_crf_10_ss_00_t_20.0,-0.2682283818721771
656
+ MusicVideo_1080P-7f2e_crf_10_ss_00_t_20.0,0.09731220453977585
657
+ MusicVideo_360P-08cb_crf_10_ss_00_t_20.0,-0.10388845205307007
658
+ MusicVideo_360P-17e4_crf_10_ss_00_t_20.0,-0.22734642028808594
659
+ MusicVideo_360P-24b0_crf_10_ss_00_t_20.0,0.01360052078962326
660
+ MusicVideo_360P-2fcb_crf_10_ss_00_t_20.0,0.05665929242968559
661
+ MusicVideo_360P-462f_crf_10_ss_00_t_20.0,0.042924731969833374
662
+ MusicVideo_360P-4de7_crf_10_ss_00_t_20.0,-0.3246922194957733
663
+ MusicVideo_360P-5358_crf_10_ss_00_t_20.0,-0.30963411927223206
664
+ MusicVideo_360P-5578_crf_10_ss_00_t_20.0,-0.2800394594669342
665
+ MusicVideo_360P-5699_crf_10_ss_00_t_20.0,0.16783708333969116
666
+ MusicVideo_360P-5f07_crf_10_ss_00_t_20.0,-0.3308020830154419
667
+ MusicVideo_360P-5f8d_crf_10_ss_00_t_20.0,-0.7657848000526428
668
+ MusicVideo_360P-648c_crf_10_ss_00_t_20.0,-0.3424803912639618
669
+ MusicVideo_360P-7b94_crf_10_ss_00_t_20.0,-0.6471225619316101
670
+ MusicVideo_480P-0448_crf_10_ss_00_t_20.0,-0.1258583813905716
671
+ MusicVideo_480P-12fb_crf_10_ss_00_t_20.0,-0.26713865995407104
672
+ MusicVideo_480P-184c_crf_10_ss_00_t_20.0,0.13324101269245148
673
+ MusicVideo_480P-1eee_crf_10_ss_00_t_20.0,-0.3615247309207916
674
+ MusicVideo_480P-2de0_crf_10_ss_00_t_20.0,-0.12779155373573303
675
+ MusicVideo_480P-3aa2_crf_10_ss_00_t_20.0,-0.508448600769043
676
+ MusicVideo_480P-3c8b_crf_10_ss_00_t_20.0,-0.4503435790538788
677
+ MusicVideo_480P-41ce_crf_10_ss_00_t_20.0,0.08959078043699265
678
+ MusicVideo_480P-483b_crf_10_ss_00_t_20.0,-1.2445425987243652
679
+ MusicVideo_480P-4cc8_crf_10_ss_00_t_20.0,0.029178617522120476
680
+ MusicVideo_480P-5461_crf_10_ss_00_t_20.0,0.12718123197555542
681
+ MusicVideo_480P-5830_crf_10_ss_00_t_20.0,-0.37911343574523926
682
+ MusicVideo_480P-6026_crf_10_ss_00_t_20.0,-0.2877539098262787
683
+ MusicVideo_480P-61ba_crf_10_ss_00_t_20.0,-0.9893490672111511
684
+ MusicVideo_480P-66b2_crf_10_ss_00_t_20.0,-0.4712302088737488
685
+ MusicVideo_480P-6fb6_crf_10_ss_00_t_20.0,0.09196262061595917
686
+ MusicVideo_480P-7643_crf_10_ss_00_t_20.0,-0.408475399017334
687
+ MusicVideo_480P-7955_crf_10_ss_00_t_20.0,-0.08550363034009933
688
+ MusicVideo_720P-0355_crf_10_ss_00_t_20.0,-0.7530515193939209
689
+ MusicVideo_720P-0752_crf_10_ss_00_t_20.0,0.20246505737304688
690
+ MusicVideo_720P-14f0_crf_10_ss_00_t_20.0,-0.3720395863056183
691
+ MusicVideo_720P-2d7d_crf_10_ss_00_t_20.0,-0.3036419153213501
692
+ MusicVideo_720P-3698_crf_10_ss_00_t_20.0,0.28531137108802795
693
+ MusicVideo_720P-3b11_crf_10_ss_00_t_20.0,-0.054048966616392136
694
+ MusicVideo_720P-3c4c_crf_10_ss_00_t_20.0,0.3347880244255066
695
+ MusicVideo_720P-44c1_crf_10_ss_00_t_20.0,0.35206907987594604
696
+ MusicVideo_720P-4895_crf_10_ss_00_t_20.0,0.1973358392715454
697
+ MusicVideo_720P-4ad2_crf_10_ss_00_t_20.0,0.1359579861164093
698
+ MusicVideo_720P-575d_crf_10_ss_00_t_20.0,-0.6041552424430847
699
+ MusicVideo_720P-5c9c_crf_10_ss_00_t_20.0,-0.6049460768699646
700
+ MusicVideo_720P-62df_crf_10_ss_00_t_20.0,0.2855309247970581
701
+ MusicVideo_720P-734f_crf_10_ss_00_t_20.0,0.12964066863059998
702
+ MusicVideo_720P-7501_crf_10_ss_00_t_20.0,-0.2234744429588318
703
+ MusicVideo_720P-7bcf_crf_10_ss_00_t_20.0,-0.07494824379682541
704
+ NewsClip_1080P-00c3_crf_10_ss_00_t_20.0,0.33407479524612427
705
+ NewsClip_1080P-02fd_crf_10_ss_00_t_20.0,0.30888864398002625
706
+ NewsClip_1080P-06df_crf_10_ss_00_t_20.0,0.328583687543869
707
+ NewsClip_1080P-0abf_crf_10_ss_00_t_20.0,0.0024055461399257183
708
+ NewsClip_1080P-1db0_crf_10_ss_00_t_20.0,0.26371586322784424
709
+ NewsClip_1080P-22b3_crf_10_ss_00_t_20.0,0.012715938501060009
710
+ NewsClip_1080P-27fb_crf_10_ss_00_t_20.0,0.3392021954059601
711
+ NewsClip_1080P-2eb0_crf_10_ss_00_t_20.0,0.5290466547012329
712
+ NewsClip_1080P-3427_crf_10_ss_00_t_20.0,0.29267019033432007
713
+ NewsClip_1080P-3c7c_crf_10_ss_00_t_20.0,0.353539377450943
714
+ NewsClip_1080P-4241_crf_10_ss_00_t_20.0,0.1326533406972885
715
+ NewsClip_1080P-48ae_crf_10_ss_00_t_20.0,0.04576379060745239
716
+ NewsClip_1080P-5b53_crf_10_ss_00_t_20.0,0.39231792092323303
717
+ NewsClip_1080P-5be1_crf_10_ss_00_t_20.0,0.26651522517204285
718
+ NewsClip_1080P-632e_crf_10_ss_00_t_20.0,-0.0480235293507576
719
+ NewsClip_1080P-67dc_crf_10_ss_00_t_20.0,0.1666216403245926
720
+ NewsClip_1080P-7816_crf_10_ss_00_t_20.0,0.027969922870397568
721
+ NewsClip_360P-0376_crf_10_ss_00_t_20.0,-0.30717766284942627
722
+ NewsClip_360P-0c17_crf_10_ss_00_t_20.0,-0.2631968557834625
723
+ NewsClip_360P-0ff8_crf_10_ss_00_t_20.0,-0.05791521444916725
724
+ NewsClip_360P-1093_crf_10_ss_00_t_20.0,-0.28666549921035767
725
+ NewsClip_360P-12fc_crf_10_ss_00_t_20.0,-0.3971593976020813
726
+ NewsClip_360P-1b1c_crf_10_ss_00_t_20.0,-0.02391955256462097
727
+ NewsClip_360P-1e1c_crf_10_ss_00_t_20.0,-0.3328765034675598
728
+ NewsClip_360P-1eae_crf_10_ss_00_t_20.0,-0.14265912771224976
729
+ NewsClip_360P-22ce_crf_10_ss_00_t_20.0,-0.533389687538147
730
+ NewsClip_360P-274e_crf_10_ss_00_t_20.0,-0.14163534343242645
731
+ NewsClip_360P-2986_crf_10_ss_00_t_20.0,-0.4154365062713623
732
+ NewsClip_360P-2c91_crf_10_ss_00_t_20.0,-0.5142548680305481
733
+ NewsClip_360P-311a_crf_10_ss_00_t_20.0,-0.7249032258987427
734
+ NewsClip_360P-3451_crf_10_ss_00_t_20.0,-0.8163321614265442
735
+ NewsClip_360P-4288_crf_10_ss_00_t_20.0,-0.07993138581514359
736
+ NewsClip_360P-439a_crf_10_ss_00_t_20.0,-0.17834092676639557
737
+ NewsClip_360P-4417_crf_10_ss_00_t_20.0,-0.40494856238365173
738
+ NewsClip_360P-5052_crf_10_ss_00_t_20.0,-0.8417869806289673
739
+ NewsClip_360P-5752_crf_10_ss_00_t_20.0,-0.23456037044525146
740
+ NewsClip_360P-5bcc_crf_10_ss_00_t_20.0,-0.25182420015335083
741
+ NewsClip_360P-5f3b_crf_10_ss_00_t_20.0,-0.6101021766662598
742
+ NewsClip_360P-66ae_crf_10_ss_00_t_20.0,-0.2247728854417801
743
+ NewsClip_360P-67ce_crf_10_ss_00_t_20.0,-0.3278627395629883
744
+ NewsClip_360P-7a96_crf_10_ss_00_t_20.0,-0.7320091724395752
745
+ NewsClip_480P-0269_crf_10_ss_00_t_20.0,-0.39328691363334656
746
+ NewsClip_480P-0ce5_crf_10_ss_00_t_20.0,-0.2207818478345871
747
+ NewsClip_480P-15fa_crf_10_ss_00_t_20.0,0.003317906754091382
748
+ NewsClip_480P-2407_crf_10_ss_00_t_20.0,-0.6754840016365051
749
+ NewsClip_480P-2642_crf_10_ss_00_t_20.0,-0.4594123959541321
750
+ NewsClip_480P-28eb_crf_10_ss_00_t_20.0,-0.35218557715415955
751
+ NewsClip_480P-2b9b_crf_10_ss_00_t_20.0,-0.5244261622428894
752
+ NewsClip_480P-2ba7_crf_10_ss_00_t_20.0,-0.40917685627937317
753
+ NewsClip_480P-31bd_crf_10_ss_00_t_20.0,0.042129211127758026
754
+ NewsClip_480P-3672_crf_10_ss_00_t_20.0,0.09609385579824448
755
+ NewsClip_480P-36d0_crf_10_ss_00_t_20.0,0.05948812514543533
756
+ NewsClip_480P-4072_crf_10_ss_00_t_20.0,-0.507016658782959
757
+ NewsClip_480P-41b1_crf_10_ss_00_t_20.0,-0.083841472864151
758
+ NewsClip_480P-437c_crf_10_ss_00_t_20.0,-0.23963089287281036
759
+ NewsClip_480P-49c9_crf_10_ss_00_t_20.0,0.13990695774555206
760
+ NewsClip_480P-4a9f_crf_10_ss_00_t_20.0,-0.32725971937179565
761
+ NewsClip_480P-4e77_crf_10_ss_00_t_20.0,-0.23717162013053894
762
+ NewsClip_480P-543f_crf_10_ss_00_t_20.0,-0.14466582238674164
763
+ NewsClip_480P-5a3b_crf_10_ss_00_t_20.0,-0.5422706007957458
764
+ NewsClip_480P-5e7f_crf_10_ss_00_t_20.0,-0.1588512808084488
765
+ NewsClip_480P-606e_crf_10_ss_00_t_20.0,-0.3098931312561035
766
+ NewsClip_480P-6615_crf_10_ss_00_t_20.0,-0.07240384072065353
767
+ NewsClip_480P-696e_crf_10_ss_00_t_20.0,-0.3248410224914551
768
+ NewsClip_480P-6bfa_crf_10_ss_00_t_20.0,0.03290979936718941
769
+ NewsClip_480P-7232_crf_10_ss_00_t_20.0,-0.3581676185131073
770
+ NewsClip_480P-72b8_crf_10_ss_00_t_20.0,-0.0598176047205925
771
+ NewsClip_480P-7a0d_crf_10_ss_00_t_20.0,0.12959308922290802
772
+ NewsClip_720P-04ba_crf_10_ss_00_t_20.0,-0.04724152386188507
773
+ NewsClip_720P-0c81_crf_10_ss_00_t_20.0,0.08364838361740112
774
+ NewsClip_720P-1971_crf_10_ss_00_t_20.0,0.25998252630233765
775
+ NewsClip_720P-2182_crf_10_ss_00_t_20.0,0.05338030308485031
776
+ NewsClip_720P-23e0_crf_10_ss_00_t_20.0,0.3192235231399536
777
+ NewsClip_720P-2882_crf_10_ss_00_t_20.0,0.061259690672159195
778
+ NewsClip_720P-35d9_crf_10_ss_00_t_20.0,-0.26593518257141113
779
+ NewsClip_720P-37f7_crf_10_ss_00_t_20.0,0.08582422882318497
780
+ NewsClip_720P-4603_crf_10_ss_00_t_20.0,-0.06874814629554749
781
+ NewsClip_720P-4e87_crf_10_ss_00_t_20.0,0.31772589683532715
782
+ NewsClip_720P-5564_crf_10_ss_00_t_20.0,0.3277476131916046
783
+ NewsClip_720P-5787_crf_10_ss_00_t_20.0,0.3242528736591339
784
+ NewsClip_720P-579b_crf_10_ss_00_t_20.0,-0.24323442578315735
785
+ NewsClip_720P-5d89_crf_10_ss_00_t_20.0,0.1948193460702896
786
+ NewsClip_720P-6016_crf_10_ss_00_t_20.0,0.408406138420105
787
+ NewsClip_720P-6106_crf_10_ss_00_t_20.0,-0.21966801583766937
788
+ NewsClip_720P-672c_crf_10_ss_00_t_20.0,0.18684490025043488
789
+ NewsClip_720P-6a19_crf_10_ss_00_t_20.0,0.006203691940754652
790
+ NewsClip_720P-6cde_crf_10_ss_00_t_20.0,0.4314240515232086
791
+ NewsClip_720P-72d2_crf_10_ss_00_t_20.0,0.30965396761894226
792
+ NewsClip_720P-739b_crf_10_ss_00_t_20.0,0.23305904865264893
793
+ NewsClip_720P-7745_crf_10_ss_00_t_20.0,0.45530781149864197
794
+ NewsClip_720P-7b7e_crf_10_ss_00_t_20.0,0.26597270369529724
795
+ NewsClip_720P-7b97_crf_10_ss_00_t_20.0,-0.32095304131507874
796
+ NewsClip_720P-7c67_crf_10_ss_00_t_20.0,0.2829767167568207
797
+ NewsClip_720P-7e56_crf_10_ss_00_t_20.0,0.3921262323856354
798
+ Sports_1080P-0063_crf_10_ss_00_t_20.0,0.04720442369580269
799
+ Sports_1080P-0640_crf_10_ss_00_t_20.0,-0.09665899723768234
800
+ Sports_1080P-08e1_crf_10_ss_00_t_20.0,0.3622368276119232
801
+ Sports_1080P-0d0c_crf_10_ss_00_t_20.0,0.1424739956855774
802
+ Sports_1080P-15d1_crf_10_ss_00_t_20.0,0.36765366792678833
803
+ Sports_1080P-19d8_crf_10_ss_00_t_20.0,0.3202590346336365
804
+ Sports_1080P-1ae3_crf_10_ss_00_t_20.0,-0.07349485903978348
805
+ Sports_1080P-1bf7_crf_10_ss_00_t_20.0,0.3127301037311554
806
+ Sports_1080P-1d78_crf_10_ss_00_t_20.0,-0.07826992869377136
807
+ Sports_1080P-241e_crf_10_ss_00_t_20.0,0.38608938455581665
808
+ Sports_1080P-2524_crf_10_ss_00_t_20.0,0.05154795199632645
809
+ Sports_1080P-28a6_crf_10_ss_00_t_20.0,0.3407392203807831
810
+ Sports_1080P-2a21_crf_10_ss_00_t_20.0,-0.15966680645942688
811
+ Sports_1080P-3a3b_crf_10_ss_00_t_20.0,-0.0699562206864357
812
+ Sports_1080P-3db7_crf_10_ss_00_t_20.0,0.1413196474313736
813
+ Sports_1080P-3eb0_crf_10_ss_00_t_20.0,-0.020289961248636246
814
+ Sports_1080P-43e2_crf_10_ss_00_t_20.0,0.28234338760375977
815
+ Sports_1080P-46ed_crf_10_ss_00_t_20.0,0.11946049332618713
816
+ Sports_1080P-47e9_crf_10_ss_00_t_20.0,0.24401423335075378
817
+ Sports_1080P-4978_crf_10_ss_00_t_20.0,0.08562496304512024
818
+ Sports_1080P-49c5_crf_10_ss_00_t_20.0,0.15098370611667633
819
+ Sports_1080P-4e05_crf_10_ss_00_t_20.0,-0.16656380891799927
820
+ Sports_1080P-53a0_crf_10_ss_00_t_20.0,-0.08380366116762161
821
+ Sports_1080P-5d25_crf_10_ss_00_t_20.0,-0.02107565477490425
822
+ Sports_1080P-6571_crf_10_ss_00_t_20.0,0.07823669165372849
823
+ Sports_1080P-6710_crf_10_ss_00_t_20.0,0.3337024748325348
824
+ Sports_1080P-679d_crf_10_ss_00_t_20.0,0.3547711670398712
825
+ Sports_1080P-7203_crf_10_ss_00_t_20.0,0.17697806656360626
826
+ Sports_1080P-7584_crf_10_ss_00_t_20.0,0.10248217731714249
827
+ Sports_1080P-76a2_crf_10_ss_00_t_20.0,0.1129070445895195
828
+ Sports_1080P-7dba_crf_10_ss_00_t_20.0,0.06253815442323685
829
+ Sports_2160P-0455_crf_10_ss_00_t_20.0,0.32452329993247986
830
+ Sports_2160P-086d_crf_10_ss_00_t_20.0,0.3441126346588135
831
+ Sports_2160P-1261_crf_10_ss_00_t_20.0,0.30997157096862793
832
+ Sports_2160P-1733_crf_10_ss_00_t_20.0,0.2799471318721771
833
+ Sports_2160P-1b70_crf_10_ss_00_t_20.0,0.29588234424591064
834
+ Sports_2160P-1ddc_crf_10_ss_00_t_20.0,-0.13121169805526733
835
+ Sports_2160P-210c_crf_10_ss_00_t_20.0,0.40369153022766113
836
+ Sports_2160P-2568_crf_10_ss_00_t_20.0,0.17385901510715485
837
+ Sports_2160P-2626_crf_10_ss_00_t_20.0,0.37480247020721436
838
+ Sports_2160P-279f_crf_10_ss_00_t_20.0,0.4448787569999695
839
+ Sports_2160P-2a83_crf_10_ss_00_t_20.0,0.13084366917610168
840
+ Sports_2160P-2e1d_crf_10_ss_00_t_20.0,0.32031261920928955
841
+ Sports_2160P-2eda_crf_10_ss_00_t_20.0,0.2091510146856308
842
+ Sports_2160P-300d_crf_10_ss_00_t_20.0,-0.036945413798093796
843
+ Sports_2160P-324e_crf_10_ss_00_t_20.0,0.3181658089160919
844
+ Sports_2160P-349c_crf_10_ss_00_t_20.0,0.27699390053749084
845
+ Sports_2160P-3794_crf_10_ss_00_t_20.0,-0.31399598717689514
846
+ Sports_2160P-391a_crf_10_ss_00_t_20.0,0.22544178366661072
847
+ Sports_2160P-3a9a_crf_10_ss_00_t_20.0,0.15226665139198303
848
+ Sports_2160P-3d85_crf_10_ss_00_t_20.0,0.41886988282203674
849
+ Sports_2160P-4024_crf_10_ss_00_t_20.0,0.24694402515888214
850
+ Sports_2160P-4201_crf_10_ss_00_t_20.0,0.15412043035030365
851
+ Sports_2160P-49f1_crf_10_ss_00_t_20.0,0.2833898961544037
852
+ Sports_2160P-4aae_crf_10_ss_00_t_20.0,0.3446270525455475
853
+ Sports_2160P-4e9f_crf_10_ss_00_t_20.0,0.2938234210014343
854
+ Sports_2160P-5ef3_crf_10_ss_00_t_20.0,0.33585458993911743
855
+ Sports_2160P-69b9_crf_10_ss_00_t_20.0,0.33322983980178833
856
+ Sports_2160P-6b28_crf_10_ss_00_t_20.0,0.3599461317062378
857
+ Sports_2160P-7165_crf_10_ss_00_t_20.0,0.323312371969223
858
+ Sports_2160P-7a11_crf_10_ss_00_t_20.0,0.34362685680389404
859
+ Sports_2160P-7af7_crf_10_ss_00_t_20.0,0.09520962089300156
860
+ Sports_2160P-7af8_crf_10_ss_00_t_20.0,0.08327974379062653
861
+ Sports_2160P-7bbe_crf_10_ss_00_t_20.0,0.32063162326812744
862
+ Sports_360P-02c3_crf_10_ss_00_t_20.0,-0.14345255494117737
863
+ Sports_360P-0c66_crf_10_ss_00_t_20.0,-0.25924330949783325
864
+ Sports_360P-0dda_crf_10_ss_00_t_20.0,-0.5348120927810669
865
+ Sports_360P-11b7_crf_10_ss_00_t_20.0,-0.5720902681350708
866
+ Sports_360P-1803_crf_10_ss_00_t_20.0,-0.016464993357658386
867
+ Sports_360P-1d5c_crf_10_ss_00_t_20.0,0.1506263166666031
868
+ Sports_360P-2725_crf_10_ss_00_t_20.0,-0.40587207674980164
869
+ Sports_360P-27b0_crf_10_ss_00_t_20.0,-0.4662570655345917
870
+ Sports_360P-2ace_crf_10_ss_00_t_20.0,-0.21428629755973816
871
+ Sports_360P-2e48_crf_10_ss_00_t_20.0,-0.557243824005127
872
+ Sports_360P-301d_crf_10_ss_00_t_20.0,-0.15399222075939178
873
+ Sports_360P-32d3_crf_10_ss_00_t_20.0,-0.3539348244667053
874
+ Sports_360P-3960_crf_10_ss_00_t_20.0,-0.45061203837394714
875
+ Sports_360P-3e68_crf_10_ss_00_t_20.0,-0.42043063044548035
876
+ Sports_360P-4545_crf_10_ss_00_t_20.0,-0.7728853821754456
877
+ Sports_360P-4802_crf_10_ss_00_t_20.0,-0.6935634016990662
878
+ Sports_360P-4ad7_crf_10_ss_00_t_20.0,-0.6965276002883911
879
+ Sports_360P-50fd_crf_10_ss_00_t_20.0,-0.5346584320068359
880
+ Sports_360P-5252_crf_10_ss_00_t_20.0,-0.6015813946723938
881
+ Sports_360P-5ded_crf_10_ss_00_t_20.0,0.06388425081968307
882
+ Sports_360P-61f6_crf_10_ss_00_t_20.0,-0.037969425320625305
883
+ Sports_360P-65f3_crf_10_ss_00_t_20.0,-0.40572065114974976
884
+ Sports_360P-6b4f_crf_10_ss_00_t_20.0,-0.13591855764389038
885
+ Sports_360P-6c6f_crf_10_ss_00_t_20.0,-0.6854054927825928
886
+ Sports_360P-6f62_crf_10_ss_00_t_20.0,0.005840063560754061
887
+ Sports_360P-7f50_crf_10_ss_00_t_20.0,-0.9989921450614929
888
+ Sports_480P-0623_crf_10_ss_00_t_20.0,-0.13396500051021576
889
+ Sports_480P-0827_crf_10_ss_00_t_20.0,-0.34771838784217834
890
+ Sports_480P-0af9_crf_10_ss_00_t_20.0,0.02205386571586132
891
+ Sports_480P-0bb9_crf_10_ss_00_t_20.0,0.0573737695813179
892
+ Sports_480P-0efe_crf_10_ss_00_t_20.0,-0.04947424679994583
893
+ Sports_480P-1019_crf_10_ss_00_t_20.0,-0.11852973699569702
894
+ Sports_480P-1056_crf_10_ss_00_t_20.0,-0.3208310902118683
895
+ Sports_480P-11ec_crf_10_ss_00_t_20.0,-1.088435173034668
896
+ Sports_480P-1396_crf_10_ss_00_t_20.0,-0.1611238718032837
897
+ Sports_480P-19e4_crf_10_ss_00_t_20.0,0.10499701648950577
898
+ Sports_480P-1d1b_crf_10_ss_00_t_20.0,-0.7710703611373901
899
+ Sports_480P-1fe9_crf_10_ss_00_t_20.0,-0.7496281862258911
900
+ Sports_480P-2053_crf_10_ss_00_t_20.0,-0.15039928257465363
901
+ Sports_480P-211f_crf_10_ss_00_t_20.0,-0.4290386438369751
902
+ Sports_480P-2dfe_crf_10_ss_00_t_20.0,-0.7010605931282043
903
+ Sports_480P-3195_crf_10_ss_00_t_20.0,-0.010987035930156708
904
+ Sports_480P-3404_crf_10_ss_00_t_20.0,-0.05957995727658272
905
+ Sports_480P-35ea_crf_10_ss_00_t_20.0,-0.0222918838262558
906
+ Sports_480P-3ca4_crf_10_ss_00_t_20.0,-0.8223881721496582
907
+ Sports_480P-3dfd_crf_10_ss_00_t_20.0,-0.0496600978076458
908
+ Sports_480P-3f50_crf_10_ss_00_t_20.0,0.26901084184646606
909
+ Sports_480P-41a5_crf_10_ss_00_t_20.0,-0.8630905747413635
910
+ Sports_480P-44e5_crf_10_ss_00_t_20.0,-0.32670828700065613
911
+ Sports_480P-4cf8_crf_10_ss_00_t_20.0,-0.8200569748878479
912
+ Sports_480P-5224_crf_10_ss_00_t_20.0,-0.3708409070968628
913
+ Sports_480P-5871_crf_10_ss_00_t_20.0,-0.44160374999046326
914
+ Sports_480P-5f38_crf_10_ss_00_t_20.0,0.05319775640964508
915
+ Sports_480P-6508_crf_10_ss_00_t_20.0,-0.15341395139694214
916
+ Sports_480P-6e41_crf_10_ss_00_t_20.0,-0.1189483255147934
917
+ Sports_480P-77e3_crf_10_ss_00_t_20.0,-0.2904636859893799
918
+ Sports_480P-7f7e_crf_10_ss_00_t_20.0,-0.7206935882568359
919
+ Sports_720P-00a1_crf_10_ss_00_t_20.0,0.2547626793384552
920
+ Sports_720P-0104_crf_10_ss_00_t_20.0,0.30587056279182434
921
+ Sports_720P-058f_crf_10_ss_00_t_20.0,0.36339271068573
922
+ Sports_720P-07d0_crf_10_ss_00_t_20.0,0.09942792356014252
923
+ Sports_720P-0b9e_crf_10_ss_00_t_20.0,0.22756770253181458
924
+ Sports_720P-17fb_crf_10_ss_00_t_20.0,-0.000348501285770908
925
+ Sports_720P-2191_crf_10_ss_00_t_20.0,0.03392215073108673
926
+ Sports_720P-2234_crf_10_ss_00_t_20.0,0.24719436466693878
927
+ Sports_720P-2632_crf_10_ss_00_t_20.0,0.21554780006408691
928
+ Sports_720P-2c06_crf_10_ss_00_t_20.0,-0.09530279785394669
929
+ Sports_720P-2c80_crf_10_ss_00_t_20.0,-0.45019659399986267
930
+ Sports_720P-3072_crf_10_ss_00_t_20.0,-0.12970706820487976
931
+ Sports_720P-3338_crf_10_ss_00_t_20.0,0.3457486033439636
932
+ Sports_720P-33c6_crf_10_ss_00_t_20.0,-0.3484238386154175
933
+ Sports_720P-38a1_crf_10_ss_00_t_20.0,-0.24610218405723572
934
+ Sports_720P-3eb4_crf_10_ss_00_t_20.0,0.052768345922231674
935
+ Sports_720P-3ffe_crf_10_ss_00_t_20.0,-0.33844348788261414
936
+ Sports_720P-4b69_crf_10_ss_00_t_20.0,0.11261260509490967
937
+ Sports_720P-4c6f_crf_10_ss_00_t_20.0,0.19085928797721863
938
+ Sports_720P-50cf_crf_10_ss_00_t_20.0,-0.005482173059135675
939
+ Sports_720P-531c_crf_10_ss_00_t_20.0,0.40341895818710327
940
+ Sports_720P-5833_crf_10_ss_00_t_20.0,-0.13151419162750244
941
+ Sports_720P-5ae1_crf_10_ss_00_t_20.0,0.2440868616104126
942
+ Sports_720P-5bfd_crf_10_ss_00_t_20.0,0.4296063482761383
943
+ Sports_720P-5e39_crf_10_ss_00_t_20.0,-0.0014540294650942087
944
+ Sports_720P-5ea4_crf_10_ss_00_t_20.0,0.3060103952884674
945
+ Sports_720P-62ba_crf_10_ss_00_t_20.0,-0.20071662962436676
946
+ Sports_720P-675b_crf_10_ss_00_t_20.0,-0.07443612813949585
947
+ Sports_720P-69a0_crf_10_ss_00_t_20.0,0.2775217294692993
948
+ Sports_720P-6bb7_crf_10_ss_00_t_20.0,0.04169938713312149
949
+ Sports_720P-6d04_crf_10_ss_00_t_20.0,0.0958685353398323
950
+ Sports_720P-7ba7_crf_10_ss_00_t_20.0,-0.020078448578715324
951
+ TelevisionClip_1080P-0604_crf_10_ss_00_t_20.0,0.07607781887054443
952
+ TelevisionClip_1080P-3758_crf_10_ss_00_t_20.0,0.3502637445926666
953
+ TelevisionClip_1080P-39e3_crf_10_ss_00_t_20.0,0.42013826966285706
954
+ TelevisionClip_1080P-3b9b_crf_10_ss_00_t_20.0,0.2649911046028137
955
+ TelevisionClip_1080P-3d10_crf_10_ss_00_t_20.0,0.2477947622537613
956
+ TelevisionClip_1080P-3d83_crf_10_ss_00_t_20.0,-0.06938541680574417
957
+ TelevisionClip_1080P-3e42_crf_10_ss_00_t_20.0,-0.8564214706420898
958
+ TelevisionClip_1080P-401e_crf_10_ss_00_t_20.0,0.2473539263010025
959
+ TelevisionClip_1080P-4c24_crf_10_ss_00_t_20.0,0.3361649513244629
960
+ TelevisionClip_1080P-4c94_crf_10_ss_00_t_20.0,-0.07639169692993164
961
+ TelevisionClip_1080P-525d_crf_10_ss_00_t_20.0,0.29912182688713074
962
+ TelevisionClip_1080P-5278_crf_10_ss_00_t_20.0,0.1903560608625412
963
+ TelevisionClip_1080P-5e68_crf_10_ss_00_t_20.0,0.36525142192840576
964
+ TelevisionClip_1080P-6026_crf_10_ss_00_t_20.0,0.3960750102996826
965
+ TelevisionClip_1080P-6282_crf_10_ss_00_t_20.0,0.24061255156993866
966
+ TelevisionClip_1080P-63e6_crf_10_ss_00_t_20.0,0.33827418088912964
967
+ TelevisionClip_1080P-68c6_crf_10_ss_00_t_20.0,0.5194082856178284
968
+ TelevisionClip_1080P-7eff_crf_10_ss_00_t_20.0,0.4506068527698517
969
+ TelevisionClip_360P-0951_crf_10_ss_00_t_20.0,-0.5208926200866699
970
+ TelevisionClip_360P-11d5_crf_10_ss_00_t_20.0,-0.49454963207244873
971
+ TelevisionClip_360P-29f1_crf_10_ss_00_t_20.0,-0.6145671606063843
972
+ TelevisionClip_360P-3b9a_crf_10_ss_00_t_20.0,-0.4665054976940155
973
+ TelevisionClip_360P-74dd_crf_10_ss_00_t_20.0,0.037325408309698105
974
+ TelevisionClip_360P-7b23_crf_10_ss_00_t_20.0,-0.2567318379878998
975
+ TelevisionClip_480P-09d8_crf_10_ss_00_t_20.0,-0.32377511262893677
976
+ TelevisionClip_480P-0e46_crf_10_ss_00_t_20.0,-0.34563112258911133
977
+ TelevisionClip_480P-19d3_crf_10_ss_00_t_20.0,-0.08845515549182892
978
+ TelevisionClip_480P-1b49_crf_10_ss_00_t_20.0,-0.20470960438251495
979
+ TelevisionClip_480P-27ca_crf_10_ss_00_t_20.0,-0.041211653500795364
980
+ TelevisionClip_480P-280f_crf_10_ss_00_t_20.0,-0.2142687886953354
981
+ TelevisionClip_480P-2ead_crf_10_ss_00_t_20.0,-0.6856304407119751
982
+ TelevisionClip_480P-30b6_crf_10_ss_00_t_20.0,-0.3458104729652405
983
+ TelevisionClip_480P-3284_crf_10_ss_00_t_20.0,-0.28940334916114807
984
+ TelevisionClip_480P-3617_crf_10_ss_00_t_20.0,-0.6827331781387329
985
+ TelevisionClip_480P-373d_crf_10_ss_00_t_20.0,-0.2514592409133911
986
+ TelevisionClip_480P-3c64_crf_10_ss_00_t_20.0,0.06073874235153198
987
+ TelevisionClip_480P-415c_crf_10_ss_00_t_20.0,-0.02971113845705986
988
+ TelevisionClip_480P-436c_crf_10_ss_00_t_20.0,-0.4526827931404114
989
+ TelevisionClip_480P-4c6b_crf_10_ss_00_t_20.0,0.09913945943117142
990
+ TelevisionClip_480P-59f0_crf_10_ss_00_t_20.0,-0.29447755217552185
991
+ TelevisionClip_480P-723e_crf_10_ss_00_t_20.0,-0.4009648859500885
992
+ TelevisionClip_720P-1862_crf_10_ss_00_t_20.0,-0.14469659328460693
993
+ TelevisionClip_720P-19de_crf_10_ss_00_t_20.0,0.3767024278640747
994
+ TelevisionClip_720P-1b61_crf_10_ss_00_t_20.0,0.35786890983581543
995
+ TelevisionClip_720P-31ce_crf_10_ss_00_t_20.0,0.2579263746738434
996
+ TelevisionClip_720P-3f4c_crf_10_ss_00_t_20.0,-0.801855206489563
997
+ TelevisionClip_720P-44d1_crf_10_ss_00_t_20.0,0.15981553494930267
998
+ TelevisionClip_720P-4af1_crf_10_ss_00_t_20.0,-0.14514757692813873
999
+ TelevisionClip_720P-4edb_crf_10_ss_00_t_20.0,0.063210628926754
1000
+ TelevisionClip_720P-5e93_crf_10_ss_00_t_20.0,0.23117341101169586
1001
+ TelevisionClip_720P-7c06_crf_10_ss_00_t_20.0,0.36790528893470764
1002
+ VerticalVideo_1080P-04d4_crf_10_ss_00_t_20.0,0.2817496657371521
1003
+ VerticalVideo_1080P-1105_crf_10_ss_00_t_20.0,0.08839268237352371
1004
+ VerticalVideo_1080P-1ac1_crf_10_ss_00_t_20.0,0.19944575428962708
1005
+ VerticalVideo_1080P-1c86_crf_10_ss_00_t_20.0,-0.3445601463317871
1006
+ VerticalVideo_1080P-2195_crf_10_ss_00_t_20.0,-0.27721458673477173
1007
+ VerticalVideo_1080P-2f00_crf_10_ss_00_t_20.0,0.3487855792045593
1008
+ VerticalVideo_1080P-34ba_crf_10_ss_00_t_20.0,0.0052260453812778
1009
+ VerticalVideo_1080P-360f_crf_10_ss_00_t_20.0,0.32053565979003906
1010
+ VerticalVideo_1080P-3709_crf_10_ss_00_t_20.0,0.3469218611717224
1011
+ VerticalVideo_1080P-3a9b_crf_10_ss_00_t_20.0,0.33923056721687317
1012
+ VerticalVideo_1080P-3d96_crf_10_ss_00_t_20.0,0.3861265778541565
1013
+ VerticalVideo_1080P-4591_crf_10_ss_00_t_20.0,0.0014325508382171392
1014
+ VerticalVideo_1080P-4925_crf_10_ss_00_t_20.0,0.4934033751487732
1015
+ VerticalVideo_1080P-4b92_crf_10_ss_00_t_20.0,0.24877259135246277
1016
+ VerticalVideo_1080P-4da5_crf_10_ss_00_t_20.0,0.38493236899375916
1017
+ VerticalVideo_1080P-6e19_crf_10_ss_00_t_20.0,0.1614610254764557
1018
+ VerticalVideo_1080P-73b6_crf_10_ss_00_t_20.0,0.2508350610733032
1019
+ VerticalVideo_1080P-766b_crf_10_ss_00_t_20.0,-0.03847496211528778
1020
+ VerticalVideo_1080P-7c5c_crf_10_ss_00_t_20.0,0.12715092301368713
1021
+ VerticalVideo_1080P-7cf3_crf_10_ss_00_t_20.0,0.1371651142835617
1022
+ VerticalVideo_2160P-6d62_crf_10_ss_00_t_20.0,0.25742724537849426
1023
+ VerticalVideo_360P-0d29_crf_10_ss_00_t_20.0,-0.48139888048171997
1024
+ VerticalVideo_360P-1424_crf_10_ss_00_t_20.0,-0.019645974040031433
1025
+ VerticalVideo_360P-145e_crf_10_ss_00_t_20.0,-0.6979188919067383
1026
+ VerticalVideo_360P-2bb0_crf_10_ss_00_t_20.0,-0.2659907042980194
1027
+ VerticalVideo_360P-2fa3_crf_10_ss_00_t_20.0,0.36047306656837463
1028
+ VerticalVideo_360P-3936_crf_10_ss_00_t_20.0,0.10552891343832016
1029
+ VerticalVideo_360P-3b4e_crf_10_ss_00_t_20.0,0.0763060450553894
1030
+ VerticalVideo_360P-42f1_crf_10_ss_00_t_20.0,0.016341982409358025
1031
+ VerticalVideo_360P-52c1_crf_10_ss_00_t_20.0,-0.1416313648223877
1032
+ VerticalVideo_360P-5429_crf_10_ss_00_t_20.0,-0.007761209271848202
1033
+ VerticalVideo_360P-54f7_crf_10_ss_00_t_20.0,0.2673027217388153
1034
+ VerticalVideo_360P-579c_crf_10_ss_00_t_20.0,-0.2912048101425171
1035
+ VerticalVideo_360P-634f_crf_10_ss_00_t_20.0,0.3317103683948517
1036
+ VerticalVideo_360P-6490_crf_10_ss_00_t_20.0,-0.18950611352920532
1037
+ VerticalVideo_360P-694d_crf_10_ss_00_t_20.0,-0.01583496853709221
1038
+ VerticalVideo_360P-6ff2_crf_10_ss_00_t_20.0,-0.04079584777355194
1039
+ VerticalVideo_360P-70a9_crf_10_ss_00_t_20.0,-0.28200289607048035
1040
+ VerticalVideo_360P-7ba8_crf_10_ss_00_t_20.0,0.07261525094509125
1041
+ VerticalVideo_360P-7ec3_crf_10_ss_00_t_20.0,0.18230561912059784
1042
+ VerticalVideo_480P-1bb9_crf_10_ss_00_t_20.0,0.10479767620563507
1043
+ VerticalVideo_480P-2aa1_crf_10_ss_00_t_20.0,0.28945329785346985
1044
+ VerticalVideo_480P-2fa4_crf_10_ss_00_t_20.0,0.24372144043445587
1045
+ VerticalVideo_480P-34b9_crf_10_ss_00_t_20.0,-0.14630749821662903
1046
+ VerticalVideo_480P-3a6a_crf_10_ss_00_t_20.0,0.3328494727611542
1047
+ VerticalVideo_480P-419c_crf_10_ss_00_t_20.0,0.1355406790971756
1048
+ VerticalVideo_480P-467e_crf_10_ss_00_t_20.0,-0.00914012361317873
1049
+ VerticalVideo_480P-51b7_crf_10_ss_00_t_20.0,-0.553739070892334
1050
+ VerticalVideo_480P-550d_crf_10_ss_00_t_20.0,0.18739017844200134
1051
+ VerticalVideo_480P-572a_crf_10_ss_00_t_20.0,-0.15563000738620758
1052
+ VerticalVideo_480P-7278_crf_10_ss_00_t_20.0,-0.3199726939201355
1053
+ VerticalVideo_480P-729c_crf_10_ss_00_t_20.0,0.19586071372032166
1054
+ VerticalVideo_480P-790a_crf_10_ss_00_t_20.0,0.3341555595397949
1055
+ VerticalVideo_720P-0750_crf_10_ss_00_t_20.0,0.11654608696699142
1056
+ VerticalVideo_720P-0dac_crf_10_ss_00_t_20.0,-0.4357657730579376
1057
+ VerticalVideo_720P-0f61_crf_10_ss_00_t_20.0,0.320548951625824
1058
+ VerticalVideo_720P-19fa_crf_10_ss_00_t_20.0,0.3445357382297516
1059
+ VerticalVideo_720P-1ada_crf_10_ss_00_t_20.0,-0.03655967116355896
1060
+ VerticalVideo_720P-2efc_crf_10_ss_00_t_20.0,0.03849834203720093
1061
+ VerticalVideo_720P-3df7_crf_10_ss_00_t_20.0,0.13181859254837036
1062
+ VerticalVideo_720P-42f2_crf_10_ss_00_t_20.0,-0.19737301766872406
1063
+ VerticalVideo_720P-44de_crf_10_ss_00_t_20.0,0.3961789011955261
1064
+ VerticalVideo_720P-456c_crf_10_ss_00_t_20.0,0.23219697177410126
1065
+ VerticalVideo_720P-4730_crf_10_ss_00_t_20.0,0.3291707932949066
1066
+ VerticalVideo_720P-4ca7_crf_10_ss_00_t_20.0,0.33878999948501587
1067
+ VerticalVideo_720P-57eb_crf_10_ss_00_t_20.0,0.08367341011762619
1068
+ VerticalVideo_720P-6580_crf_10_ss_00_t_20.0,-0.01276291161775589
1069
+ VerticalVideo_720P-665d_crf_10_ss_00_t_20.0,0.12682569026947021
1070
+ VerticalVideo_720P-669d_crf_10_ss_00_t_20.0,0.26815730333328247
1071
+ VerticalVideo_720P-6bf7_crf_10_ss_00_t_20.0,0.28041431307792664
1072
+ VerticalVideo_720P-7517_crf_10_ss_00_t_20.0,0.30355384945869446
1073
+ VerticalVideo_720P-7859_crf_10_ss_00_t_20.0,0.07479070872068405
1074
+ VerticalVideo_720P-7c1d_crf_10_ss_00_t_20.0,0.408850759267807
1075
+ Vlog_1080P-010b_crf_10_ss_00_t_20.0,0.3210410177707672
1076
+ Vlog_1080P-1609_crf_10_ss_00_t_20.0,-0.3706212043762207
1077
+ Vlog_1080P-18da_crf_10_ss_00_t_20.0,0.28279778361320496
1078
+ Vlog_1080P-19bb_crf_10_ss_00_t_20.0,-0.4237081706523895
1079
+ Vlog_1080P-1a53_crf_10_ss_00_t_20.0,0.2030835747718811
1080
+ Vlog_1080P-1df9_crf_10_ss_00_t_20.0,0.27862846851348877
1081
+ Vlog_1080P-1e70_crf_10_ss_00_t_20.0,-0.3645986020565033
1082
+ Vlog_1080P-1f0a_crf_10_ss_00_t_20.0,0.06503846496343613
1083
+ Vlog_1080P-21f5_crf_10_ss_00_t_20.0,-0.18490026891231537
1084
+ Vlog_1080P-2394_crf_10_ss_00_t_20.0,0.4857790470123291
1085
+ Vlog_1080P-23cb_crf_10_ss_00_t_20.0,-0.19012980163097382
1086
+ Vlog_1080P-25de_crf_10_ss_00_t_20.0,-0.7238283753395081
1087
+ Vlog_1080P-2600_crf_10_ss_00_t_20.0,0.07064886391162872
1088
+ Vlog_1080P-26dc_crf_10_ss_00_t_20.0,-0.09548289328813553
1089
+ Vlog_1080P-2cda_crf_10_ss_00_t_20.0,0.16438044607639313
1090
+ Vlog_1080P-34cb_crf_10_ss_00_t_20.0,-0.025326192378997803
1091
+ Vlog_1080P-35cd_crf_10_ss_00_t_20.0,-0.0575716458261013
1092
+ Vlog_1080P-3744_crf_10_ss_00_t_20.0,0.18253684043884277
1093
+ Vlog_1080P-45c9_crf_10_ss_00_t_20.0,-0.3757982850074768
1094
+ Vlog_1080P-4921_crf_10_ss_00_t_20.0,0.044056087732315063
1095
+ Vlog_1080P-4ba9_crf_10_ss_00_t_20.0,0.2765520513057709
1096
+ Vlog_1080P-4f26_crf_10_ss_00_t_20.0,0.10490407794713974
1097
+ Vlog_1080P-52fe_crf_10_ss_00_t_20.0,0.10731915384531021
1098
+ Vlog_1080P-5904_crf_10_ss_00_t_20.0,0.3440762162208557
1099
+ Vlog_1080P-5f28_crf_10_ss_00_t_20.0,-0.0036858352832496166
1100
+ Vlog_1080P-62fc_crf_10_ss_00_t_20.0,0.33865463733673096
1101
+ Vlog_1080P-64b6_crf_10_ss_00_t_20.0,0.24356795847415924
1102
+ Vlog_1080P-6686_crf_10_ss_00_t_20.0,0.09822170436382294
1103
+ Vlog_1080P-687a_crf_10_ss_00_t_20.0,-0.14309000968933105
1104
+ Vlog_1080P-7062_crf_10_ss_00_t_20.0,0.19867907464504242
1105
+ Vlog_1080P-7b67_crf_10_ss_00_t_20.0,0.013959601521492004
1106
+ Vlog_1080P-7e8c_crf_10_ss_00_t_20.0,-0.31654834747314453
1107
+ Vlog_2160P-030a_crf_10_ss_00_t_20.0,-0.592017650604248
1108
+ Vlog_2160P-0577_crf_10_ss_00_t_20.0,0.21470585465431213
1109
+ Vlog_2160P-059c_crf_10_ss_00_t_20.0,0.372191458940506
1110
+ Vlog_2160P-09c9_crf_10_ss_00_t_20.0,-0.04786030203104019
1111
+ Vlog_2160P-13a1_crf_10_ss_00_t_20.0,0.1767243593931198
1112
+ Vlog_2160P-13fe_crf_10_ss_00_t_20.0,0.1411828100681305
1113
+ Vlog_2160P-19f9_crf_10_ss_00_t_20.0,0.283297598361969
1114
+ Vlog_2160P-1ff6_crf_10_ss_00_t_20.0,-0.26680275797843933
1115
+ Vlog_2160P-255c_crf_10_ss_00_t_20.0,0.30529287457466125
1116
+ Vlog_2160P-2953_crf_10_ss_00_t_20.0,-0.02482910081744194
1117
+ Vlog_2160P-2b2d_crf_10_ss_00_t_20.0,0.17466941475868225
1118
+ Vlog_2160P-3019_crf_10_ss_00_t_20.0,0.42882874608039856
1119
+ Vlog_2160P-310b_crf_10_ss_00_t_20.0,0.3171454668045044
1120
+ Vlog_2160P-327a_crf_10_ss_00_t_20.0,0.18132096529006958
1121
+ Vlog_2160P-342a_crf_10_ss_00_t_20.0,0.3811704218387604
1122
+ Vlog_2160P-3a75_crf_10_ss_00_t_20.0,0.20430698990821838
1123
+ Vlog_2160P-408f_crf_10_ss_00_t_20.0,0.21805161237716675
1124
+ Vlog_2160P-416c_crf_10_ss_00_t_20.0,0.27739423513412476
1125
+ Vlog_2160P-4362_crf_10_ss_00_t_20.0,0.48515796661376953
1126
+ Vlog_2160P-4419_crf_10_ss_00_t_20.0,0.3451630175113678
1127
+ Vlog_2160P-4655_crf_10_ss_00_t_20.0,0.26400381326675415
1128
+ Vlog_2160P-4f98_crf_10_ss_00_t_20.0,-0.14214307069778442
1129
+ Vlog_2160P-522f_crf_10_ss_00_t_20.0,0.34006455540657043
1130
+ Vlog_2160P-56e4_crf_10_ss_00_t_20.0,0.3469902575016022
1131
+ Vlog_2160P-5874_crf_10_ss_00_t_20.0,0.13276544213294983
1132
+ Vlog_2160P-62b2_crf_10_ss_00_t_20.0,0.07935985177755356
1133
+ Vlog_2160P-6629_crf_10_ss_00_t_20.0,0.3485667109489441
1134
+ Vlog_2160P-6f92_crf_10_ss_00_t_20.0,0.13148269057273865
1135
+ Vlog_2160P-700c_crf_10_ss_00_t_20.0,0.20629757642745972
1136
+ Vlog_2160P-70d6_crf_10_ss_00_t_20.0,-0.2320137917995453
1137
+ Vlog_2160P-7324_crf_10_ss_00_t_20.0,0.23420608043670654
1138
+ Vlog_2160P-77d8_crf_10_ss_00_t_20.0,-0.09837555885314941
1139
+ Vlog_2160P-7b10_crf_10_ss_00_t_20.0,0.20724345743656158
1140
+ Vlog_2160P-7b5c_crf_10_ss_00_t_20.0,-0.051447924226522446
1141
+ Vlog_2160P-7bfb_crf_10_ss_00_t_20.0,0.17287585139274597
1142
+ Vlog_2160P-7f05_crf_10_ss_00_t_20.0,-0.2635119557380676
1143
+ Vlog_360P-1e5b_crf_10_ss_00_t_20.0,-0.23319695889949799
1144
+ Vlog_360P-22a0_crf_10_ss_00_t_20.0,-0.20710040628910065
1145
+ Vlog_360P-2973_crf_10_ss_00_t_20.0,-0.22428804636001587
1146
+ Vlog_360P-2e9d_crf_10_ss_00_t_20.0,-0.5813997983932495
1147
+ Vlog_360P-3121_crf_10_ss_00_t_20.0,-0.5151544809341431
1148
+ Vlog_360P-3bc2_crf_10_ss_00_t_20.0,-0.07666660100221634
1149
+ Vlog_360P-433e_crf_10_ss_00_t_20.0,-0.2804359495639801
1150
+ Vlog_360P-4697_crf_10_ss_00_t_20.0,-0.01443236880004406
1151
+ Vlog_360P-4795_crf_10_ss_00_t_20.0,-0.7629285454750061
1152
+ Vlog_360P-4ad1_crf_10_ss_00_t_20.0,-0.4240178167819977
1153
+ Vlog_360P-4d71_crf_10_ss_00_t_20.0,-0.19593381881713867
1154
+ Vlog_360P-6279_crf_10_ss_00_t_20.0,-0.26803678274154663
1155
+ Vlog_360P-7334_crf_10_ss_00_t_20.0,-0.3998262882232666
1156
+ Vlog_360P-76ae_crf_10_ss_00_t_20.0,-0.5628193616867065
1157
+ Vlog_360P-7efe_crf_10_ss_00_t_20.0,-0.3442028760910034
1158
+ Vlog_480P-08c7_crf_10_ss_00_t_20.0,-0.19537882506847382
1159
+ Vlog_480P-0980_crf_10_ss_00_t_20.0,-0.3254459798336029
1160
+ Vlog_480P-0ddc_crf_10_ss_00_t_20.0,0.10436318069696426
1161
+ Vlog_480P-1b39_crf_10_ss_00_t_20.0,-0.8091589212417603
1162
+ Vlog_480P-206f_crf_10_ss_00_t_20.0,-0.4498930871486664
1163
+ Vlog_480P-279d_crf_10_ss_00_t_20.0,-0.09337959438562393
1164
+ Vlog_480P-2cad_crf_10_ss_00_t_20.0,-0.14123952388763428
1165
+ Vlog_480P-34ba_crf_10_ss_00_t_20.0,0.0817628726363182
1166
+ Vlog_480P-476b_crf_10_ss_00_t_20.0,-0.09475305676460266
1167
+ Vlog_480P-4beb_crf_10_ss_00_t_20.0,-0.6510047316551208
1168
+ Vlog_480P-5275_crf_10_ss_00_t_20.0,-0.3354911208152771
1169
+ Vlog_480P-535d_crf_10_ss_00_t_20.0,-0.4060882329940796
1170
+ Vlog_480P-59dc_crf_10_ss_00_t_20.0,-0.22951778769493103
1171
+ Vlog_480P-5dfe_crf_10_ss_00_t_20.0,-0.0160712581127882
1172
+ Vlog_480P-5e1c_crf_10_ss_00_t_20.0,-0.7652700543403625
1173
+ Vlog_480P-5ebd_crf_10_ss_00_t_20.0,-0.12671072781085968
1174
+ Vlog_480P-6395_crf_10_ss_00_t_20.0,0.0031683940906077623
1175
+ Vlog_480P-6c60_crf_10_ss_00_t_20.0,-0.6381939053535461
1176
+ Vlog_480P-7237_crf_10_ss_00_t_20.0,0.1445765197277069
1177
+ Vlog_480P-7615_crf_10_ss_00_t_20.0,-0.5100260376930237
1178
+ Vlog_480P-7754_crf_10_ss_00_t_20.0,0.08824294060468674
1179
+ Vlog_480P-7d0c_crf_10_ss_00_t_20.0,-0.005546531639993191
1180
+ Vlog_480P-7ecf_crf_10_ss_00_t_20.0,-0.1058994010090828
1181
+ Vlog_720P-033a_crf_10_ss_00_t_20.0,0.24031567573547363
1182
+ Vlog_720P-03d5_crf_10_ss_00_t_20.0,0.04469011351466179
1183
+ Vlog_720P-03f9_crf_10_ss_00_t_20.0,0.1959865242242813
1184
+ Vlog_720P-0d79_crf_10_ss_00_t_20.0,0.11874435842037201
1185
+ Vlog_720P-1003_crf_10_ss_00_t_20.0,-0.027297377586364746
1186
+ Vlog_720P-11c5_crf_10_ss_00_t_20.0,0.07138098031282425
1187
+ Vlog_720P-135c_crf_10_ss_00_t_20.0,-0.09916441142559052
1188
+ Vlog_720P-141f_crf_10_ss_00_t_20.0,-0.29790031909942627
1189
+ Vlog_720P-155f_crf_10_ss_00_t_20.0,0.308705598115921
1190
+ Vlog_720P-2929_crf_10_ss_00_t_20.0,0.16447243094444275
1191
+ Vlog_720P-329f_crf_10_ss_00_t_20.0,0.09515584260225296
1192
+ Vlog_720P-32b2_crf_10_ss_00_t_20.0,0.387435644865036
1193
+ Vlog_720P-343d_crf_10_ss_00_t_20.0,-0.004049272276461124
1194
+ Vlog_720P-372d_crf_10_ss_00_t_20.0,0.2203434556722641
1195
+ Vlog_720P-3e9c_crf_10_ss_00_t_20.0,0.12124796956777573
1196
+ Vlog_720P-4e3d_crf_10_ss_00_t_20.0,-0.14645007252693176
1197
+ Vlog_720P-5364_crf_10_ss_00_t_20.0,-0.5841221809387207
1198
+ Vlog_720P-55b6_crf_10_ss_00_t_20.0,0.393290638923645
1199
+ Vlog_720P-561e_crf_10_ss_00_t_20.0,0.11877161264419556
1200
+ Vlog_720P-5d08_crf_10_ss_00_t_20.0,0.031313564628362656
1201
+ Vlog_720P-60f8_crf_10_ss_00_t_20.0,0.5144962668418884
1202
+ Vlog_720P-6d56_crf_10_ss_00_t_20.0,0.10568990558385849
prediction_results/youtube_ugc/overall.csv ADDED
@@ -0,0 +1,1202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Mos
2
+ Animation_1080P-01b3_crf_10_ss_00_t_20.0,0.002372561488300562
3
+ Animation_1080P-05f8_crf_10_ss_00_t_20.0,0.27163808792829514
4
+ Animation_1080P-0c4f_crf_10_ss_00_t_20.0,0.5380823686718941
5
+ Animation_1080P-0cdf_crf_10_ss_00_t_20.0,0.9629290476441383
6
+ Animation_1080P-18f5_crf_10_ss_00_t_20.0,0.3821556642651558
7
+ Animation_1080P-209f_crf_10_ss_00_t_20.0,0.7821290120482445
8
+ Animation_1080P-21dd_crf_10_ss_00_t_20.0,-0.010271925712004304
9
+ Animation_1080P-2fbe_crf_10_ss_00_t_20.0,-0.32280144840478897
10
+ Animation_1080P-2fff_crf_10_ss_00_t_20.0,0.9813951551914215
11
+ Animation_1080P-3d67_crf_10_ss_00_t_20.0,-1.538683831691742
12
+ Animation_1080P-3dbf_crf_10_ss_00_t_20.0,0.8383147567510605
13
+ Animation_1080P-3e01_crf_10_ss_00_t_20.0,0.545402392745018
14
+ Animation_1080P-4214_crf_10_ss_00_t_20.0,0.3344971276819706
15
+ Animation_1080P-4be3_crf_10_ss_00_t_20.0,-0.13030067272484303
16
+ Animation_1080P-4ea8_crf_10_ss_00_t_20.0,0.1069328635931015
17
+ Animation_1080P-5083_crf_10_ss_00_t_20.0,-0.8678815811872482
18
+ Animation_1080P-58d3_crf_10_ss_00_t_20.0,0.816951759159565
19
+ Animation_1080P-5dd8_crf_10_ss_00_t_20.0,0.7503128200769424
20
+ Animation_1080P-646f_crf_10_ss_00_t_20.0,-0.43672680854797363
21
+ Animation_1080P-66ba_crf_10_ss_00_t_20.0,-0.6908625513315201
22
+ Animation_1080P-6a33_crf_10_ss_00_t_20.0,-1.586382918059826
23
+ Animation_1080P-6ec0_crf_10_ss_00_t_20.0,0.46894557029008865
24
+ Animation_2160P-41dc_crf_10_ss_00_t_20.0,-0.1755999606102705
25
+ Animation_2160P-6f3b_crf_10_ss_00_t_20.0,0.6068903654813766
26
+ Animation_360P-08c9_crf_10_ss_00_t_20.0,0.23523112386465073
27
+ Animation_360P-188f_crf_10_ss_00_t_20.0,0.023967185989022255
28
+ Animation_360P-24d4_crf_10_ss_00_t_20.0,-0.34772415459156036
29
+ Animation_360P-3e40_crf_10_ss_00_t_20.0,-0.9351696670055389
30
+ Animation_360P-3e52_crf_10_ss_00_t_20.0,-0.055865220725536346
31
+ Animation_360P-47cc_crf_10_ss_00_t_20.0,-0.5300912633538246
32
+ Animation_360P-4b4c_crf_10_ss_00_t_20.0,-1.3286814168095589
33
+ Animation_360P-4edc_crf_10_ss_00_t_20.0,0.279613234102726
34
+ Animation_360P-5712_crf_10_ss_00_t_20.0,0.21090273559093475
35
+ Animation_360P-5de0_crf_10_ss_00_t_20.0,-0.3548031449317932
36
+ Animation_360P-631c_crf_10_ss_00_t_20.0,-1.5849357694387436
37
+ Animation_360P-69e0_crf_10_ss_00_t_20.0,-0.45017580687999725
38
+ Animation_360P-7856_crf_10_ss_00_t_20.0,-0.8958521783351898
39
+ Animation_360P-794f_crf_10_ss_00_t_20.0,-0.4229353293776512
40
+ Animation_480P-046c_crf_10_ss_00_t_20.0,-0.7018193677067757
41
+ Animation_480P-073c_crf_10_ss_00_t_20.0,-0.5436442065984011
42
+ Animation_480P-087e_crf_10_ss_00_t_20.0,-0.3529698122292757
43
+ Animation_480P-08a5_crf_10_ss_00_t_20.0,-0.01376582682132721
44
+ Animation_480P-0d04_crf_10_ss_00_t_20.0,-0.6042309105396271
45
+ Animation_480P-1da7_crf_10_ss_00_t_20.0,-0.022438985761255026
46
+ Animation_480P-35ee_crf_10_ss_00_t_20.0,-0.6234202980995178
47
+ Animation_480P-3fdf_crf_10_ss_00_t_20.0,-0.38080591708421707
48
+ Animation_480P-4b86_crf_10_ss_00_t_20.0,-0.4573025032877922
49
+ Animation_480P-4e36_crf_10_ss_00_t_20.0,-0.48150254413485527
50
+ Animation_480P-52af_crf_10_ss_00_t_20.0,-0.21862228959798813
51
+ Animation_480P-66c0_crf_10_ss_00_t_20.0,-0.03958050720393658
52
+ Animation_480P-6e23_crf_10_ss_00_t_20.0,-0.07587648928165436
53
+ Animation_480P-6ef6_crf_10_ss_00_t_20.0,0.031084470450878143
54
+ Animation_480P-6ff4_crf_10_ss_00_t_20.0,-0.37167853862047195
55
+ Animation_480P-70d4_crf_10_ss_00_t_20.0,0.15986940637230873
56
+ Animation_480P-791b_crf_10_ss_00_t_20.0,-0.45078547298908234
57
+ Animation_480P-7a31_crf_10_ss_00_t_20.0,-0.1781565435230732
58
+ Animation_480P-7ef2_crf_10_ss_00_t_20.0,-0.6142626032233238
59
+ Animation_720P-0116_crf_10_ss_00_t_20.0,0.8306200988590717
60
+ Animation_720P-01b3_crf_10_ss_00_t_20.0,-0.01893395185470581
61
+ Animation_720P-06a6_crf_10_ss_00_t_20.0,0.5528036952018738
62
+ Animation_720P-0acc_crf_10_ss_00_t_20.0,0.34074196219444275
63
+ Animation_720P-13b7_crf_10_ss_00_t_20.0,1.155206609517336
64
+ Animation_720P-1a6d_crf_10_ss_00_t_20.0,0.5431375727057457
65
+ Animation_720P-2525_crf_10_ss_00_t_20.0,0.44658355694264174
66
+ Animation_720P-2abf_crf_10_ss_00_t_20.0,0.06138259172439575
67
+ Animation_720P-3adc_crf_10_ss_00_t_20.0,0.11978898197412491
68
+ Animation_720P-412a_crf_10_ss_00_t_20.0,1.2114003002643585
69
+ Animation_720P-41cf_crf_10_ss_00_t_20.0,0.49097631871700287
70
+ Animation_720P-41d6_crf_10_ss_00_t_20.0,0.63869484141469
71
+ Animation_720P-4268_crf_10_ss_00_t_20.0,0.3183415085077286
72
+ Animation_720P-431c_crf_10_ss_00_t_20.0,1.202622450888157
73
+ Animation_720P-57d9_crf_10_ss_00_t_20.0,-0.22567019052803516
74
+ Animation_720P-620f_crf_10_ss_00_t_20.0,1.0791787691414356
75
+ Animation_720P-6372_crf_10_ss_00_t_20.0,1.2505917139351368
76
+ Animation_720P-79ee_crf_10_ss_00_t_20.0,-1.7301216647028923
77
+ Animation_720P-7b29_crf_10_ss_00_t_20.0,0.15380355715751648
78
+ Animation_720P-7e7d_crf_10_ss_00_t_20.0,0.0037791822105646133
79
+ Animation_720P-7ff2_crf_10_ss_00_t_20.0,0.6010234206914902
80
+ CoverSong_1080P-0188_crf_10_ss_00_t_20.0,-0.7347601130604744
81
+ CoverSong_1080P-033d_crf_10_ss_00_t_20.0,1.2730026319622993
82
+ CoverSong_1080P-0a86_crf_10_ss_00_t_20.0,0.9856835640966892
83
+ CoverSong_1080P-0cdc_crf_10_ss_00_t_20.0,-1.4904506355524063
84
+ CoverSong_1080P-0f33_crf_10_ss_00_t_20.0,-0.9773372933268547
85
+ CoverSong_1080P-0f3a_crf_10_ss_00_t_20.0,0.9394773170351982
86
+ CoverSong_1080P-1963_crf_10_ss_00_t_20.0,0.5823099240660667
87
+ CoverSong_1080P-1b08_crf_10_ss_00_t_20.0,0.33161407709121704
88
+ CoverSong_1080P-1b0c_crf_10_ss_00_t_20.0,0.05899064615368843
89
+ CoverSong_1080P-2207_crf_10_ss_00_t_20.0,0.059700630605220795
90
+ CoverSong_1080P-237f_crf_10_ss_00_t_20.0,0.9049827232956886
91
+ CoverSong_1080P-3409_crf_10_ss_00_t_20.0,1.0077235102653503
92
+ CoverSong_1080P-3499_crf_10_ss_00_t_20.0,1.2574648186564445
93
+ CoverSong_1080P-3aac_crf_10_ss_00_t_20.0,-0.4658624827861786
94
+ CoverSong_1080P-3df8_crf_10_ss_00_t_20.0,0.1832905448973179
95
+ CoverSong_1080P-4bad_crf_10_ss_00_t_20.0,0.9162763729691505
96
+ CoverSong_1080P-5430_crf_10_ss_00_t_20.0,0.6401896439492702
97
+ CoverSong_1080P-5456_crf_10_ss_00_t_20.0,0.0024455897510051727
98
+ CoverSong_1080P-5cae_crf_10_ss_00_t_20.0,0.184885922819376
99
+ CoverSong_1080P-5e69_crf_10_ss_00_t_20.0,-0.42076002061367035
100
+ CoverSong_1080P-5f92_crf_10_ss_00_t_20.0,0.37112850695848465
101
+ CoverSong_1080P-6f26_crf_10_ss_00_t_20.0,0.9946967214345932
102
+ CoverSong_360P-0a9d_crf_10_ss_00_t_20.0,-1.7296216189861298
103
+ CoverSong_360P-0aa2_crf_10_ss_00_t_20.0,-1.5699566677212715
104
+ CoverSong_360P-11f9_crf_10_ss_00_t_20.0,-1.366802029311657
105
+ CoverSong_360P-13d2_crf_10_ss_00_t_20.0,-1.715576320886612
106
+ CoverSong_360P-14b9_crf_10_ss_00_t_20.0,-1.5876403823494911
107
+ CoverSong_360P-1b2b_crf_10_ss_00_t_20.0,-0.33816763013601303
108
+ CoverSong_360P-2146_crf_10_ss_00_t_20.0,-1.84232809394598
109
+ CoverSong_360P-2b4d_crf_10_ss_00_t_20.0,-1.4291834086179733
110
+ CoverSong_360P-3218_crf_10_ss_00_t_20.0,-1.906473122537136
111
+ CoverSong_360P-4add_crf_10_ss_00_t_20.0,-1.0578400120139122
112
+ CoverSong_360P-53a6_crf_10_ss_00_t_20.0,-0.37821198999881744
113
+ CoverSong_360P-59d1_crf_10_ss_00_t_20.0,-1.486208751797676
114
+ CoverSong_360P-5a24_crf_10_ss_00_t_20.0,-1.2427810579538345
115
+ CoverSong_360P-5d20_crf_10_ss_00_t_20.0,-1.25165493786335
116
+ CoverSong_360P-67ec_crf_10_ss_00_t_20.0,-1.6727866008877754
117
+ CoverSong_360P-69ef_crf_10_ss_00_t_20.0,-1.232690803706646
118
+ CoverSong_360P-6d6a_crf_10_ss_00_t_20.0,-0.5361129865050316
119
+ CoverSong_360P-6da7_crf_10_ss_00_t_20.0,-1.4746220782399178
120
+ CoverSong_480P-0170_crf_10_ss_00_t_20.0,-0.7688247263431549
121
+ CoverSong_480P-1019_crf_10_ss_00_t_20.0,0.5010835379362106
122
+ CoverSong_480P-1109_crf_10_ss_00_t_20.0,-1.8130227327346802
123
+ CoverSong_480P-2142_crf_10_ss_00_t_20.0,-0.5929513201117516
124
+ CoverSong_480P-2207_crf_10_ss_00_t_20.0,-1.3197761997580528
125
+ CoverSong_480P-2d2c_crf_10_ss_00_t_20.0,0.2205248326063156
126
+ CoverSong_480P-3076_crf_10_ss_00_t_20.0,-3.087167501449585
127
+ CoverSong_480P-35e1_crf_10_ss_00_t_20.0,0.02807871624827385
128
+ CoverSong_480P-3e4b_crf_10_ss_00_t_20.0,-1.0653846189379692
129
+ CoverSong_480P-3e92_crf_10_ss_00_t_20.0,0.8032481074333191
130
+ CoverSong_480P-3f3b_crf_10_ss_00_t_20.0,-0.8692981079220772
131
+ CoverSong_480P-41a5_crf_10_ss_00_t_20.0,-0.45649266988039017
132
+ CoverSong_480P-4d34_crf_10_ss_00_t_20.0,-1.6707304939627647
133
+ CoverSong_480P-53f4_crf_10_ss_00_t_20.0,-0.9138239994645119
134
+ CoverSong_480P-59f2_crf_10_ss_00_t_20.0,-0.4739689975976944
135
+ CoverSong_480P-5b62_crf_10_ss_00_t_20.0,-1.1286058276891708
136
+ CoverSong_480P-60a6_crf_10_ss_00_t_20.0,-1.7995817139744759
137
+ CoverSong_480P-64d0_crf_10_ss_00_t_20.0,0.38463012129068375
138
+ CoverSong_480P-6c3e_crf_10_ss_00_t_20.0,-1.4303550198674202
139
+ CoverSong_480P-6c50_crf_10_ss_00_t_20.0,-1.604498066008091
140
+ CoverSong_480P-7f6d_crf_10_ss_00_t_20.0,-1.1601479724049568
141
+ CoverSong_720P-014c_crf_10_ss_00_t_20.0,-1.4302341938018799
142
+ CoverSong_720P-01a1_crf_10_ss_00_t_20.0,-0.17310092877596617
143
+ CoverSong_720P-0239_crf_10_ss_00_t_20.0,-1.5937032774090767
144
+ CoverSong_720P-05d6_crf_10_ss_00_t_20.0,0.002394322887994349
145
+ CoverSong_720P-10f1_crf_10_ss_00_t_20.0,-1.4990342780947685
146
+ CoverSong_720P-1393_crf_10_ss_00_t_20.0,0.16855435073375702
147
+ CoverSong_720P-2d05_crf_10_ss_00_t_20.0,-0.7663146704435349
148
+ CoverSong_720P-3dca_crf_10_ss_00_t_20.0,-0.11272036284208298
149
+ CoverSong_720P-4006_crf_10_ss_00_t_20.0,0.22572725638747215
150
+ CoverSong_720P-449f_crf_10_ss_00_t_20.0,0.08404768258333206
151
+ CoverSong_720P-5689_crf_10_ss_00_t_20.0,-1.734216347336769
152
+ CoverSong_720P-5ba2_crf_10_ss_00_t_20.0,-1.1301463767886162
153
+ CoverSong_720P-60d3_crf_10_ss_00_t_20.0,-1.080436997115612
154
+ CoverSong_720P-6626_crf_10_ss_00_t_20.0,-0.4917937070131302
155
+ CoverSong_720P-6b8c_crf_10_ss_00_t_20.0,-1.2011903300881386
156
+ CoverSong_720P-6d6a_crf_10_ss_00_t_20.0,-0.22567498683929443
157
+ CoverSong_720P-6d81_crf_10_ss_00_t_20.0,-0.6846734955906868
158
+ CoverSong_720P-7360_crf_10_ss_00_t_20.0,-1.5315566509962082
159
+ CoverSong_720P-7539_crf_10_ss_00_t_20.0,-0.9012991487979889
160
+ Gaming_1080P-0ce6_crf_10_ss_00_t_20.0,0.5621550790965557
161
+ Gaming_1080P-0ef8_crf_10_ss_00_t_20.0,0.43024954944849014
162
+ Gaming_1080P-12d4_crf_10_ss_00_t_20.0,1.1072795763611794
163
+ Gaming_1080P-13e3_crf_10_ss_00_t_20.0,1.2203877419233322
164
+ Gaming_1080P-1704_crf_10_ss_00_t_20.0,0.9102133810520172
165
+ Gaming_1080P-173a_crf_10_ss_00_t_20.0,-1.0241227746009827
166
+ Gaming_1080P-190d_crf_10_ss_00_t_20.0,0.2600703611969948
167
+ Gaming_1080P-2221_crf_10_ss_00_t_20.0,0.9657564610242844
168
+ Gaming_1080P-223e_crf_10_ss_00_t_20.0,0.9969226904213428
169
+ Gaming_1080P-26dc_crf_10_ss_00_t_20.0,0.6051445789635181
170
+ Gaming_1080P-277c_crf_10_ss_00_t_20.0,-0.08947721775621176
171
+ Gaming_1080P-2927_crf_10_ss_00_t_20.0,0.8849621415138245
172
+ Gaming_1080P-29b1_crf_10_ss_00_t_20.0,0.473651647567749
173
+ Gaming_1080P-2e97_crf_10_ss_00_t_20.0,1.0396683178842068
174
+ Gaming_1080P-35fa_crf_10_ss_00_t_20.0,-1.2676531821489334
175
+ Gaming_1080P-3a9d_crf_10_ss_00_t_20.0,0.3605460301041603
176
+ Gaming_1080P-3bf7_crf_10_ss_00_t_20.0,-1.469031922519207
177
+ Gaming_1080P-3d58_crf_10_ss_00_t_20.0,0.42641374468803406
178
+ Gaming_1080P-44c4_crf_10_ss_00_t_20.0,0.52272654697299
179
+ Gaming_1080P-45af_crf_10_ss_00_t_20.0,1.0560182966291904
180
+ Gaming_1080P-45fc_crf_10_ss_00_t_20.0,-0.31213733181357384
181
+ Gaming_1080P-4865_crf_10_ss_00_t_20.0,0.9363993965089321
182
+ Gaming_1080P-51fc_crf_10_ss_00_t_20.0,1.0729193538427353
183
+ Gaming_1080P-564e_crf_10_ss_00_t_20.0,1.2197895348072052
184
+ Gaming_1080P-57ca_crf_10_ss_00_t_20.0,1.0794185623526573
185
+ Gaming_1080P-58ba_crf_10_ss_00_t_20.0,0.021668388042598963
186
+ Gaming_1080P-5ae7_crf_10_ss_00_t_20.0,-1.0420731753110886
187
+ Gaming_1080P-6530_crf_10_ss_00_t_20.0,0.42895666509866714
188
+ Gaming_1080P-6578_crf_10_ss_00_t_20.0,0.9242782443761826
189
+ Gaming_1080P-66d2_crf_10_ss_00_t_20.0,0.5479539670050144
190
+ Gaming_1080P-698a_crf_10_ss_00_t_20.0,0.17673248425126076
191
+ Gaming_1080P-6d53_crf_10_ss_00_t_20.0,0.5150249972939491
192
+ Gaming_1080P-6db2_crf_10_ss_00_t_20.0,-0.2964576296508312
193
+ Gaming_1080P-6dc6_crf_10_ss_00_t_20.0,1.3446721285581589
194
+ Gaming_1080P-6e45_crf_10_ss_00_t_20.0,-1.8886095508933067
195
+ Gaming_1080P-71a5_crf_10_ss_00_t_20.0,1.158369343727827
196
+ Gaming_1080P-72c8_crf_10_ss_00_t_20.0,0.9790275767445564
197
+ Gaming_1080P-777b_crf_10_ss_00_t_20.0,0.4241672232747078
198
+ Gaming_1080P-7a1e_crf_10_ss_00_t_20.0,0.44405660778284073
199
+ Gaming_2160P-2436_crf_10_ss_00_t_20.0,1.1391003802418709
200
+ Gaming_2160P-28de_crf_10_ss_00_t_20.0,1.1222292631864548
201
+ Gaming_2160P-2b92_crf_10_ss_00_t_20.0,-0.027167148888111115
202
+ Gaming_2160P-2cb1_crf_10_ss_00_t_20.0,1.1971959434449673
203
+ Gaming_2160P-2dc4_crf_10_ss_00_t_20.0,0.9163541831076145
204
+ Gaming_2160P-3002_crf_10_ss_00_t_20.0,0.8083895742893219
205
+ Gaming_2160P-31f6_crf_10_ss_00_t_20.0,1.1561645977199078
206
+ Gaming_2160P-348d_crf_10_ss_00_t_20.0,0.9987546838819981
207
+ Gaming_2160P-34a1_crf_10_ss_00_t_20.0,0.9438402578234673
208
+ Gaming_2160P-387f_crf_10_ss_00_t_20.0,1.5599787775427103
209
+ Gaming_2160P-3a25_crf_10_ss_00_t_20.0,1.0727280676364899
210
+ Gaming_2160P-3aec_crf_10_ss_00_t_20.0,1.2075262106955051
211
+ Gaming_2160P-3ce4_crf_10_ss_00_t_20.0,1.5846613179892302
212
+ Gaming_2160P-4139_crf_10_ss_00_t_20.0,0.9443783313035965
213
+ Gaming_2160P-416f_crf_10_ss_00_t_20.0,0.9039363786578178
214
+ Gaming_2160P-4258_crf_10_ss_00_t_20.0,0.26615964621305466
215
+ Gaming_2160P-5c33_crf_10_ss_00_t_20.0,-1.1116922497749329
216
+ Gaming_2160P-5c53_crf_10_ss_00_t_20.0,1.6728529538959265
217
+ Gaming_2160P-673d_crf_10_ss_00_t_20.0,1.07582051679492
218
+ Gaming_2160P-67b0_crf_10_ss_00_t_20.0,0.9771897010505199
219
+ Gaming_2160P-6bb6_crf_10_ss_00_t_20.0,1.4042925760149956
220
+ Gaming_2160P-6cd8_crf_10_ss_00_t_20.0,1.0241217613220215
221
+ Gaming_2160P-7e80_crf_10_ss_00_t_20.0,0.28784891217947006
222
+ Gaming_2160P-7ff0_crf_10_ss_00_t_20.0,0.944768488407135
223
+ Gaming_360P-043e_crf_10_ss_00_t_20.0,-1.0649527460336685
224
+ Gaming_360P-0b98_crf_10_ss_00_t_20.0,-0.8789189010858536
225
+ Gaming_360P-187a_crf_10_ss_00_t_20.0,-0.5651661828160286
226
+ Gaming_360P-215f_crf_10_ss_00_t_20.0,-0.7544412389397621
227
+ Gaming_360P-2164_crf_10_ss_00_t_20.0,-0.21877345256507397
228
+ Gaming_360P-21d2_crf_10_ss_00_t_20.0,-2.067224681377411
229
+ Gaming_360P-2330_crf_10_ss_00_t_20.0,-1.4188494011759758
230
+ Gaming_360P-279f_crf_10_ss_00_t_20.0,-0.5842501744627953
231
+ Gaming_360P-2f99_crf_10_ss_00_t_20.0,-0.6954150125384331
232
+ Gaming_360P-3794_crf_10_ss_00_t_20.0,-2.579043745994568
233
+ Gaming_360P-3eb6_crf_10_ss_00_t_20.0,-0.4267037957906723
234
+ Gaming_360P-48b0_crf_10_ss_00_t_20.0,-0.10334652662277222
235
+ Gaming_360P-4f09_crf_10_ss_00_t_20.0,-0.3416709043085575
236
+ Gaming_360P-56fe_crf_10_ss_00_t_20.0,-1.2650280967354774
237
+ Gaming_360P-586d_crf_10_ss_00_t_20.0,-0.9484071210026741
238
+ Gaming_360P-5e0f_crf_10_ss_00_t_20.0,-0.8432860970497131
239
+ Gaming_360P-6207_crf_10_ss_00_t_20.0,-0.5825097784399986
240
+ Gaming_360P-63e6_crf_10_ss_00_t_20.0,-1.2739175856113434
241
+ Gaming_360P-73c7_crf_10_ss_00_t_20.0,-0.4398575499653816
242
+ Gaming_360P-7975_crf_10_ss_00_t_20.0,-1.2407857105135918
243
+ Gaming_360P-7acb_crf_10_ss_00_t_20.0,-0.9917515888810158
244
+ Gaming_480P-0109_crf_10_ss_00_t_20.0,-1.511551395058632
245
+ Gaming_480P-062e_crf_10_ss_00_t_20.0,-0.6889046877622604
246
+ Gaming_480P-09ab_crf_10_ss_00_t_20.0,0.40992990508675575
247
+ Gaming_480P-0a03_crf_10_ss_00_t_20.0,-1.192002721130848
248
+ Gaming_480P-0d23_crf_10_ss_00_t_20.0,-0.07351681590080261
249
+ Gaming_480P-0dbc_crf_10_ss_00_t_20.0,-1.4271471053361893
250
+ Gaming_480P-14fc_crf_10_ss_00_t_20.0,-0.008722213096916676
251
+ Gaming_480P-1542_crf_10_ss_00_t_20.0,-1.2927134782075882
252
+ Gaming_480P-20ca_crf_10_ss_00_t_20.0,-1.2361013740301132
253
+ Gaming_480P-3a44_crf_10_ss_00_t_20.0,-0.6490697488188744
254
+ Gaming_480P-445b_crf_10_ss_00_t_20.0,0.31787341833114624
255
+ Gaming_480P-4560_crf_10_ss_00_t_20.0,0.5077758654952049
256
+ Gaming_480P-5a5a_crf_10_ss_00_t_20.0,-0.19720627181231976
257
+ Gaming_480P-61ee_crf_10_ss_00_t_20.0,0.8213400915265083
258
+ Gaming_480P-626a_crf_10_ss_00_t_20.0,0.28920795395970345
259
+ Gaming_480P-6491_crf_10_ss_00_t_20.0,-1.2507138028740883
260
+ Gaming_480P-6548_crf_10_ss_00_t_20.0,-1.0173307359218597
261
+ Gaming_480P-6a5a_crf_10_ss_00_t_20.0,-0.0922366101294756
262
+ Gaming_480P-6c92_crf_10_ss_00_t_20.0,-1.3659583404660225
263
+ Gaming_480P-6cdc_crf_10_ss_00_t_20.0,-1.5292870700359344
264
+ Gaming_480P-6d1e_crf_10_ss_00_t_20.0,-1.521916501224041
265
+ Gaming_480P-6f4b_crf_10_ss_00_t_20.0,0.2712535634636879
266
+ Gaming_480P-75f7_crf_10_ss_00_t_20.0,-1.3063280954957008
267
+ Gaming_480P-7893_crf_10_ss_00_t_20.0,-0.3363404609262943
268
+ Gaming_480P-7a08_crf_10_ss_00_t_20.0,0.019643155857920647
269
+ Gaming_480P-7ccb_crf_10_ss_00_t_20.0,0.5034773051738739
270
+ Gaming_480P-7e76_crf_10_ss_00_t_20.0,-1.4612730666995049
271
+ Gaming_720P-0fba_crf_10_ss_00_t_20.0,0.7593115530908108
272
+ Gaming_720P-0fdb_crf_10_ss_00_t_20.0,-1.140901729464531
273
+ Gaming_720P-1035_crf_10_ss_00_t_20.0,0.379379328340292
274
+ Gaming_720P-103a_crf_10_ss_00_t_20.0,0.42814845964312553
275
+ Gaming_720P-1cbb_crf_10_ss_00_t_20.0,0.3849201612174511
276
+ Gaming_720P-221d_crf_10_ss_00_t_20.0,-0.5213626623153687
277
+ Gaming_720P-25aa_crf_10_ss_00_t_20.0,-0.8089098110795021
278
+ Gaming_720P-2dbe_crf_10_ss_00_t_20.0,0.6373224779963493
279
+ Gaming_720P-312f_crf_10_ss_00_t_20.0,0.2821023762226105
280
+ Gaming_720P-324d_crf_10_ss_00_t_20.0,-0.7656683325767517
281
+ Gaming_720P-3524_crf_10_ss_00_t_20.0,-0.5818549022078514
282
+ Gaming_720P-40b2_crf_10_ss_00_t_20.0,0.32937315851449966
283
+ Gaming_720P-469a_crf_10_ss_00_t_20.0,0.4607531502842903
284
+ Gaming_720P-4813_crf_10_ss_00_t_20.0,0.5397084504365921
285
+ Gaming_720P-493e_crf_10_ss_00_t_20.0,-0.42312712222337723
286
+ Gaming_720P-4cda_crf_10_ss_00_t_20.0,-0.06615654472261667
287
+ Gaming_720P-5973_crf_10_ss_00_t_20.0,0.8387833945453167
288
+ Gaming_720P-5ba2_crf_10_ss_00_t_20.0,0.9789841882884502
289
+ Gaming_720P-6403_crf_10_ss_00_t_20.0,0.6002152934670448
290
+ Gaming_720P-64b0_crf_10_ss_00_t_20.0,1.1426029615104198
291
+ Gaming_720P-6625_crf_10_ss_00_t_20.0,-0.31438275054097176
292
+ Gaming_720P-6658_crf_10_ss_00_t_20.0,0.21640056744217873
293
+ Gaming_720P-6a45_crf_10_ss_00_t_20.0,0.7707205414772034
294
+ Gaming_720P-7afd_crf_10_ss_00_t_20.0,-1.035694994032383
295
+ HDR_1080P-0d31_crf_10_ss_00_t_20.0,0.7526787370443344
296
+ HDR_1080P-13eb_crf_10_ss_00_t_20.0,0.911036130040884
297
+ HDR_1080P-1be2_crf_10_ss_00_t_20.0,0.4013226442039013
298
+ HDR_1080P-1e5b_crf_10_ss_00_t_20.0,-1.6359611228108406
299
+ HDR_1080P-206d_crf_10_ss_00_t_20.0,0.8900505192577839
300
+ HDR_1080P-282a_crf_10_ss_00_t_20.0,0.24941710010170937
301
+ HDR_1080P-2d32_crf_10_ss_00_t_20.0,1.2756792604923248
302
+ HDR_1080P-3181_crf_10_ss_00_t_20.0,-0.6772433221340179
303
+ HDR_1080P-33e3_crf_10_ss_00_t_20.0,0.9745684154331684
304
+ HDR_1080P-3521_crf_10_ss_00_t_20.0,0.9569417834281921
305
+ HDR_1080P-35f4_crf_10_ss_00_t_20.0,0.8522504158318043
306
+ HDR_1080P-3749_crf_10_ss_00_t_20.0,0.9543341547250748
307
+ HDR_1080P-3a4a_crf_10_ss_00_t_20.0,0.044395092176273465
308
+ HDR_1080P-46a4_crf_10_ss_00_t_20.0,0.273011383600533
309
+ HDR_1080P-49d6_crf_10_ss_00_t_20.0,1.0641872994601727
310
+ HDR_1080P-4f4a_crf_10_ss_00_t_20.0,0.6084000431001186
311
+ HDR_1080P-548b_crf_10_ss_00_t_20.0,0.6676098182797432
312
+ HDR_1080P-549e_crf_10_ss_00_t_20.0,1.070599365979433
313
+ HDR_1080P-55c4_crf_10_ss_00_t_20.0,0.6139873750507832
314
+ HDR_1080P-601b_crf_10_ss_00_t_20.0,0.7918097898364067
315
+ HDR_1080P-687e_crf_10_ss_00_t_20.0,-0.512127161026001
316
+ HDR_1080P-68c8_crf_10_ss_00_t_20.0,0.4656660556793213
317
+ HDR_1080P-69de_crf_10_ss_00_t_20.0,0.6043208241462708
318
+ HDR_1080P-6eb7_crf_10_ss_00_t_20.0,0.9541216567158699
319
+ HDR_1080P-7825_crf_10_ss_00_t_20.0,0.9732367023825645
320
+ HDR_2160P-06ae_crf_10_ss_00_t_20.0,1.3563226088881493
321
+ HDR_2160P-0e7a_crf_10_ss_00_t_20.0,-0.8185065537691116
322
+ HDR_2160P-15e2_crf_10_ss_00_t_20.0,1.3809213228523731
323
+ HDR_2160P-1743_crf_10_ss_00_t_20.0,0.4326184242963791
324
+ HDR_2160P-1e9e_crf_10_ss_00_t_20.0,0.6522716842591763
325
+ HDR_2160P-2a72_crf_10_ss_00_t_20.0,0.8472224213182926
326
+ HDR_2160P-351f_crf_10_ss_00_t_20.0,0.7552461326122284
327
+ HDR_2160P-3663_crf_10_ss_00_t_20.0,0.9821227081120014
328
+ HDR_2160P-382f_crf_10_ss_00_t_20.0,0.7060043103992939
329
+ HDR_2160P-40ab_crf_10_ss_00_t_20.0,0.536083497107029
330
+ HDR_2160P-4348_crf_10_ss_00_t_20.0,0.48122385889291763
331
+ HDR_2160P-4581_crf_10_ss_00_t_20.0,0.5029979795217514
332
+ HDR_2160P-4dcd_crf_10_ss_00_t_20.0,0.06486641056835651
333
+ HDR_2160P-51ea_crf_10_ss_00_t_20.0,0.3002703785896301
334
+ HDR_2160P-5275_crf_10_ss_00_t_20.0,1.1129634343087673
335
+ HDR_2160P-5926_crf_10_ss_00_t_20.0,1.3136131130158901
336
+ HDR_2160P-5c86_crf_10_ss_00_t_20.0,0.8460395596921444
337
+ HDR_2160P-5cdf_crf_10_ss_00_t_20.0,0.43346597254276276
338
+ HDR_2160P-5e25_crf_10_ss_00_t_20.0,0.7476788982748985
339
+ HDR_2160P-664d_crf_10_ss_00_t_20.0,-0.01326005905866623
340
+ HDR_2160P-6c6e_crf_10_ss_00_t_20.0,1.047453161329031
341
+ HDR_2160P-6ed1_crf_10_ss_00_t_20.0,0.7881719581782818
342
+ HDR_2160P-6eeb_crf_10_ss_00_t_20.0,0.795065775513649
343
+ HDR_2160P-6fa4_crf_10_ss_00_t_20.0,0.589407317340374
344
+ HDR_2160P-6fab_crf_10_ss_00_t_20.0,-0.5335686653852463
345
+ HDR_2160P-70ca_crf_10_ss_00_t_20.0,0.8623791411519051
346
+ HowTo_1080P-0267_crf_10_ss_00_t_20.0,-0.010495945811271667
347
+ HowTo_1080P-03fd_crf_10_ss_00_t_20.0,-0.32596693420782685
348
+ HowTo_1080P-13aa_crf_10_ss_00_t_20.0,0.8268692344427109
349
+ HowTo_1080P-1f3b_crf_10_ss_00_t_20.0,0.98430560156703
350
+ HowTo_1080P-36a9_crf_10_ss_00_t_20.0,0.6949637979269028
351
+ HowTo_1080P-4d7b_crf_10_ss_00_t_20.0,0.8045486509799957
352
+ HowTo_1080P-52bb_crf_10_ss_00_t_20.0,0.8621600531041622
353
+ HowTo_1080P-55d1_crf_10_ss_00_t_20.0,0.8600723668932915
354
+ HowTo_1080P-63e4_crf_10_ss_00_t_20.0,0.6306765191257
355
+ HowTo_1080P-63ec_crf_10_ss_00_t_20.0,1.0739946626126766
356
+ HowTo_1080P-64f7_crf_10_ss_00_t_20.0,0.5311621353030205
357
+ HowTo_1080P-6cbf_crf_10_ss_00_t_20.0,-1.9581280425190926
358
+ HowTo_1080P-7399_crf_10_ss_00_t_20.0,0.7655609883368015
359
+ HowTo_1080P-763c_crf_10_ss_00_t_20.0,0.5281170457601547
360
+ HowTo_1080P-7cf2_crf_10_ss_00_t_20.0,-0.13391713215969503
361
+ HowTo_1080P-7f18_crf_10_ss_00_t_20.0,0.2995450124144554
362
+ HowTo_1080P-7f4c_crf_10_ss_00_t_20.0,-0.010238289833068848
363
+ HowTo_360P-041c_crf_10_ss_00_t_20.0,-0.5558442994952202
364
+ HowTo_360P-0562_crf_10_ss_00_t_20.0,0.06301628053188324
365
+ HowTo_360P-06be_crf_10_ss_00_t_20.0,-0.4003879055380821
366
+ HowTo_360P-09f8_crf_10_ss_00_t_20.0,-1.0354898273944855
367
+ HowTo_360P-127f_crf_10_ss_00_t_20.0,-0.5226758345961571
368
+ HowTo_360P-1823_crf_10_ss_00_t_20.0,-0.39016058295965195
369
+ HowTo_360P-18e7_crf_10_ss_00_t_20.0,-0.6275213658809662
370
+ HowTo_360P-1dba_crf_10_ss_00_t_20.0,-2.002675011754036
371
+ HowTo_360P-2074_crf_10_ss_00_t_20.0,-0.04110484570264816
372
+ HowTo_360P-2a3b_crf_10_ss_00_t_20.0,-1.4308650195598602
373
+ HowTo_360P-2d35_crf_10_ss_00_t_20.0,-1.2053891941905022
374
+ HowTo_360P-2fd5_crf_10_ss_00_t_20.0,-2.221302852034569
375
+ HowTo_360P-3aa6_crf_10_ss_00_t_20.0,-0.9883453696966171
376
+ HowTo_360P-4276_crf_10_ss_00_t_20.0,-0.34652498131617904
377
+ HowTo_360P-4e4c_crf_10_ss_00_t_20.0,-0.9596647322177887
378
+ HowTo_360P-55e9_crf_10_ss_00_t_20.0,-0.16757480334490538
379
+ HowTo_360P-5da7_crf_10_ss_00_t_20.0,-0.13557228073477745
380
+ HowTo_360P-6093_crf_10_ss_00_t_20.0,-0.21903141681104898
381
+ HowTo_360P-6a0e_crf_10_ss_00_t_20.0,-1.952997125685215
382
+ HowTo_360P-7083_crf_10_ss_00_t_20.0,-0.773916557431221
383
+ HowTo_360P-7dcd_crf_10_ss_00_t_20.0,-0.8353114277124405
384
+ HowTo_360P-7fb1_crf_10_ss_00_t_20.0,-0.5372083634138107
385
+ HowTo_480P-04f1_crf_10_ss_00_t_20.0,-0.48544149100780487
386
+ HowTo_480P-0cb3_crf_10_ss_00_t_20.0,0.09246115945279598
387
+ HowTo_480P-0d00_crf_10_ss_00_t_20.0,0.4146455302834511
388
+ HowTo_480P-0eb3_crf_10_ss_00_t_20.0,-1.6088649556040764
389
+ HowTo_480P-118d_crf_10_ss_00_t_20.0,-2.086473435163498
390
+ HowTo_480P-15c1_crf_10_ss_00_t_20.0,-0.5680577382445335
391
+ HowTo_480P-221e_crf_10_ss_00_t_20.0,-0.5526828318834305
392
+ HowTo_480P-2610_crf_10_ss_00_t_20.0,-0.8555829301476479
393
+ HowTo_480P-32c9_crf_10_ss_00_t_20.0,-1.2437441945075989
394
+ HowTo_480P-3435_crf_10_ss_00_t_20.0,0.41407082229852676
395
+ HowTo_480P-470b_crf_10_ss_00_t_20.0,0.3161654621362686
396
+ HowTo_480P-48ac_crf_10_ss_00_t_20.0,-1.2923970744013786
397
+ HowTo_480P-4948_crf_10_ss_00_t_20.0,-1.6298905685544014
398
+ HowTo_480P-4a28_crf_10_ss_00_t_20.0,-0.06354198232293129
399
+ HowTo_480P-4b6a_crf_10_ss_00_t_20.0,-1.3241073340177536
400
+ HowTo_480P-4c99_crf_10_ss_00_t_20.0,-0.6758273616433144
401
+ HowTo_480P-56a5_crf_10_ss_00_t_20.0,0.5387734435498714
402
+ HowTo_480P-60b3_crf_10_ss_00_t_20.0,-0.09392078663222492
403
+ HowTo_480P-63a2_crf_10_ss_00_t_20.0,0.027813885360956192
404
+ HowTo_480P-64a2_crf_10_ss_00_t_20.0,-0.7553572133183479
405
+ HowTo_480P-7579_crf_10_ss_00_t_20.0,0.5689388290047646
406
+ HowTo_480P-7c11_crf_10_ss_00_t_20.0,-0.6412860751152039
407
+ HowTo_720P-017a_crf_10_ss_00_t_20.0,0.7289445176720619
408
+ HowTo_720P-06eb_crf_10_ss_00_t_20.0,0.8718649744987488
409
+ HowTo_720P-0a67_crf_10_ss_00_t_20.0,1.0356546565890312
410
+ HowTo_720P-0b01_crf_10_ss_00_t_20.0,0.916826669126749
411
+ HowTo_720P-0c47_crf_10_ss_00_t_20.0,0.3621913865208626
412
+ HowTo_720P-111e_crf_10_ss_00_t_20.0,0.17457018792629242
413
+ HowTo_720P-12f7_crf_10_ss_00_t_20.0,-0.8281103819608688
414
+ HowTo_720P-21c6_crf_10_ss_00_t_20.0,-1.042315162718296
415
+ HowTo_720P-269e_crf_10_ss_00_t_20.0,-0.09361502807587385
416
+ HowTo_720P-2cc6_crf_10_ss_00_t_20.0,-0.8377360850572586
417
+ HowTo_720P-37d0_crf_10_ss_00_t_20.0,1.035964049398899
418
+ HowTo_720P-3813_crf_10_ss_00_t_20.0,-0.6275401599705219
419
+ HowTo_720P-3a5d_crf_10_ss_00_t_20.0,-1.371731348335743
420
+ HowTo_720P-479b_crf_10_ss_00_t_20.0,0.22641780227422714
421
+ HowTo_720P-483c_crf_10_ss_00_t_20.0,-0.17182166641578078
422
+ HowTo_720P-4d55_crf_10_ss_00_t_20.0,0.6275001540780067
423
+ HowTo_720P-4d9e_crf_10_ss_00_t_20.0,0.19502106308937073
424
+ HowTo_720P-6323_crf_10_ss_00_t_20.0,0.3377366289496422
425
+ HowTo_720P-6791_crf_10_ss_00_t_20.0,-1.2319410592317581
426
+ HowTo_720P-7782_crf_10_ss_00_t_20.0,-0.1714494749903679
427
+ HowTo_720P-7878_crf_10_ss_00_t_20.0,0.4003802016377449
428
+ HowTo_720P-7c38_crf_10_ss_00_t_20.0,0.9379533119499683
429
+ Lecture_1080P-011f_crf_10_ss_00_t_20.0,-0.56342913210392
430
+ Lecture_1080P-0201_crf_10_ss_00_t_20.0,-0.2952607646584511
431
+ Lecture_1080P-0c8a_crf_10_ss_00_t_20.0,1.2520151995122433
432
+ Lecture_1080P-1709_crf_10_ss_00_t_20.0,0.32278505712747574
433
+ Lecture_1080P-1969_crf_10_ss_00_t_20.0,0.1960047371685505
434
+ Lecture_360P-03bc_crf_10_ss_00_t_20.0,-1.0697873830795288
435
+ Lecture_360P-051a_crf_10_ss_00_t_20.0,-1.4195187538862228
436
+ Lecture_360P-114f_crf_10_ss_00_t_20.0,0.9697665758430958
437
+ Lecture_360P-20c3_crf_10_ss_00_t_20.0,-0.7942193374037743
438
+ Lecture_360P-2276_crf_10_ss_00_t_20.0,0.29933561384677887
439
+ Lecture_360P-27db_crf_10_ss_00_t_20.0,-0.730462908744812
440
+ Lecture_360P-2c55_crf_10_ss_00_t_20.0,-0.25497808307409286
441
+ Lecture_360P-2d1f_crf_10_ss_00_t_20.0,0.04270719736814499
442
+ Lecture_360P-30eb_crf_10_ss_00_t_20.0,-0.40719494968652725
443
+ Lecture_360P-311d_crf_10_ss_00_t_20.0,-0.06533165276050568
444
+ Lecture_360P-3590_crf_10_ss_00_t_20.0,0.04119653254747391
445
+ Lecture_360P-44c2_crf_10_ss_00_t_20.0,-0.44694625586271286
446
+ Lecture_360P-4bb4_crf_10_ss_00_t_20.0,0.04778961092233658
447
+ Lecture_360P-4f00_crf_10_ss_00_t_20.0,-0.8355801701545715
448
+ Lecture_360P-506c_crf_10_ss_00_t_20.0,-0.7816721647977829
449
+ Lecture_360P-5594_crf_10_ss_00_t_20.0,-0.10927639913279563
450
+ Lecture_360P-5779_crf_10_ss_00_t_20.0,-0.5405361354351044
451
+ Lecture_360P-5aea_crf_10_ss_00_t_20.0,-0.8738260567188263
452
+ Lecture_360P-5d0a_crf_10_ss_00_t_20.0,-0.5902254432439804
453
+ Lecture_360P-6656_crf_10_ss_00_t_20.0,-0.32616835087537766
454
+ Lecture_360P-6d29_crf_10_ss_00_t_20.0,-1.1700780615210533
455
+ Lecture_360P-7550_crf_10_ss_00_t_20.0,-0.593476690351963
456
+ Lecture_360P-7a57_crf_10_ss_00_t_20.0,-0.6765596345067024
457
+ Lecture_360P-7f7e_crf_10_ss_00_t_20.0,0.12352468818426132
458
+ Lecture_480P-02f2_crf_10_ss_00_t_20.0,-0.6809698194265366
459
+ Lecture_480P-11df_crf_10_ss_00_t_20.0,-0.11440879851579666
460
+ Lecture_480P-181a_crf_10_ss_00_t_20.0,-2.823113963007927
461
+ Lecture_480P-1ec3_crf_10_ss_00_t_20.0,-0.7001982480287552
462
+ Lecture_480P-2513_crf_10_ss_00_t_20.0,-2.2648705691099167
463
+ Lecture_480P-2655_crf_10_ss_00_t_20.0,-0.7486017942428589
464
+ Lecture_480P-2ed0_crf_10_ss_00_t_20.0,-2.8474335819482803
465
+ Lecture_480P-369f_crf_10_ss_00_t_20.0,0.8993993103504181
466
+ Lecture_480P-3bdc_crf_10_ss_00_t_20.0,-1.2163739502429962
467
+ Lecture_480P-41b7_crf_10_ss_00_t_20.0,-0.18964358232915401
468
+ Lecture_480P-4272_crf_10_ss_00_t_20.0,-0.28395600244402885
469
+ Lecture_480P-42c3_crf_10_ss_00_t_20.0,-0.2857447937130928
470
+ Lecture_480P-4bc3_crf_10_ss_00_t_20.0,0.5370525643229485
471
+ Lecture_480P-4c86_crf_10_ss_00_t_20.0,-0.24878270039334893
472
+ Lecture_480P-5aee_crf_10_ss_00_t_20.0,-1.5762222334742546
473
+ Lecture_480P-5cd7_crf_10_ss_00_t_20.0,0.6288079880177975
474
+ Lecture_480P-5f3a_crf_10_ss_00_t_20.0,-1.5892230346798897
475
+ Lecture_480P-6191_crf_10_ss_00_t_20.0,-0.3370836079120636
476
+ Lecture_480P-6b1e_crf_10_ss_00_t_20.0,-0.318151871982991
477
+ Lecture_480P-71c0_crf_10_ss_00_t_20.0,-0.6090205162763596
478
+ Lecture_480P-71d6_crf_10_ss_00_t_20.0,-0.6830178573727608
479
+ Lecture_480P-7205_crf_10_ss_00_t_20.0,-0.4944223612546921
480
+ Lecture_480P-73f6_crf_10_ss_00_t_20.0,-0.5537183433771133
481
+ Lecture_480P-74cf_crf_10_ss_00_t_20.0,-0.38117238879203796
482
+ Lecture_480P-74ea_crf_10_ss_00_t_20.0,-0.5053145289421082
483
+ Lecture_480P-7d77_crf_10_ss_00_t_20.0,0.0752594880759716
484
+ Lecture_480P-7e55_crf_10_ss_00_t_20.0,-0.11210022028535604
485
+ Lecture_480P-7eec_crf_10_ss_00_t_20.0,-1.0718322917819023
486
+ Lecture_720P-003a_crf_10_ss_00_t_20.0,0.5286067575216293
487
+ Lecture_720P-07e0_crf_10_ss_00_t_20.0,0.6968523561954498
488
+ Lecture_720P-094d_crf_10_ss_00_t_20.0,-0.2458803355693817
489
+ Lecture_720P-0f64_crf_10_ss_00_t_20.0,-0.46928899735212326
490
+ Lecture_720P-1033_crf_10_ss_00_t_20.0,0.22774501610547304
491
+ Lecture_720P-10bc_crf_10_ss_00_t_20.0,-0.5852730646729469
492
+ Lecture_720P-11e7_crf_10_ss_00_t_20.0,-1.655752643942833
493
+ Lecture_720P-1e62_crf_10_ss_00_t_20.0,0.47313299030065536
494
+ Lecture_720P-1f22_crf_10_ss_00_t_20.0,0.7057307437062263
495
+ Lecture_720P-2442_crf_10_ss_00_t_20.0,-0.1945374347269535
496
+ Lecture_720P-2b0f_crf_10_ss_00_t_20.0,0.44590120017528534
497
+ Lecture_720P-2f38_crf_10_ss_00_t_20.0,-0.27731648832559586
498
+ Lecture_720P-2f8c_crf_10_ss_00_t_20.0,0.47708888351917267
499
+ Lecture_720P-3b7f_crf_10_ss_00_t_20.0,0.9430746100842953
500
+ Lecture_720P-3f9f_crf_10_ss_00_t_20.0,-0.10592600330710411
501
+ Lecture_720P-4c87_crf_10_ss_00_t_20.0,0.5429076999425888
502
+ Lecture_720P-50b9_crf_10_ss_00_t_20.0,0.1802806369960308
503
+ Lecture_720P-5120_crf_10_ss_00_t_20.0,0.8897976614534855
504
+ Lecture_720P-53a1_crf_10_ss_00_t_20.0,0.3793644830584526
505
+ Lecture_720P-5725_crf_10_ss_00_t_20.0,0.7266355529427528
506
+ Lecture_720P-5c7e_crf_10_ss_00_t_20.0,0.03140238393098116
507
+ Lecture_720P-6016_crf_10_ss_00_t_20.0,-0.7753735780715942
508
+ Lecture_720P-6951_crf_10_ss_00_t_20.0,0.9231879785656929
509
+ Lecture_720P-7189_crf_10_ss_00_t_20.0,0.7556790113449097
510
+ Lecture_720P-7dcf_crf_10_ss_00_t_20.0,0.5848267376422882
511
+ Lecture_720P-7e40_crf_10_ss_00_t_20.0,0.8696449100971222
512
+ LiveMusic_1080P-14af_crf_10_ss_00_t_20.0,1.0391873084008694
513
+ LiveMusic_1080P-157b_crf_10_ss_00_t_20.0,0.976783961057663
514
+ LiveMusic_1080P-1ace_crf_10_ss_00_t_20.0,0.7271763496100903
515
+ LiveMusic_1080P-21dd_crf_10_ss_00_t_20.0,0.0831150971353054
516
+ LiveMusic_1080P-28fe_crf_10_ss_00_t_20.0,-0.263300035148859
517
+ LiveMusic_1080P-2930_crf_10_ss_00_t_20.0,0.34966807067394257
518
+ LiveMusic_1080P-2b7a_crf_10_ss_00_t_20.0,0.19800670444965363
519
+ LiveMusic_1080P-2f7f_crf_10_ss_00_t_20.0,-0.015454396605491638
520
+ LiveMusic_1080P-3549_crf_10_ss_00_t_20.0,0.3640357181429863
521
+ LiveMusic_1080P-3f95_crf_10_ss_00_t_20.0,0.6282577365636826
522
+ LiveMusic_1080P-48d5_crf_10_ss_00_t_20.0,0.7522838115692139
523
+ LiveMusic_1080P-51f6_crf_10_ss_00_t_20.0,0.15186736918985844
524
+ LiveMusic_1080P-541f_crf_10_ss_00_t_20.0,0.5264223366975784
525
+ LiveMusic_1080P-59b3_crf_10_ss_00_t_20.0,0.263805222697556
526
+ LiveMusic_1080P-6b1c_crf_10_ss_00_t_20.0,0.38563770800828934
527
+ LiveMusic_1080P-6bbe_crf_10_ss_00_t_20.0,0.7151608765125275
528
+ LiveMusic_1080P-6d1a_crf_10_ss_00_t_20.0,-0.049774616956710815
529
+ LiveMusic_1080P-6fe2_crf_10_ss_00_t_20.0,-0.5759361684322357
530
+ LiveMusic_1080P-77e8_crf_10_ss_00_t_20.0,-0.6544326618313789
531
+ LiveMusic_1080P-7948_crf_10_ss_00_t_20.0,-0.7732360661029816
532
+ LiveMusic_1080P-7ead_crf_10_ss_00_t_20.0,0.10312250256538391
533
+ LiveMusic_360P-121f_crf_10_ss_00_t_20.0,-0.42958812415599823
534
+ LiveMusic_360P-1d94_crf_10_ss_00_t_20.0,-0.8666165098547935
535
+ LiveMusic_360P-22c5_crf_10_ss_00_t_20.0,-0.6281280964612961
536
+ LiveMusic_360P-2508_crf_10_ss_00_t_20.0,-0.6132555082440376
537
+ LiveMusic_360P-265c_crf_10_ss_00_t_20.0,-1.8006322011351585
538
+ LiveMusic_360P-2b0f_crf_10_ss_00_t_20.0,-0.7296238914132118
539
+ LiveMusic_360P-3979_crf_10_ss_00_t_20.0,-2.36758291721344
540
+ LiveMusic_360P-3b96_crf_10_ss_00_t_20.0,-1.7374035120010376
541
+ LiveMusic_360P-3be0_crf_10_ss_00_t_20.0,-2.1484394967556
542
+ LiveMusic_360P-48d5_crf_10_ss_00_t_20.0,-0.39019015431404114
543
+ LiveMusic_360P-5281_crf_10_ss_00_t_20.0,0.035959336906671524
544
+ LiveMusic_360P-54d0_crf_10_ss_00_t_20.0,-0.08322121482342482
545
+ LiveMusic_360P-5b57_crf_10_ss_00_t_20.0,-1.4704541265964508
546
+ LiveMusic_360P-6266_crf_10_ss_00_t_20.0,-0.48023097962141037
547
+ LiveMusic_360P-6640_crf_10_ss_00_t_20.0,-0.908680185675621
548
+ LiveMusic_360P-6a65_crf_10_ss_00_t_20.0,-1.9431713670492172
549
+ LiveMusic_360P-7483_crf_10_ss_00_t_20.0,-0.8700272664427757
550
+ LiveMusic_480P-0638_crf_10_ss_00_t_20.0,-1.153910830616951
551
+ LiveMusic_480P-1a91_crf_10_ss_00_t_20.0,-0.8096110597252846
552
+ LiveMusic_480P-2019_crf_10_ss_00_t_20.0,-0.2182141374796629
553
+ LiveMusic_480P-2a5e_crf_10_ss_00_t_20.0,-0.7890228927135468
554
+ LiveMusic_480P-34be_crf_10_ss_00_t_20.0,-0.04741198569536209
555
+ LiveMusic_480P-38f3_crf_10_ss_00_t_20.0,-1.0781337469816208
556
+ LiveMusic_480P-3d03_crf_10_ss_00_t_20.0,-1.3576314523816109
557
+ LiveMusic_480P-459c_crf_10_ss_00_t_20.0,-1.5073678493499756
558
+ LiveMusic_480P-474a_crf_10_ss_00_t_20.0,-3.2538311183452606
559
+ LiveMusic_480P-4c3a_crf_10_ss_00_t_20.0,-1.3214431554079056
560
+ LiveMusic_480P-4f88_crf_10_ss_00_t_20.0,-0.47317736595869064
561
+ LiveMusic_480P-559d_crf_10_ss_00_t_20.0,-0.008452857844531536
562
+ LiveMusic_480P-58fb_crf_10_ss_00_t_20.0,-0.41080934554338455
563
+ LiveMusic_480P-61ef_crf_10_ss_00_t_20.0,-0.8501946181058884
564
+ LiveMusic_480P-6542_crf_10_ss_00_t_20.0,-0.7562466636300087
565
+ LiveMusic_480P-65ca_crf_10_ss_00_t_20.0,-0.3871791511774063
566
+ LiveMusic_720P-0cd5_crf_10_ss_00_t_20.0,0.5519571676850319
567
+ LiveMusic_720P-0d9f_crf_10_ss_00_t_20.0,-0.3989601358771324
568
+ LiveMusic_720P-2620_crf_10_ss_00_t_20.0,-0.03784590633586049
569
+ LiveMusic_720P-267b_crf_10_ss_00_t_20.0,-0.1498674921458587
570
+ LiveMusic_720P-289b_crf_10_ss_00_t_20.0,-1.4338111877441406
571
+ LiveMusic_720P-3320_crf_10_ss_00_t_20.0,-0.5689249560236931
572
+ LiveMusic_720P-4ae2_crf_10_ss_00_t_20.0,-0.6133883893489838
573
+ LiveMusic_720P-58db_crf_10_ss_00_t_20.0,0.5304201543331146
574
+ LiveMusic_720P-6343_crf_10_ss_00_t_20.0,-0.5829141661524773
575
+ LiveMusic_720P-6452_crf_10_ss_00_t_20.0,-0.9967426657676697
576
+ LiveMusic_720P-653e_crf_10_ss_00_t_20.0,-0.8049516677856445
577
+ LiveMusic_720P-65f6_crf_10_ss_00_t_20.0,0.7744191847741604
578
+ LiveMusic_720P-66df_crf_10_ss_00_t_20.0,1.4924418479204178
579
+ LiveMusic_720P-71c5_crf_10_ss_00_t_20.0,-0.2767236530780792
580
+ LyricVideo_1080P-0075_crf_10_ss_00_t_20.0,-0.1534803225658834
581
+ LyricVideo_1080P-0625_crf_10_ss_00_t_20.0,0.8536436334252357
582
+ LyricVideo_1080P-16b6_crf_10_ss_00_t_20.0,1.0720835290849209
583
+ LyricVideo_1080P-1b04_crf_10_ss_00_t_20.0,0.27103719860315323
584
+ LyricVideo_1080P-1d75_crf_10_ss_00_t_20.0,1.190432608127594
585
+ LyricVideo_1080P-28e8_crf_10_ss_00_t_20.0,-1.3447384759783745
586
+ LyricVideo_1080P-2946_crf_10_ss_00_t_20.0,0.8604949042201042
587
+ LyricVideo_1080P-3803_crf_10_ss_00_t_20.0,0.28200705721974373
588
+ LyricVideo_1080P-41ee_crf_10_ss_00_t_20.0,0.6853243485093117
589
+ LyricVideo_1080P-4b40_crf_10_ss_00_t_20.0,-0.7036042278632522
590
+ LyricVideo_1080P-5461_crf_10_ss_00_t_20.0,0.4067171514034271
591
+ LyricVideo_1080P-584f_crf_10_ss_00_t_20.0,-0.20408155769109726
592
+ LyricVideo_1080P-63d4_crf_10_ss_00_t_20.0,0.795620359480381
593
+ LyricVideo_1080P-63d9_crf_10_ss_00_t_20.0,0.34362858906388283
594
+ LyricVideo_1080P-725e_crf_10_ss_00_t_20.0,1.2181334123015404
595
+ LyricVideo_1080P-756a_crf_10_ss_00_t_20.0,0.7418395839631557
596
+ LyricVideo_360P-0ac7_crf_10_ss_00_t_20.0,-1.489066794514656
597
+ LyricVideo_360P-17ce_crf_10_ss_00_t_20.0,-1.3335094898939133
598
+ LyricVideo_360P-3afc_crf_10_ss_00_t_20.0,-1.3647436276078224
599
+ LyricVideo_360P-5868_crf_10_ss_00_t_20.0,-0.8773078992962837
600
+ LyricVideo_360P-5e87_crf_10_ss_00_t_20.0,-0.9612333104014397
601
+ LyricVideo_480P-0a5b_crf_10_ss_00_t_20.0,0.4342881590127945
602
+ LyricVideo_480P-0f72_crf_10_ss_00_t_20.0,-1.7479898557066917
603
+ LyricVideo_480P-1484_crf_10_ss_00_t_20.0,-0.5490170270204544
604
+ LyricVideo_480P-200a_crf_10_ss_00_t_20.0,-0.48460153862833977
605
+ LyricVideo_480P-2c50_crf_10_ss_00_t_20.0,-0.8486486971378326
606
+ LyricVideo_480P-3b2c_crf_10_ss_00_t_20.0,-0.2674684599041939
607
+ LyricVideo_480P-3ccf_crf_10_ss_00_t_20.0,-1.3097964599728584
608
+ LyricVideo_480P-4346_crf_10_ss_00_t_20.0,-0.8316655829548836
609
+ LyricVideo_480P-51e4_crf_10_ss_00_t_20.0,-0.3874754309654236
610
+ LyricVideo_480P-5c17_crf_10_ss_00_t_20.0,-0.28856314718723297
611
+ LyricVideo_480P-6fca_crf_10_ss_00_t_20.0,-1.7112629562616348
612
+ LyricVideo_480P-7919_crf_10_ss_00_t_20.0,-1.317454494535923
613
+ LyricVideo_720P-068d_crf_10_ss_00_t_20.0,0.3308882787823677
614
+ LyricVideo_720P-081c_crf_10_ss_00_t_20.0,0.1829620860517025
615
+ LyricVideo_720P-0940_crf_10_ss_00_t_20.0,-0.7605752348899841
616
+ LyricVideo_720P-09ed_crf_10_ss_00_t_20.0,-0.5549763590097427
617
+ LyricVideo_720P-0ae4_crf_10_ss_00_t_20.0,0.12649324350059032
618
+ LyricVideo_720P-1c89_crf_10_ss_00_t_20.0,0.4616369567811489
619
+ LyricVideo_720P-2d24_crf_10_ss_00_t_20.0,0.7915206588804722
620
+ LyricVideo_720P-36fb_crf_10_ss_00_t_20.0,0.3437223434448242
621
+ LyricVideo_720P-4253_crf_10_ss_00_t_20.0,0.5580325238406658
622
+ LyricVideo_720P-47a9_crf_10_ss_00_t_20.0,-1.1269725412130356
623
+ LyricVideo_720P-59ed_crf_10_ss_00_t_20.0,1.1478073447942734
624
+ LyricVideo_720P-5d3a_crf_10_ss_00_t_20.0,0.6610499210655689
625
+ LyricVideo_720P-6f0c_crf_10_ss_00_t_20.0,-1.0802934393286705
626
+ LyricVideo_720P-6fc9_crf_10_ss_00_t_20.0,-1.5581976100802422
627
+ LyricVideo_720P-7003_crf_10_ss_00_t_20.0,0.3097682073712349
628
+ LyricVideo_720P-739a_crf_10_ss_00_t_20.0,-1.2638640850782394
629
+ LyricVideo_720P-74a0_crf_10_ss_00_t_20.0,0.4478106554597616
630
+ LyricVideo_720P-7f44_crf_10_ss_00_t_20.0,0.942178126424551
631
+ MusicVideo_1080P-04b6_crf_10_ss_00_t_20.0,0.7302308455109596
632
+ MusicVideo_1080P-0706_crf_10_ss_00_t_20.0,0.37386976182460785
633
+ MusicVideo_1080P-0860_crf_10_ss_00_t_20.0,0.6328187510371208
634
+ MusicVideo_1080P-106d_crf_10_ss_00_t_20.0,-0.7804007977247238
635
+ MusicVideo_1080P-16e6_crf_10_ss_00_t_20.0,1.147653017193079
636
+ MusicVideo_1080P-18f5_crf_10_ss_00_t_20.0,0.07466412335634232
637
+ MusicVideo_1080P-1a53_crf_10_ss_00_t_20.0,-0.761281281709671
638
+ MusicVideo_1080P-24f5_crf_10_ss_00_t_20.0,1.2690449953079224
639
+ MusicVideo_1080P-2b2b_crf_10_ss_00_t_20.0,1.1070458889007568
640
+ MusicVideo_1080P-2d1c_crf_10_ss_00_t_20.0,0.13282249495387077
641
+ MusicVideo_1080P-34ff_crf_10_ss_00_t_20.0,-0.24213957786560059
642
+ MusicVideo_1080P-3a50_crf_10_ss_00_t_20.0,-0.09638375043869019
643
+ MusicVideo_1080P-453f_crf_10_ss_00_t_20.0,0.9098257832229137
644
+ MusicVideo_1080P-4671_crf_10_ss_00_t_20.0,-1.152393952012062
645
+ MusicVideo_1080P-4b61_crf_10_ss_00_t_20.0,0.45281801372766495
646
+ MusicVideo_1080P-5072_crf_10_ss_00_t_20.0,0.9413099810481071
647
+ MusicVideo_1080P-55af_crf_10_ss_00_t_20.0,-0.04845810600090772
648
+ MusicVideo_1080P-59c4_crf_10_ss_00_t_20.0,0.3421381451189518
649
+ MusicVideo_1080P-6260_crf_10_ss_00_t_20.0,-1.004130370914936
650
+ MusicVideo_1080P-65c6_crf_10_ss_00_t_20.0,0.7159844413399696
651
+ MusicVideo_1080P-6c1d_crf_10_ss_00_t_20.0,1.018745955079794
652
+ MusicVideo_1080P-6c88_crf_10_ss_00_t_20.0,-0.4692113399505615
653
+ MusicVideo_1080P-6fb1_crf_10_ss_00_t_20.0,0.7149997018277645
654
+ MusicVideo_1080P-7265_crf_10_ss_00_t_20.0,0.03569155838340521
655
+ MusicVideo_1080P-7706_crf_10_ss_00_t_20.0,-0.9748548865318298
656
+ MusicVideo_1080P-7f2e_crf_10_ss_00_t_20.0,0.11321335285902023
657
+ MusicVideo_360P-08cb_crf_10_ss_00_t_20.0,-0.709456279873848
658
+ MusicVideo_360P-17e4_crf_10_ss_00_t_20.0,-0.7441136091947556
659
+ MusicVideo_360P-24b0_crf_10_ss_00_t_20.0,0.07625924050807953
660
+ MusicVideo_360P-2fcb_crf_10_ss_00_t_20.0,0.17212141677737236
661
+ MusicVideo_360P-462f_crf_10_ss_00_t_20.0,-0.20145893096923828
662
+ MusicVideo_360P-4de7_crf_10_ss_00_t_20.0,-1.1046922132372856
663
+ MusicVideo_360P-5358_crf_10_ss_00_t_20.0,-0.6791031956672668
664
+ MusicVideo_360P-5578_crf_10_ss_00_t_20.0,-0.8549720868468285
665
+ MusicVideo_360P-5699_crf_10_ss_00_t_20.0,0.5899604260921478
666
+ MusicVideo_360P-5f07_crf_10_ss_00_t_20.0,-1.0757328793406487
667
+ MusicVideo_360P-5f8d_crf_10_ss_00_t_20.0,-1.761192262172699
668
+ MusicVideo_360P-648c_crf_10_ss_00_t_20.0,-0.529523603618145
669
+ MusicVideo_360P-7b94_crf_10_ss_00_t_20.0,-1.740983635187149
670
+ MusicVideo_480P-0448_crf_10_ss_00_t_20.0,-0.3568977415561676
671
+ MusicVideo_480P-12fb_crf_10_ss_00_t_20.0,-0.9010093808174133
672
+ MusicVideo_480P-184c_crf_10_ss_00_t_20.0,0.46766476333141327
673
+ MusicVideo_480P-1eee_crf_10_ss_00_t_20.0,-0.8425989225506783
674
+ MusicVideo_480P-2de0_crf_10_ss_00_t_20.0,-0.39183369278907776
675
+ MusicVideo_480P-3aa2_crf_10_ss_00_t_20.0,-1.465181179344654
676
+ MusicVideo_480P-3c8b_crf_10_ss_00_t_20.0,-1.2527937442064285
677
+ MusicVideo_480P-41ce_crf_10_ss_00_t_20.0,0.26639677584171295
678
+ MusicVideo_480P-483b_crf_10_ss_00_t_20.0,-2.9139350056648254
679
+ MusicVideo_480P-4cc8_crf_10_ss_00_t_20.0,-0.2962429318577051
680
+ MusicVideo_480P-5461_crf_10_ss_00_t_20.0,0.5866503939032555
681
+ MusicVideo_480P-5830_crf_10_ss_00_t_20.0,-0.8916385099291801
682
+ MusicVideo_480P-6026_crf_10_ss_00_t_20.0,-1.0203119590878487
683
+ MusicVideo_480P-61ba_crf_10_ss_00_t_20.0,-2.7363214045763016
684
+ MusicVideo_480P-66b2_crf_10_ss_00_t_20.0,-0.7116095945239067
685
+ MusicVideo_480P-6fb6_crf_10_ss_00_t_20.0,0.3209804743528366
686
+ MusicVideo_480P-7643_crf_10_ss_00_t_20.0,-0.9296636283397675
687
+ MusicVideo_480P-7955_crf_10_ss_00_t_20.0,-0.52434391528368
688
+ MusicVideo_720P-0355_crf_10_ss_00_t_20.0,-1.958245426416397
689
+ MusicVideo_720P-0752_crf_10_ss_00_t_20.0,0.8967510387301445
690
+ MusicVideo_720P-14f0_crf_10_ss_00_t_20.0,-1.1784318462014198
691
+ MusicVideo_720P-2d7d_crf_10_ss_00_t_20.0,-0.9725506827235222
692
+ MusicVideo_720P-3698_crf_10_ss_00_t_20.0,0.9629989489912987
693
+ MusicVideo_720P-3b11_crf_10_ss_00_t_20.0,-0.1717455517500639
694
+ MusicVideo_720P-3c4c_crf_10_ss_00_t_20.0,0.9985754080116749
695
+ MusicVideo_720P-44c1_crf_10_ss_00_t_20.0,0.9242939203977585
696
+ MusicVideo_720P-4895_crf_10_ss_00_t_20.0,0.2534235268831253
697
+ MusicVideo_720P-4ad2_crf_10_ss_00_t_20.0,0.5969285145401955
698
+ MusicVideo_720P-575d_crf_10_ss_00_t_20.0,-1.3881913796067238
699
+ MusicVideo_720P-5c9c_crf_10_ss_00_t_20.0,-1.5723391771316528
700
+ MusicVideo_720P-62df_crf_10_ss_00_t_20.0,0.8246041685342789
701
+ MusicVideo_720P-734f_crf_10_ss_00_t_20.0,0.5299866944551468
702
+ MusicVideo_720P-7501_crf_10_ss_00_t_20.0,-1.2340690344572067
703
+ MusicVideo_720P-7bcf_crf_10_ss_00_t_20.0,-0.1608947291970253
704
+ NewsClip_1080P-00c3_crf_10_ss_00_t_20.0,0.9510554037988186
705
+ NewsClip_1080P-02fd_crf_10_ss_00_t_20.0,0.8397697247564793
706
+ NewsClip_1080P-06df_crf_10_ss_00_t_20.0,1.0229084268212318
707
+ NewsClip_1080P-0abf_crf_10_ss_00_t_20.0,-0.040960260201245546
708
+ NewsClip_1080P-1db0_crf_10_ss_00_t_20.0,0.9162601828575134
709
+ NewsClip_1080P-22b3_crf_10_ss_00_t_20.0,0.2787091759964824
710
+ NewsClip_1080P-27fb_crf_10_ss_00_t_20.0,0.7834189832210541
711
+ NewsClip_1080P-2eb0_crf_10_ss_00_t_20.0,1.3549840934574604
712
+ NewsClip_1080P-3427_crf_10_ss_00_t_20.0,1.0580580234527588
713
+ NewsClip_1080P-3c7c_crf_10_ss_00_t_20.0,1.0951073355972767
714
+ NewsClip_1080P-4241_crf_10_ss_00_t_20.0,0.42471253499388695
715
+ NewsClip_1080P-48ae_crf_10_ss_00_t_20.0,-0.10732272267341614
716
+ NewsClip_1080P-5b53_crf_10_ss_00_t_20.0,1.343613751232624
717
+ NewsClip_1080P-5be1_crf_10_ss_00_t_20.0,0.7289056479930878
718
+ NewsClip_1080P-632e_crf_10_ss_00_t_20.0,-0.23213721066713333
719
+ NewsClip_1080P-67dc_crf_10_ss_00_t_20.0,0.6181982904672623
720
+ NewsClip_1080P-7816_crf_10_ss_00_t_20.0,-0.34979579225182533
721
+ NewsClip_360P-0376_crf_10_ss_00_t_20.0,-0.7723498642444611
722
+ NewsClip_360P-0c17_crf_10_ss_00_t_20.0,-0.7941032201051712
723
+ NewsClip_360P-0ff8_crf_10_ss_00_t_20.0,-0.14302601909730583
724
+ NewsClip_360P-1093_crf_10_ss_00_t_20.0,-0.7311294823884964
725
+ NewsClip_360P-12fc_crf_10_ss_00_t_20.0,-1.0130476653575897
726
+ NewsClip_360P-1b1c_crf_10_ss_00_t_20.0,-0.26471155881881714
727
+ NewsClip_360P-1e1c_crf_10_ss_00_t_20.0,-0.5447554588317871
728
+ NewsClip_360P-1eae_crf_10_ss_00_t_20.0,-0.26999473944306374
729
+ NewsClip_360P-22ce_crf_10_ss_00_t_20.0,-1.1568846926093102
730
+ NewsClip_360P-274e_crf_10_ss_00_t_20.0,-0.4922705590724945
731
+ NewsClip_360P-2986_crf_10_ss_00_t_20.0,-1.1983573138713837
732
+ NewsClip_360P-2c91_crf_10_ss_00_t_20.0,-1.2893040180206299
733
+ NewsClip_360P-311a_crf_10_ss_00_t_20.0,-1.836382232606411
734
+ NewsClip_360P-3451_crf_10_ss_00_t_20.0,-1.8897303119301796
735
+ NewsClip_360P-4288_crf_10_ss_00_t_20.0,0.011489219963550568
736
+ NewsClip_360P-439a_crf_10_ss_00_t_20.0,-0.5983259379863739
737
+ NewsClip_360P-4417_crf_10_ss_00_t_20.0,-1.290979616343975
738
+ NewsClip_360P-5052_crf_10_ss_00_t_20.0,-1.7050643488764763
739
+ NewsClip_360P-5752_crf_10_ss_00_t_20.0,-0.5712444707751274
740
+ NewsClip_360P-5bcc_crf_10_ss_00_t_20.0,-1.1052521169185638
741
+ NewsClip_360P-5f3b_crf_10_ss_00_t_20.0,-1.586706668138504
742
+ NewsClip_360P-66ae_crf_10_ss_00_t_20.0,-0.7612914443016052
743
+ NewsClip_360P-67ce_crf_10_ss_00_t_20.0,-0.9965668693184853
744
+ NewsClip_360P-7a96_crf_10_ss_00_t_20.0,-1.7382624372839928
745
+ NewsClip_480P-0269_crf_10_ss_00_t_20.0,-0.8607793599367142
746
+ NewsClip_480P-0ce5_crf_10_ss_00_t_20.0,-0.6518765315413475
747
+ NewsClip_480P-15fa_crf_10_ss_00_t_20.0,0.2337909631896764
748
+ NewsClip_480P-2407_crf_10_ss_00_t_20.0,-1.6176696121692657
749
+ NewsClip_480P-2642_crf_10_ss_00_t_20.0,-1.4092503860592842
750
+ NewsClip_480P-28eb_crf_10_ss_00_t_20.0,-1.143004059791565
751
+ NewsClip_480P-2b9b_crf_10_ss_00_t_20.0,-1.5800711587071419
752
+ NewsClip_480P-2ba7_crf_10_ss_00_t_20.0,-1.3276117593050003
753
+ NewsClip_480P-31bd_crf_10_ss_00_t_20.0,0.3868512511253357
754
+ NewsClip_480P-3672_crf_10_ss_00_t_20.0,-0.001459907740354538
755
+ NewsClip_480P-36d0_crf_10_ss_00_t_20.0,0.161687470972538
756
+ NewsClip_480P-4072_crf_10_ss_00_t_20.0,-1.5201937705278397
757
+ NewsClip_480P-41b1_crf_10_ss_00_t_20.0,-0.4388330578804016
758
+ NewsClip_480P-437c_crf_10_ss_00_t_20.0,-0.9091809615492821
759
+ NewsClip_480P-49c9_crf_10_ss_00_t_20.0,0.37106430530548096
760
+ NewsClip_480P-4a9f_crf_10_ss_00_t_20.0,-1.1039309948682785
761
+ NewsClip_480P-4e77_crf_10_ss_00_t_20.0,-0.661637082695961
762
+ NewsClip_480P-543f_crf_10_ss_00_t_20.0,-0.5580216571688652
763
+ NewsClip_480P-5a3b_crf_10_ss_00_t_20.0,-1.630962610244751
764
+ NewsClip_480P-5e7f_crf_10_ss_00_t_20.0,-0.44643400609493256
765
+ NewsClip_480P-606e_crf_10_ss_00_t_20.0,-1.1425495594739914
766
+ NewsClip_480P-6615_crf_10_ss_00_t_20.0,-0.06869305670261383
767
+ NewsClip_480P-696e_crf_10_ss_00_t_20.0,-0.6123877689242363
768
+ NewsClip_480P-6bfa_crf_10_ss_00_t_20.0,0.3062327913939953
769
+ NewsClip_480P-7232_crf_10_ss_00_t_20.0,-0.9348713532090187
770
+ NewsClip_480P-72b8_crf_10_ss_00_t_20.0,0.011089019477367401
771
+ NewsClip_480P-7a0d_crf_10_ss_00_t_20.0,0.30732377618551254
772
+ NewsClip_720P-04ba_crf_10_ss_00_t_20.0,-0.5883279368281364
773
+ NewsClip_720P-0c81_crf_10_ss_00_t_20.0,0.15993385761976242
774
+ NewsClip_720P-1971_crf_10_ss_00_t_20.0,0.8352426439523697
775
+ NewsClip_720P-2182_crf_10_ss_00_t_20.0,0.14525491744279861
776
+ NewsClip_720P-23e0_crf_10_ss_00_t_20.0,1.0234483480453491
777
+ NewsClip_720P-2882_crf_10_ss_00_t_20.0,0.07630684599280357
778
+ NewsClip_720P-35d9_crf_10_ss_00_t_20.0,-1.2905043363571167
779
+ NewsClip_720P-37f7_crf_10_ss_00_t_20.0,0.4569570943713188
780
+ NewsClip_720P-4603_crf_10_ss_00_t_20.0,-0.4131438732147217
781
+ NewsClip_720P-4e87_crf_10_ss_00_t_20.0,0.9921214692294598
782
+ NewsClip_720P-5564_crf_10_ss_00_t_20.0,1.0908118709921837
783
+ NewsClip_720P-5787_crf_10_ss_00_t_20.0,0.9771862104535103
784
+ NewsClip_720P-579b_crf_10_ss_00_t_20.0,-0.8329774811863899
785
+ NewsClip_720P-5d89_crf_10_ss_00_t_20.0,1.023989848792553
786
+ NewsClip_720P-6016_crf_10_ss_00_t_20.0,1.1631636954843998
787
+ NewsClip_720P-6106_crf_10_ss_00_t_20.0,-0.5353049784898758
788
+ NewsClip_720P-672c_crf_10_ss_00_t_20.0,0.5341237112879753
789
+ NewsClip_720P-6a19_crf_10_ss_00_t_20.0,-0.07856418658047915
790
+ NewsClip_720P-6cde_crf_10_ss_00_t_20.0,1.2067940663546324
791
+ NewsClip_720P-72d2_crf_10_ss_00_t_20.0,1.0521771013736725
792
+ NewsClip_720P-739b_crf_10_ss_00_t_20.0,0.6496773213148117
793
+ NewsClip_720P-7745_crf_10_ss_00_t_20.0,1.4672898463904858
794
+ NewsClip_720P-7b7e_crf_10_ss_00_t_20.0,0.9594643674790859
795
+ NewsClip_720P-7b97_crf_10_ss_00_t_20.0,-0.8237345963716507
796
+ NewsClip_720P-7c67_crf_10_ss_00_t_20.0,1.0166527777910233
797
+ NewsClip_720P-7e56_crf_10_ss_00_t_20.0,1.206794012337923
798
+ Sports_1080P-0063_crf_10_ss_00_t_20.0,-0.37805555388331413
799
+ Sports_1080P-0640_crf_10_ss_00_t_20.0,-0.6447009965777397
800
+ Sports_1080P-08e1_crf_10_ss_00_t_20.0,1.0652666129171848
801
+ Sports_1080P-0d0c_crf_10_ss_00_t_20.0,0.46694087237119675
802
+ Sports_1080P-15d1_crf_10_ss_00_t_20.0,1.2346400953829288
803
+ Sports_1080P-19d8_crf_10_ss_00_t_20.0,1.1045787520706654
804
+ Sports_1080P-1ae3_crf_10_ss_00_t_20.0,-0.2261139154434204
805
+ Sports_1080P-1bf7_crf_10_ss_00_t_20.0,0.8301081396639347
806
+ Sports_1080P-1d78_crf_10_ss_00_t_20.0,-0.4522867426276207
807
+ Sports_1080P-241e_crf_10_ss_00_t_20.0,1.0415547750890255
808
+ Sports_1080P-2524_crf_10_ss_00_t_20.0,-0.05768490210175514
809
+ Sports_1080P-28a6_crf_10_ss_00_t_20.0,1.1995676830410957
810
+ Sports_1080P-2a21_crf_10_ss_00_t_20.0,-0.6407336220145226
811
+ Sports_1080P-3a3b_crf_10_ss_00_t_20.0,-0.6414595991373062
812
+ Sports_1080P-3db7_crf_10_ss_00_t_20.0,0.3328470513224602
813
+ Sports_1080P-3eb0_crf_10_ss_00_t_20.0,-0.10176584869623184
814
+ Sports_1080P-43e2_crf_10_ss_00_t_20.0,1.148033481091261
815
+ Sports_1080P-46ed_crf_10_ss_00_t_20.0,-0.12713071703910828
816
+ Sports_1080P-47e9_crf_10_ss_00_t_20.0,0.9843782223761082
817
+ Sports_1080P-4978_crf_10_ss_00_t_20.0,0.6079418510198593
818
+ Sports_1080P-49c5_crf_10_ss_00_t_20.0,0.632813461124897
819
+ Sports_1080P-4e05_crf_10_ss_00_t_20.0,-0.8624535724520683
820
+ Sports_1080P-53a0_crf_10_ss_00_t_20.0,-0.11218847334384918
821
+ Sports_1080P-5d25_crf_10_ss_00_t_20.0,-0.28410645946860313
822
+ Sports_1080P-6571_crf_10_ss_00_t_20.0,0.26729678362607956
823
+ Sports_1080P-6710_crf_10_ss_00_t_20.0,0.9792231060564518
824
+ Sports_1080P-679d_crf_10_ss_00_t_20.0,1.0179547630250454
825
+ Sports_1080P-7203_crf_10_ss_00_t_20.0,0.484094001352787
826
+ Sports_1080P-7584_crf_10_ss_00_t_20.0,0.002017717808485031
827
+ Sports_1080P-76a2_crf_10_ss_00_t_20.0,0.3668956607580185
828
+ Sports_1080P-7dba_crf_10_ss_00_t_20.0,0.19406214356422424
829
+ Sports_2160P-0455_crf_10_ss_00_t_20.0,1.1077857203781605
830
+ Sports_2160P-086d_crf_10_ss_00_t_20.0,1.1479881443083286
831
+ Sports_2160P-1261_crf_10_ss_00_t_20.0,0.988589059561491
832
+ Sports_2160P-1733_crf_10_ss_00_t_20.0,0.8330849930644035
833
+ Sports_2160P-1b70_crf_10_ss_00_t_20.0,0.8222754746675491
834
+ Sports_2160P-1ddc_crf_10_ss_00_t_20.0,-0.41124366968870163
835
+ Sports_2160P-210c_crf_10_ss_00_t_20.0,1.122060388326645
836
+ Sports_2160P-2568_crf_10_ss_00_t_20.0,0.6453318484127522
837
+ Sports_2160P-2626_crf_10_ss_00_t_20.0,1.1047042682766914
838
+ Sports_2160P-279f_crf_10_ss_00_t_20.0,1.370752725750208
839
+ Sports_2160P-2a83_crf_10_ss_00_t_20.0,0.7369833029806614
840
+ Sports_2160P-2e1d_crf_10_ss_00_t_20.0,1.1717248000204563
841
+ Sports_2160P-2eda_crf_10_ss_00_t_20.0,0.9726674668490887
842
+ Sports_2160P-300d_crf_10_ss_00_t_20.0,-0.4812583215534687
843
+ Sports_2160P-324e_crf_10_ss_00_t_20.0,0.9921336881816387
844
+ Sports_2160P-349c_crf_10_ss_00_t_20.0,0.8704547807574272
845
+ Sports_2160P-3794_crf_10_ss_00_t_20.0,-1.0521561801433563
846
+ Sports_2160P-391a_crf_10_ss_00_t_20.0,1.0004974864423275
847
+ Sports_2160P-3a9a_crf_10_ss_00_t_20.0,0.23659268021583557
848
+ Sports_2160P-3d85_crf_10_ss_00_t_20.0,1.1159430295228958
849
+ Sports_2160P-4024_crf_10_ss_00_t_20.0,0.21321304515004158
850
+ Sports_2160P-4201_crf_10_ss_00_t_20.0,0.35889342799782753
851
+ Sports_2160P-49f1_crf_10_ss_00_t_20.0,0.8629654161632061
852
+ Sports_2160P-4aae_crf_10_ss_00_t_20.0,1.0474127233028412
853
+ Sports_2160P-4e9f_crf_10_ss_00_t_20.0,1.1813606284558773
854
+ Sports_2160P-5ef3_crf_10_ss_00_t_20.0,0.9991762824356556
855
+ Sports_2160P-69b9_crf_10_ss_00_t_20.0,1.4288601651787758
856
+ Sports_2160P-6b28_crf_10_ss_00_t_20.0,0.729597445577383
857
+ Sports_2160P-7165_crf_10_ss_00_t_20.0,1.0458165109157562
858
+ Sports_2160P-7a11_crf_10_ss_00_t_20.0,0.9539642594754696
859
+ Sports_2160P-7af7_crf_10_ss_00_t_20.0,0.20276128500699997
860
+ Sports_2160P-7af8_crf_10_ss_00_t_20.0,-0.14654763787984848
861
+ Sports_2160P-7bbe_crf_10_ss_00_t_20.0,1.3466823194175959
862
+ Sports_360P-02c3_crf_10_ss_00_t_20.0,-0.3641642779111862
863
+ Sports_360P-0c66_crf_10_ss_00_t_20.0,-0.6363267004489899
864
+ Sports_360P-0dda_crf_10_ss_00_t_20.0,-1.2837004587054253
865
+ Sports_360P-11b7_crf_10_ss_00_t_20.0,-1.7033312395215034
866
+ Sports_360P-1803_crf_10_ss_00_t_20.0,-0.21182815730571747
867
+ Sports_360P-1d5c_crf_10_ss_00_t_20.0,0.5287942215800285
868
+ Sports_360P-2725_crf_10_ss_00_t_20.0,-1.0358119532465935
869
+ Sports_360P-27b0_crf_10_ss_00_t_20.0,-0.8744788467884064
870
+ Sports_360P-2ace_crf_10_ss_00_t_20.0,-0.602084644138813
871
+ Sports_360P-2e48_crf_10_ss_00_t_20.0,-1.559495896100998
872
+ Sports_360P-301d_crf_10_ss_00_t_20.0,0.020257040858268738
873
+ Sports_360P-32d3_crf_10_ss_00_t_20.0,-0.9703470915555954
874
+ Sports_360P-3960_crf_10_ss_00_t_20.0,-1.0409247651696205
875
+ Sports_360P-3e68_crf_10_ss_00_t_20.0,-1.3164244666695595
876
+ Sports_360P-4545_crf_10_ss_00_t_20.0,-2.138665482401848
877
+ Sports_360P-4802_crf_10_ss_00_t_20.0,-1.7799394726753235
878
+ Sports_360P-4ad7_crf_10_ss_00_t_20.0,-1.9659322947263718
879
+ Sports_360P-50fd_crf_10_ss_00_t_20.0,-1.3883861601352692
880
+ Sports_360P-5252_crf_10_ss_00_t_20.0,-1.6679904162883759
881
+ Sports_360P-5ded_crf_10_ss_00_t_20.0,0.25390008836984634
882
+ Sports_360P-61f6_crf_10_ss_00_t_20.0,-0.3884374350309372
883
+ Sports_360P-65f3_crf_10_ss_00_t_20.0,-1.365841582417488
884
+ Sports_360P-6b4f_crf_10_ss_00_t_20.0,-0.47750163450837135
885
+ Sports_360P-6c6f_crf_10_ss_00_t_20.0,-1.595236249268055
886
+ Sports_360P-6f62_crf_10_ss_00_t_20.0,0.06656057434156537
887
+ Sports_360P-7f50_crf_10_ss_00_t_20.0,-2.3703832626342773
888
+ Sports_480P-0623_crf_10_ss_00_t_20.0,-0.645720548927784
889
+ Sports_480P-0827_crf_10_ss_00_t_20.0,-1.136629804968834
890
+ Sports_480P-0af9_crf_10_ss_00_t_20.0,0.2429246660321951
891
+ Sports_480P-0bb9_crf_10_ss_00_t_20.0,0.14095951616764069
892
+ Sports_480P-0efe_crf_10_ss_00_t_20.0,0.06294580549001694
893
+ Sports_480P-1019_crf_10_ss_00_t_20.0,-0.7286860048770905
894
+ Sports_480P-1056_crf_10_ss_00_t_20.0,-0.8505633175373077
895
+ Sports_480P-11ec_crf_10_ss_00_t_20.0,-2.627003401517868
896
+ Sports_480P-1396_crf_10_ss_00_t_20.0,-0.4682582840323448
897
+ Sports_480P-19e4_crf_10_ss_00_t_20.0,0.3610662519931793
898
+ Sports_480P-1d1b_crf_10_ss_00_t_20.0,-1.9265128374099731
899
+ Sports_480P-1fe9_crf_10_ss_00_t_20.0,-1.9414620250463486
900
+ Sports_480P-2053_crf_10_ss_00_t_20.0,-0.22942990576848388
901
+ Sports_480P-211f_crf_10_ss_00_t_20.0,-1.1601581051945686
902
+ Sports_480P-2dfe_crf_10_ss_00_t_20.0,-2.011069357395172
903
+ Sports_480P-3195_crf_10_ss_00_t_20.0,-0.022735878825187683
904
+ Sports_480P-3404_crf_10_ss_00_t_20.0,-0.059534285217523575
905
+ Sports_480P-35ea_crf_10_ss_00_t_20.0,-0.00959671288728714
906
+ Sports_480P-3ca4_crf_10_ss_00_t_20.0,-1.9395005777478218
907
+ Sports_480P-3dfd_crf_10_ss_00_t_20.0,0.12778693065047264
908
+ Sports_480P-3f50_crf_10_ss_00_t_20.0,0.8639464154839516
909
+ Sports_480P-41a5_crf_10_ss_00_t_20.0,-2.0604008212685585
910
+ Sports_480P-44e5_crf_10_ss_00_t_20.0,-0.7871088758111
911
+ Sports_480P-4cf8_crf_10_ss_00_t_20.0,-1.9655802696943283
912
+ Sports_480P-5224_crf_10_ss_00_t_20.0,-1.1573493853211403
913
+ Sports_480P-5871_crf_10_ss_00_t_20.0,-1.4214420095086098
914
+ Sports_480P-5f38_crf_10_ss_00_t_20.0,0.3679218962788582
915
+ Sports_480P-6508_crf_10_ss_00_t_20.0,-0.7140662744641304
916
+ Sports_480P-6e41_crf_10_ss_00_t_20.0,-0.17993995361030102
917
+ Sports_480P-77e3_crf_10_ss_00_t_20.0,-0.8311331197619438
918
+ Sports_480P-7f7e_crf_10_ss_00_t_20.0,-2.2498319521546364
919
+ Sports_720P-00a1_crf_10_ss_00_t_20.0,0.8549872264266014
920
+ Sports_720P-0104_crf_10_ss_00_t_20.0,0.9757261835038662
921
+ Sports_720P-058f_crf_10_ss_00_t_20.0,1.0906953439116478
922
+ Sports_720P-07d0_crf_10_ss_00_t_20.0,0.31477653980255127
923
+ Sports_720P-0b9e_crf_10_ss_00_t_20.0,0.768921721726656
924
+ Sports_720P-17fb_crf_10_ss_00_t_20.0,0.035895205655833706
925
+ Sports_720P-2191_crf_10_ss_00_t_20.0,0.17656546086072922
926
+ Sports_720P-2234_crf_10_ss_00_t_20.0,0.7821626663208008
927
+ Sports_720P-2632_crf_10_ss_00_t_20.0,0.34629306197166443
928
+ Sports_720P-2c06_crf_10_ss_00_t_20.0,0.015150323510169983
929
+ Sports_720P-2c80_crf_10_ss_00_t_20.0,-1.009047657251358
930
+ Sports_720P-3072_crf_10_ss_00_t_20.0,-0.3896774351596832
931
+ Sports_720P-3338_crf_10_ss_00_t_20.0,1.1249792017042637
932
+ Sports_720P-33c6_crf_10_ss_00_t_20.0,-1.0395664125680923
933
+ Sports_720P-38a1_crf_10_ss_00_t_20.0,-0.7789375856518745
934
+ Sports_720P-3eb4_crf_10_ss_00_t_20.0,0.4538208805024624
935
+ Sports_720P-3ffe_crf_10_ss_00_t_20.0,-1.0273353829979897
936
+ Sports_720P-4b69_crf_10_ss_00_t_20.0,0.5216927640140057
937
+ Sports_720P-4c6f_crf_10_ss_00_t_20.0,0.6214117705821991
938
+ Sports_720P-50cf_crf_10_ss_00_t_20.0,-0.3641537525691092
939
+ Sports_720P-531c_crf_10_ss_00_t_20.0,1.2639527395367622
940
+ Sports_720P-5833_crf_10_ss_00_t_20.0,-0.45963960140943527
941
+ Sports_720P-5ae1_crf_10_ss_00_t_20.0,0.8872026540338993
942
+ Sports_720P-5bfd_crf_10_ss_00_t_20.0,1.3044060841202736
943
+ Sports_720P-5e39_crf_10_ss_00_t_20.0,0.09315637848339975
944
+ Sports_720P-5ea4_crf_10_ss_00_t_20.0,1.0427169166505337
945
+ Sports_720P-62ba_crf_10_ss_00_t_20.0,-0.8451647460460663
946
+ Sports_720P-675b_crf_10_ss_00_t_20.0,-0.2754698395729065
947
+ Sports_720P-69a0_crf_10_ss_00_t_20.0,0.7911968156695366
948
+ Sports_720P-6bb7_crf_10_ss_00_t_20.0,0.04951825737953186
949
+ Sports_720P-6d04_crf_10_ss_00_t_20.0,0.30503876507282257
950
+ Sports_720P-7ba7_crf_10_ss_00_t_20.0,-0.3088951092213392
951
+ TelevisionClip_1080P-0604_crf_10_ss_00_t_20.0,0.27300872653722763
952
+ TelevisionClip_1080P-3758_crf_10_ss_00_t_20.0,1.0130799897015095
953
+ TelevisionClip_1080P-39e3_crf_10_ss_00_t_20.0,1.3289230950176716
954
+ TelevisionClip_1080P-3b9b_crf_10_ss_00_t_20.0,1.0194909051060677
955
+ TelevisionClip_1080P-3d10_crf_10_ss_00_t_20.0,0.5096123218536377
956
+ TelevisionClip_1080P-3d83_crf_10_ss_00_t_20.0,-0.2064855471253395
957
+ TelevisionClip_1080P-3e42_crf_10_ss_00_t_20.0,-2.271210663020611
958
+ TelevisionClip_1080P-401e_crf_10_ss_00_t_20.0,0.9994337558746338
959
+ TelevisionClip_1080P-4c24_crf_10_ss_00_t_20.0,1.0736111998558044
960
+ TelevisionClip_1080P-4c94_crf_10_ss_00_t_20.0,-0.24800872057676315
961
+ TelevisionClip_1080P-525d_crf_10_ss_00_t_20.0,0.9920042864978313
962
+ TelevisionClip_1080P-5278_crf_10_ss_00_t_20.0,0.6937217228114605
963
+ TelevisionClip_1080P-5e68_crf_10_ss_00_t_20.0,0.9900041744112968
964
+ TelevisionClip_1080P-6026_crf_10_ss_00_t_20.0,1.2322446890175343
965
+ TelevisionClip_1080P-6282_crf_10_ss_00_t_20.0,0.8470303677022457
966
+ TelevisionClip_1080P-63e6_crf_10_ss_00_t_20.0,1.006047584116459
967
+ TelevisionClip_1080P-68c6_crf_10_ss_00_t_20.0,1.4870839938521385
968
+ TelevisionClip_1080P-7eff_crf_10_ss_00_t_20.0,0.88135140016675
969
+ TelevisionClip_360P-0951_crf_10_ss_00_t_20.0,-1.3378870785236359
970
+ TelevisionClip_360P-11d5_crf_10_ss_00_t_20.0,-1.2560032904148102
971
+ TelevisionClip_360P-29f1_crf_10_ss_00_t_20.0,-1.326384387910366
972
+ TelevisionClip_360P-3b9a_crf_10_ss_00_t_20.0,-1.1515676230192184
973
+ TelevisionClip_360P-74dd_crf_10_ss_00_t_20.0,0.21629970893263817
974
+ TelevisionClip_360P-7b23_crf_10_ss_00_t_20.0,-0.6612802669405937
975
+ TelevisionClip_480P-09d8_crf_10_ss_00_t_20.0,-1.0040842592716217
976
+ TelevisionClip_480P-0e46_crf_10_ss_00_t_20.0,-1.1506040021777153
977
+ TelevisionClip_480P-19d3_crf_10_ss_00_t_20.0,-0.11167290061712265
978
+ TelevisionClip_480P-1b49_crf_10_ss_00_t_20.0,-0.6882842630147934
979
+ TelevisionClip_480P-27ca_crf_10_ss_00_t_20.0,0.12248017266392708
980
+ TelevisionClip_480P-280f_crf_10_ss_00_t_20.0,-0.2685975804924965
981
+ TelevisionClip_480P-2ead_crf_10_ss_00_t_20.0,-1.6608280465006828
982
+ TelevisionClip_480P-30b6_crf_10_ss_00_t_20.0,-0.8879491463303566
983
+ TelevisionClip_480P-3284_crf_10_ss_00_t_20.0,-1.0096615254878998
984
+ TelevisionClip_480P-3617_crf_10_ss_00_t_20.0,-1.7211180105805397
985
+ TelevisionClip_480P-373d_crf_10_ss_00_t_20.0,-0.712855651974678
986
+ TelevisionClip_480P-3c64_crf_10_ss_00_t_20.0,0.028818819671869278
987
+ TelevisionClip_480P-415c_crf_10_ss_00_t_20.0,0.0004589594900608063
988
+ TelevisionClip_480P-436c_crf_10_ss_00_t_20.0,-1.3479207754135132
989
+ TelevisionClip_480P-4c6b_crf_10_ss_00_t_20.0,0.3372560068964958
990
+ TelevisionClip_480P-59f0_crf_10_ss_00_t_20.0,-0.8826274052262306
991
+ TelevisionClip_480P-723e_crf_10_ss_00_t_20.0,-0.9348590150475502
992
+ TelevisionClip_720P-1862_crf_10_ss_00_t_20.0,-0.45160042494535446
993
+ TelevisionClip_720P-19de_crf_10_ss_00_t_20.0,1.0214697793126106
994
+ TelevisionClip_720P-1b61_crf_10_ss_00_t_20.0,1.3740581274032593
995
+ TelevisionClip_720P-31ce_crf_10_ss_00_t_20.0,1.0322628915309906
996
+ TelevisionClip_720P-3f4c_crf_10_ss_00_t_20.0,-1.6999837756156921
997
+ TelevisionClip_720P-44d1_crf_10_ss_00_t_20.0,0.6423764079809189
998
+ TelevisionClip_720P-4af1_crf_10_ss_00_t_20.0,0.025966957211494446
999
+ TelevisionClip_720P-4edb_crf_10_ss_00_t_20.0,0.5716119930148125
1000
+ TelevisionClip_720P-5e93_crf_10_ss_00_t_20.0,0.9696012027561665
1001
+ TelevisionClip_720P-7c06_crf_10_ss_00_t_20.0,1.270882971584797
1002
+ VerticalVideo_1080P-04d4_crf_10_ss_00_t_20.0,1.0813991539180279
1003
+ VerticalVideo_1080P-1105_crf_10_ss_00_t_20.0,0.032843733206391335
1004
+ VerticalVideo_1080P-1ac1_crf_10_ss_00_t_20.0,0.5547808818519115
1005
+ VerticalVideo_1080P-1c86_crf_10_ss_00_t_20.0,-1.1991967037320137
1006
+ VerticalVideo_1080P-2195_crf_10_ss_00_t_20.0,-0.9843811318278313
1007
+ VerticalVideo_1080P-2f00_crf_10_ss_00_t_20.0,1.099482849240303
1008
+ VerticalVideo_1080P-34ba_crf_10_ss_00_t_20.0,-0.20570355700328946
1009
+ VerticalVideo_1080P-360f_crf_10_ss_00_t_20.0,0.8835629001259804
1010
+ VerticalVideo_1080P-3709_crf_10_ss_00_t_20.0,0.9331906400620937
1011
+ VerticalVideo_1080P-3a9b_crf_10_ss_00_t_20.0,1.0467791073024273
1012
+ VerticalVideo_1080P-3d96_crf_10_ss_00_t_20.0,0.9475382976233959
1013
+ VerticalVideo_1080P-4591_crf_10_ss_00_t_20.0,-0.130673615494743
1014
+ VerticalVideo_1080P-4925_crf_10_ss_00_t_20.0,1.4042314514517784
1015
+ VerticalVideo_1080P-4b92_crf_10_ss_00_t_20.0,0.8780745640397072
1016
+ VerticalVideo_1080P-4da5_crf_10_ss_00_t_20.0,1.2396453619003296
1017
+ VerticalVideo_1080P-6e19_crf_10_ss_00_t_20.0,-0.47699476033449173
1018
+ VerticalVideo_1080P-73b6_crf_10_ss_00_t_20.0,0.5953320227563381
1019
+ VerticalVideo_1080P-766b_crf_10_ss_00_t_20.0,-0.4389629364013672
1020
+ VerticalVideo_1080P-7c5c_crf_10_ss_00_t_20.0,0.4293952248990536
1021
+ VerticalVideo_1080P-7cf3_crf_10_ss_00_t_20.0,0.5917057693004608
1022
+ VerticalVideo_2160P-6d62_crf_10_ss_00_t_20.0,0.7193172946572304
1023
+ VerticalVideo_360P-0d29_crf_10_ss_00_t_20.0,-1.383470542728901
1024
+ VerticalVideo_360P-1424_crf_10_ss_00_t_20.0,-0.01628105342388153
1025
+ VerticalVideo_360P-145e_crf_10_ss_00_t_20.0,-1.6902302652597427
1026
+ VerticalVideo_360P-2bb0_crf_10_ss_00_t_20.0,-0.9100620970129967
1027
+ VerticalVideo_360P-2fa3_crf_10_ss_00_t_20.0,1.037528619170189
1028
+ VerticalVideo_360P-3936_crf_10_ss_00_t_20.0,0.20076612383127213
1029
+ VerticalVideo_360P-3b4e_crf_10_ss_00_t_20.0,0.0014461856335401535
1030
+ VerticalVideo_360P-42f1_crf_10_ss_00_t_20.0,0.08072718791663647
1031
+ VerticalVideo_360P-52c1_crf_10_ss_00_t_20.0,-0.8520463183522224
1032
+ VerticalVideo_360P-5429_crf_10_ss_00_t_20.0,-0.10094445664435625
1033
+ VerticalVideo_360P-54f7_crf_10_ss_00_t_20.0,0.6196185275912285
1034
+ VerticalVideo_360P-579c_crf_10_ss_00_t_20.0,-0.6446459665894508
1035
+ VerticalVideo_360P-634f_crf_10_ss_00_t_20.0,0.9458734840154648
1036
+ VerticalVideo_360P-6490_crf_10_ss_00_t_20.0,-0.823570728302002
1037
+ VerticalVideo_360P-694d_crf_10_ss_00_t_20.0,-0.6190975345671177
1038
+ VerticalVideo_360P-6ff2_crf_10_ss_00_t_20.0,-0.22989707440137863
1039
+ VerticalVideo_360P-70a9_crf_10_ss_00_t_20.0,-1.0706402882933617
1040
+ VerticalVideo_360P-7ba8_crf_10_ss_00_t_20.0,-0.08273576200008392
1041
+ VerticalVideo_360P-7ec3_crf_10_ss_00_t_20.0,0.2780178301036358
1042
+ VerticalVideo_480P-1bb9_crf_10_ss_00_t_20.0,0.556928813457489
1043
+ VerticalVideo_480P-2aa1_crf_10_ss_00_t_20.0,0.8382895737886429
1044
+ VerticalVideo_480P-2fa4_crf_10_ss_00_t_20.0,0.7792980819940567
1045
+ VerticalVideo_480P-34b9_crf_10_ss_00_t_20.0,-0.4513307511806488
1046
+ VerticalVideo_480P-3a6a_crf_10_ss_00_t_20.0,1.096388429403305
1047
+ VerticalVideo_480P-419c_crf_10_ss_00_t_20.0,0.33910782635211945
1048
+ VerticalVideo_480P-467e_crf_10_ss_00_t_20.0,-0.35982744861394167
1049
+ VerticalVideo_480P-51b7_crf_10_ss_00_t_20.0,-1.5235112085938454
1050
+ VerticalVideo_480P-550d_crf_10_ss_00_t_20.0,0.8001582324504852
1051
+ VerticalVideo_480P-572a_crf_10_ss_00_t_20.0,-0.2501329109072685
1052
+ VerticalVideo_480P-7278_crf_10_ss_00_t_20.0,-0.9916704297065735
1053
+ VerticalVideo_480P-729c_crf_10_ss_00_t_20.0,0.48154959082603455
1054
+ VerticalVideo_480P-790a_crf_10_ss_00_t_20.0,1.0381533242762089
1055
+ VerticalVideo_720P-0750_crf_10_ss_00_t_20.0,0.05590439960360527
1056
+ VerticalVideo_720P-0dac_crf_10_ss_00_t_20.0,-1.454311117529869
1057
+ VerticalVideo_720P-0f61_crf_10_ss_00_t_20.0,1.0668645203113556
1058
+ VerticalVideo_720P-19fa_crf_10_ss_00_t_20.0,0.9271753393113613
1059
+ VerticalVideo_720P-1ada_crf_10_ss_00_t_20.0,-0.2337687835097313
1060
+ VerticalVideo_720P-2efc_crf_10_ss_00_t_20.0,-0.23854181915521622
1061
+ VerticalVideo_720P-3df7_crf_10_ss_00_t_20.0,0.12312326580286026
1062
+ VerticalVideo_720P-42f2_crf_10_ss_00_t_20.0,-0.5007573142647743
1063
+ VerticalVideo_720P-44de_crf_10_ss_00_t_20.0,1.2757064998149872
1064
+ VerticalVideo_720P-456c_crf_10_ss_00_t_20.0,0.6560987904667854
1065
+ VerticalVideo_720P-4730_crf_10_ss_00_t_20.0,0.8350322432816029
1066
+ VerticalVideo_720P-4ca7_crf_10_ss_00_t_20.0,1.0909502990543842
1067
+ VerticalVideo_720P-57eb_crf_10_ss_00_t_20.0,0.5098427757620811
1068
+ VerticalVideo_720P-6580_crf_10_ss_00_t_20.0,-0.5067827925086021
1069
+ VerticalVideo_720P-665d_crf_10_ss_00_t_20.0,0.6589086353778839
1070
+ VerticalVideo_720P-669d_crf_10_ss_00_t_20.0,0.8304715529084206
1071
+ VerticalVideo_720P-6bf7_crf_10_ss_00_t_20.0,0.8544168323278427
1072
+ VerticalVideo_720P-7517_crf_10_ss_00_t_20.0,0.898328572511673
1073
+ VerticalVideo_720P-7859_crf_10_ss_00_t_20.0,0.4142988845705986
1074
+ VerticalVideo_720P-7c1d_crf_10_ss_00_t_20.0,1.2377204149961472
1075
+ Vlog_1080P-010b_crf_10_ss_00_t_20.0,1.2251771800220013
1076
+ Vlog_1080P-1609_crf_10_ss_00_t_20.0,-0.8873155787587166
1077
+ Vlog_1080P-18da_crf_10_ss_00_t_20.0,0.7796397060155869
1078
+ Vlog_1080P-19bb_crf_10_ss_00_t_20.0,-0.8112736344337463
1079
+ Vlog_1080P-1a53_crf_10_ss_00_t_20.0,0.7242436483502388
1080
+ Vlog_1080P-1df9_crf_10_ss_00_t_20.0,0.8649059385061264
1081
+ Vlog_1080P-1e70_crf_10_ss_00_t_20.0,-1.259570524096489
1082
+ Vlog_1080P-1f0a_crf_10_ss_00_t_20.0,0.3873760625720024
1083
+ Vlog_1080P-21f5_crf_10_ss_00_t_20.0,-0.7195161059498787
1084
+ Vlog_1080P-2394_crf_10_ss_00_t_20.0,1.5109003335237503
1085
+ Vlog_1080P-23cb_crf_10_ss_00_t_20.0,-0.6670789122581482
1086
+ Vlog_1080P-25de_crf_10_ss_00_t_20.0,-1.9248424991965294
1087
+ Vlog_1080P-2600_crf_10_ss_00_t_20.0,0.26718390360474586
1088
+ Vlog_1080P-26dc_crf_10_ss_00_t_20.0,-0.26961349695920944
1089
+ Vlog_1080P-2cda_crf_10_ss_00_t_20.0,0.9059424549341202
1090
+ Vlog_1080P-34cb_crf_10_ss_00_t_20.0,-0.29311503469944
1091
+ Vlog_1080P-35cd_crf_10_ss_00_t_20.0,-0.5098941139876842
1092
+ Vlog_1080P-3744_crf_10_ss_00_t_20.0,0.7112852931022644
1093
+ Vlog_1080P-45c9_crf_10_ss_00_t_20.0,-1.1464993059635162
1094
+ Vlog_1080P-4921_crf_10_ss_00_t_20.0,-0.5120318979024887
1095
+ Vlog_1080P-4ba9_crf_10_ss_00_t_20.0,0.18296042829751968
1096
+ Vlog_1080P-4f26_crf_10_ss_00_t_20.0,0.20620618760585785
1097
+ Vlog_1080P-52fe_crf_10_ss_00_t_20.0,0.04165944829583168
1098
+ Vlog_1080P-5904_crf_10_ss_00_t_20.0,1.016965139657259
1099
+ Vlog_1080P-5f28_crf_10_ss_00_t_20.0,-0.039120522793382406
1100
+ Vlog_1080P-62fc_crf_10_ss_00_t_20.0,0.868809424340725
1101
+ Vlog_1080P-64b6_crf_10_ss_00_t_20.0,0.9082087315618992
1102
+ Vlog_1080P-6686_crf_10_ss_00_t_20.0,0.0937051996588707
1103
+ Vlog_1080P-687a_crf_10_ss_00_t_20.0,-0.32826974242925644
1104
+ Vlog_1080P-7062_crf_10_ss_00_t_20.0,0.8056678026914597
1105
+ Vlog_1080P-7b67_crf_10_ss_00_t_20.0,-0.14352568984031677
1106
+ Vlog_1080P-7e8c_crf_10_ss_00_t_20.0,-1.0672188773751259
1107
+ Vlog_2160P-030a_crf_10_ss_00_t_20.0,-1.539968527853489
1108
+ Vlog_2160P-0577_crf_10_ss_00_t_20.0,0.6922348365187645
1109
+ Vlog_2160P-059c_crf_10_ss_00_t_20.0,1.3502066396176815
1110
+ Vlog_2160P-09c9_crf_10_ss_00_t_20.0,0.07172980159521103
1111
+ Vlog_2160P-13a1_crf_10_ss_00_t_20.0,0.46258845552802086
1112
+ Vlog_2160P-13fe_crf_10_ss_00_t_20.0,0.028805170208215714
1113
+ Vlog_2160P-19f9_crf_10_ss_00_t_20.0,0.6658930964767933
1114
+ Vlog_2160P-1ff6_crf_10_ss_00_t_20.0,-0.8232445642352104
1115
+ Vlog_2160P-255c_crf_10_ss_00_t_20.0,1.1105861142277718
1116
+ Vlog_2160P-2953_crf_10_ss_00_t_20.0,-0.19903753325343132
1117
+ Vlog_2160P-2b2d_crf_10_ss_00_t_20.0,0.37964675575494766
1118
+ Vlog_2160P-3019_crf_10_ss_00_t_20.0,1.2806047052145004
1119
+ Vlog_2160P-310b_crf_10_ss_00_t_20.0,0.978662759065628
1120
+ Vlog_2160P-327a_crf_10_ss_00_t_20.0,0.357052281498909
1121
+ Vlog_2160P-342a_crf_10_ss_00_t_20.0,0.7201918512582779
1122
+ Vlog_2160P-3a75_crf_10_ss_00_t_20.0,0.31405114009976387
1123
+ Vlog_2160P-408f_crf_10_ss_00_t_20.0,0.34827133268117905
1124
+ Vlog_2160P-416c_crf_10_ss_00_t_20.0,0.6419981941580772
1125
+ Vlog_2160P-4362_crf_10_ss_00_t_20.0,1.4400136657059193
1126
+ Vlog_2160P-4419_crf_10_ss_00_t_20.0,0.9023315235972404
1127
+ Vlog_2160P-4655_crf_10_ss_00_t_20.0,0.570591039955616
1128
+ Vlog_2160P-4f98_crf_10_ss_00_t_20.0,-0.537367694079876
1129
+ Vlog_2160P-522f_crf_10_ss_00_t_20.0,0.9253093861043453
1130
+ Vlog_2160P-56e4_crf_10_ss_00_t_20.0,0.661886427551508
1131
+ Vlog_2160P-5874_crf_10_ss_00_t_20.0,0.26844609901309013
1132
+ Vlog_2160P-62b2_crf_10_ss_00_t_20.0,-0.09459024667739868
1133
+ Vlog_2160P-6629_crf_10_ss_00_t_20.0,1.0978261828422546
1134
+ Vlog_2160P-6f92_crf_10_ss_00_t_20.0,0.3733375407755375
1135
+ Vlog_2160P-700c_crf_10_ss_00_t_20.0,0.6057698279619217
1136
+ Vlog_2160P-70d6_crf_10_ss_00_t_20.0,-0.9704740196466446
1137
+ Vlog_2160P-7324_crf_10_ss_00_t_20.0,0.691860057413578
1138
+ Vlog_2160P-77d8_crf_10_ss_00_t_20.0,-0.24333998560905457
1139
+ Vlog_2160P-7b10_crf_10_ss_00_t_20.0,0.48988037556409836
1140
+ Vlog_2160P-7b5c_crf_10_ss_00_t_20.0,-0.3221106491982937
1141
+ Vlog_2160P-7bfb_crf_10_ss_00_t_20.0,0.827880509197712
1142
+ Vlog_2160P-7f05_crf_10_ss_00_t_20.0,-0.9782103076577187
1143
+ Vlog_360P-1e5b_crf_10_ss_00_t_20.0,-0.6387472748756409
1144
+ Vlog_360P-22a0_crf_10_ss_00_t_20.0,-0.5878550335764885
1145
+ Vlog_360P-2973_crf_10_ss_00_t_20.0,-1.0212416872382164
1146
+ Vlog_360P-2e9d_crf_10_ss_00_t_20.0,-1.3727399930357933
1147
+ Vlog_360P-3121_crf_10_ss_00_t_20.0,-1.0680179819464684
1148
+ Vlog_360P-3bc2_crf_10_ss_00_t_20.0,-0.3730285167694092
1149
+ Vlog_360P-433e_crf_10_ss_00_t_20.0,-0.6768595427274704
1150
+ Vlog_360P-4697_crf_10_ss_00_t_20.0,-0.1389858592301607
1151
+ Vlog_360P-4795_crf_10_ss_00_t_20.0,-1.656739518046379
1152
+ Vlog_360P-4ad1_crf_10_ss_00_t_20.0,-0.7410090491175652
1153
+ Vlog_360P-4d71_crf_10_ss_00_t_20.0,-0.4858687072992325
1154
+ Vlog_360P-6279_crf_10_ss_00_t_20.0,-0.3537091207690537
1155
+ Vlog_360P-7334_crf_10_ss_00_t_20.0,-0.8795274645090103
1156
+ Vlog_360P-76ae_crf_10_ss_00_t_20.0,-1.5247847959399223
1157
+ Vlog_360P-7efe_crf_10_ss_00_t_20.0,-1.0052097886800766
1158
+ Vlog_480P-08c7_crf_10_ss_00_t_20.0,-0.33645227178931236
1159
+ Vlog_480P-0980_crf_10_ss_00_t_20.0,-1.3443047255277634
1160
+ Vlog_480P-0ddc_crf_10_ss_00_t_20.0,0.3439935892820358
1161
+ Vlog_480P-1b39_crf_10_ss_00_t_20.0,-2.1083863228559494
1162
+ Vlog_480P-206f_crf_10_ss_00_t_20.0,-1.1631440073251724
1163
+ Vlog_480P-279d_crf_10_ss_00_t_20.0,-0.23201020434498787
1164
+ Vlog_480P-2cad_crf_10_ss_00_t_20.0,-0.6300324127078056
1165
+ Vlog_480P-34ba_crf_10_ss_00_t_20.0,0.19254422187805176
1166
+ Vlog_480P-476b_crf_10_ss_00_t_20.0,-0.2461334392428398
1167
+ Vlog_480P-4beb_crf_10_ss_00_t_20.0,-1.4314097538590431
1168
+ Vlog_480P-5275_crf_10_ss_00_t_20.0,-0.8649559542536736
1169
+ Vlog_480P-535d_crf_10_ss_00_t_20.0,-1.2281661927700043
1170
+ Vlog_480P-59dc_crf_10_ss_00_t_20.0,-0.4002206102013588
1171
+ Vlog_480P-5dfe_crf_10_ss_00_t_20.0,-0.24425712041556835
1172
+ Vlog_480P-5e1c_crf_10_ss_00_t_20.0,-1.7116219103336334
1173
+ Vlog_480P-5ebd_crf_10_ss_00_t_20.0,-0.08730430901050568
1174
+ Vlog_480P-6395_crf_10_ss_00_t_20.0,0.3729352776426822
1175
+ Vlog_480P-6c60_crf_10_ss_00_t_20.0,-1.524313010275364
1176
+ Vlog_480P-7237_crf_10_ss_00_t_20.0,0.5546461716294289
1177
+ Vlog_480P-7615_crf_10_ss_00_t_20.0,-1.1663981080055237
1178
+ Vlog_480P-7754_crf_10_ss_00_t_20.0,0.15616318583488464
1179
+ Vlog_480P-7d0c_crf_10_ss_00_t_20.0,-0.08573338482528925
1180
+ Vlog_480P-7ecf_crf_10_ss_00_t_20.0,-0.2896520346403122
1181
+ Vlog_720P-033a_crf_10_ss_00_t_20.0,1.0730110369622707
1182
+ Vlog_720P-03d5_crf_10_ss_00_t_20.0,-0.021414799382910132
1183
+ Vlog_720P-03f9_crf_10_ss_00_t_20.0,0.8009025380015373
1184
+ Vlog_720P-0d79_crf_10_ss_00_t_20.0,0.17606812715530396
1185
+ Vlog_720P-1003_crf_10_ss_00_t_20.0,0.17415976524353027
1186
+ Vlog_720P-11c5_crf_10_ss_00_t_20.0,0.032422956079244614
1187
+ Vlog_720P-135c_crf_10_ss_00_t_20.0,-0.13931911438703537
1188
+ Vlog_720P-141f_crf_10_ss_00_t_20.0,-1.1275889202952385
1189
+ Vlog_720P-155f_crf_10_ss_00_t_20.0,0.7882280461490154
1190
+ Vlog_720P-2929_crf_10_ss_00_t_20.0,0.6836198642849922
1191
+ Vlog_720P-329f_crf_10_ss_00_t_20.0,0.23812251538038254
1192
+ Vlog_720P-32b2_crf_10_ss_00_t_20.0,1.2311319876462221
1193
+ Vlog_720P-343d_crf_10_ss_00_t_20.0,-0.022289623506367207
1194
+ Vlog_720P-372d_crf_10_ss_00_t_20.0,0.5675240829586983
1195
+ Vlog_720P-3e9c_crf_10_ss_00_t_20.0,0.6252175532281399
1196
+ Vlog_720P-4e3d_crf_10_ss_00_t_20.0,-0.7147410735487938
1197
+ Vlog_720P-5364_crf_10_ss_00_t_20.0,-1.5317660048604012
1198
+ Vlog_720P-55b6_crf_10_ss_00_t_20.0,1.0507183335721493
1199
+ Vlog_720P-561e_crf_10_ss_00_t_20.0,0.7973193302750587
1200
+ Vlog_720P-5d08_crf_10_ss_00_t_20.0,0.5208766795694828
1201
+ Vlog_720P-60f8_crf_10_ss_00_t_20.0,1.2745041735470295
1202
+ Vlog_720P-6d56_crf_10_ss_00_t_20.0,0.26433345675468445
prediction_results/youtube_ugc/smos.csv ADDED
@@ -0,0 +1,1202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Mos
2
+ Animation_1080P-01b3_crf_10_ss_00_t_20.0,-0.04290063679218292
3
+ Animation_1080P-05f8_crf_10_ss_00_t_20.0,-0.08265642076730728
4
+ Animation_1080P-0c4f_crf_10_ss_00_t_20.0,-0.07431573420763016
5
+ Animation_1080P-0cdf_crf_10_ss_00_t_20.0,-0.0508737787604332
6
+ Animation_1080P-18f5_crf_10_ss_00_t_20.0,-0.07452196627855301
7
+ Animation_1080P-209f_crf_10_ss_00_t_20.0,-0.05397961288690567
8
+ Animation_1080P-21dd_crf_10_ss_00_t_20.0,-0.03722720593214035
9
+ Animation_1080P-2fbe_crf_10_ss_00_t_20.0,-0.07026436924934387
10
+ Animation_1080P-2fff_crf_10_ss_00_t_20.0,-0.048882126808166504
11
+ Animation_1080P-3d67_crf_10_ss_00_t_20.0,-0.10423707962036133
12
+ Animation_1080P-3dbf_crf_10_ss_00_t_20.0,-0.06623445451259613
13
+ Animation_1080P-3e01_crf_10_ss_00_t_20.0,-0.06657403707504272
14
+ Animation_1080P-4214_crf_10_ss_00_t_20.0,-0.056686919182538986
15
+ Animation_1080P-4be3_crf_10_ss_00_t_20.0,-0.07259561866521835
16
+ Animation_1080P-4ea8_crf_10_ss_00_t_20.0,-0.07084053754806519
17
+ Animation_1080P-5083_crf_10_ss_00_t_20.0,-0.09931425005197525
18
+ Animation_1080P-58d3_crf_10_ss_00_t_20.0,-0.06956066936254501
19
+ Animation_1080P-5dd8_crf_10_ss_00_t_20.0,-0.06589886546134949
20
+ Animation_1080P-646f_crf_10_ss_00_t_20.0,-0.09101085364818573
21
+ Animation_1080P-66ba_crf_10_ss_00_t_20.0,-0.0665215253829956
22
+ Animation_1080P-6a33_crf_10_ss_00_t_20.0,-0.09469490498304367
23
+ Animation_1080P-6ec0_crf_10_ss_00_t_20.0,-0.06432913988828659
24
+ Animation_2160P-41dc_crf_10_ss_00_t_20.0,-0.08594965189695358
25
+ Animation_2160P-6f3b_crf_10_ss_00_t_20.0,-0.07012872397899628
26
+ Animation_360P-08c9_crf_10_ss_00_t_20.0,-0.07902644574642181
27
+ Animation_360P-188f_crf_10_ss_00_t_20.0,-0.0816783681511879
28
+ Animation_360P-24d4_crf_10_ss_00_t_20.0,-0.08609278500080109
29
+ Animation_360P-3e40_crf_10_ss_00_t_20.0,-0.11819291114807129
30
+ Animation_360P-3e52_crf_10_ss_00_t_20.0,-0.07844672352075577
31
+ Animation_360P-47cc_crf_10_ss_00_t_20.0,-0.08087071031332016
32
+ Animation_360P-4b4c_crf_10_ss_00_t_20.0,-0.09838489443063736
33
+ Animation_360P-4edc_crf_10_ss_00_t_20.0,-0.07715456932783127
34
+ Animation_360P-5712_crf_10_ss_00_t_20.0,-0.07735160738229752
35
+ Animation_360P-5de0_crf_10_ss_00_t_20.0,-0.09960541874170303
36
+ Animation_360P-631c_crf_10_ss_00_t_20.0,-0.11321090161800385
37
+ Animation_360P-69e0_crf_10_ss_00_t_20.0,-0.10467469692230225
38
+ Animation_360P-7856_crf_10_ss_00_t_20.0,-0.07854735851287842
39
+ Animation_360P-794f_crf_10_ss_00_t_20.0,-0.10525994747877121
40
+ Animation_480P-046c_crf_10_ss_00_t_20.0,-0.0968625470995903
41
+ Animation_480P-073c_crf_10_ss_00_t_20.0,-0.07489266246557236
42
+ Animation_480P-087e_crf_10_ss_00_t_20.0,-0.0882289931178093
43
+ Animation_480P-08a5_crf_10_ss_00_t_20.0,-0.0705801248550415
44
+ Animation_480P-0d04_crf_10_ss_00_t_20.0,-0.08182378113269806
45
+ Animation_480P-1da7_crf_10_ss_00_t_20.0,-0.07694297283887863
46
+ Animation_480P-35ee_crf_10_ss_00_t_20.0,-0.08450586348772049
47
+ Animation_480P-3fdf_crf_10_ss_00_t_20.0,-0.07648315280675888
48
+ Animation_480P-4b86_crf_10_ss_00_t_20.0,-0.09297486394643784
49
+ Animation_480P-4e36_crf_10_ss_00_t_20.0,-0.08269046992063522
50
+ Animation_480P-52af_crf_10_ss_00_t_20.0,-0.07870893180370331
51
+ Animation_480P-66c0_crf_10_ss_00_t_20.0,-0.08353251218795776
52
+ Animation_480P-6e23_crf_10_ss_00_t_20.0,-0.07077047228813171
53
+ Animation_480P-6ef6_crf_10_ss_00_t_20.0,-0.07698679715394974
54
+ Animation_480P-6ff4_crf_10_ss_00_t_20.0,-0.08431331068277359
55
+ Animation_480P-70d4_crf_10_ss_00_t_20.0,-0.07387068122625351
56
+ Animation_480P-791b_crf_10_ss_00_t_20.0,-0.07882525026798248
57
+ Animation_480P-7a31_crf_10_ss_00_t_20.0,-0.08034393936395645
58
+ Animation_480P-7ef2_crf_10_ss_00_t_20.0,-0.10000350326299667
59
+ Animation_720P-0116_crf_10_ss_00_t_20.0,-0.034262578934431076
60
+ Animation_720P-01b3_crf_10_ss_00_t_20.0,-0.08149644732475281
61
+ Animation_720P-06a6_crf_10_ss_00_t_20.0,-0.06810702383518219
62
+ Animation_720P-0acc_crf_10_ss_00_t_20.0,-0.08128723502159119
63
+ Animation_720P-13b7_crf_10_ss_00_t_20.0,-0.04206426069140434
64
+ Animation_720P-1a6d_crf_10_ss_00_t_20.0,-0.0690397173166275
65
+ Animation_720P-2525_crf_10_ss_00_t_20.0,-0.06410659849643707
66
+ Animation_720P-2abf_crf_10_ss_00_t_20.0,-0.0718134343624115
67
+ Animation_720P-3adc_crf_10_ss_00_t_20.0,-0.07685290277004242
68
+ Animation_720P-412a_crf_10_ss_00_t_20.0,-0.04506021738052368
69
+ Animation_720P-41cf_crf_10_ss_00_t_20.0,-0.06917810440063477
70
+ Animation_720P-41d6_crf_10_ss_00_t_20.0,-0.05226541683077812
71
+ Animation_720P-4268_crf_10_ss_00_t_20.0,-0.07470061630010605
72
+ Animation_720P-431c_crf_10_ss_00_t_20.0,-0.047297947108745575
73
+ Animation_720P-57d9_crf_10_ss_00_t_20.0,-0.0858120545744896
74
+ Animation_720P-620f_crf_10_ss_00_t_20.0,-0.061193179339170456
75
+ Animation_720P-6372_crf_10_ss_00_t_20.0,-0.048594843596220016
76
+ Animation_720P-79ee_crf_10_ss_00_t_20.0,-0.10850857943296432
77
+ Animation_720P-7b29_crf_10_ss_00_t_20.0,-0.06725838780403137
78
+ Animation_720P-7e7d_crf_10_ss_00_t_20.0,-0.08669878542423248
79
+ Animation_720P-7ff2_crf_10_ss_00_t_20.0,-0.0668262243270874
80
+ CoverSong_1080P-0188_crf_10_ss_00_t_20.0,-0.10109612345695496
81
+ CoverSong_1080P-033d_crf_10_ss_00_t_20.0,-0.04518430680036545
82
+ CoverSong_1080P-0a86_crf_10_ss_00_t_20.0,-0.05699692294001579
83
+ CoverSong_1080P-0cdc_crf_10_ss_00_t_20.0,-0.10109902918338776
84
+ CoverSong_1080P-0f33_crf_10_ss_00_t_20.0,-0.07787167280912399
85
+ CoverSong_1080P-0f3a_crf_10_ss_00_t_20.0,-0.0579422190785408
86
+ CoverSong_1080P-1963_crf_10_ss_00_t_20.0,-0.0643891766667366
87
+ CoverSong_1080P-1b08_crf_10_ss_00_t_20.0,-0.0662449449300766
88
+ CoverSong_1080P-1b0c_crf_10_ss_00_t_20.0,-0.07408902794122696
89
+ CoverSong_1080P-2207_crf_10_ss_00_t_20.0,-0.06787067651748657
90
+ CoverSong_1080P-237f_crf_10_ss_00_t_20.0,-0.04957280308008194
91
+ CoverSong_1080P-3409_crf_10_ss_00_t_20.0,-0.03523030877113342
92
+ CoverSong_1080P-3499_crf_10_ss_00_t_20.0,-0.04842881113290787
93
+ CoverSong_1080P-3aac_crf_10_ss_00_t_20.0,-0.06182365119457245
94
+ CoverSong_1080P-3df8_crf_10_ss_00_t_20.0,-0.06508207321166992
95
+ CoverSong_1080P-4bad_crf_10_ss_00_t_20.0,-0.05513685196638107
96
+ CoverSong_1080P-5430_crf_10_ss_00_t_20.0,-0.054786283522844315
97
+ CoverSong_1080P-5456_crf_10_ss_00_t_20.0,-0.07167387753725052
98
+ CoverSong_1080P-5cae_crf_10_ss_00_t_20.0,-0.05252609774470329
99
+ CoverSong_1080P-5e69_crf_10_ss_00_t_20.0,-0.07864747196435928
100
+ CoverSong_1080P-5f92_crf_10_ss_00_t_20.0,-0.06229890137910843
101
+ CoverSong_1080P-6f26_crf_10_ss_00_t_20.0,-0.04189638793468475
102
+ CoverSong_360P-0a9d_crf_10_ss_00_t_20.0,-0.11965975165367126
103
+ CoverSong_360P-0aa2_crf_10_ss_00_t_20.0,-0.10270363837480545
104
+ CoverSong_360P-11f9_crf_10_ss_00_t_20.0,-0.08939176052808762
105
+ CoverSong_360P-13d2_crf_10_ss_00_t_20.0,-0.1477474868297577
106
+ CoverSong_360P-14b9_crf_10_ss_00_t_20.0,-0.1063031330704689
107
+ CoverSong_360P-1b2b_crf_10_ss_00_t_20.0,-0.07191704958677292
108
+ CoverSong_360P-2146_crf_10_ss_00_t_20.0,-0.1171313151717186
109
+ CoverSong_360P-2b4d_crf_10_ss_00_t_20.0,-0.10915444791316986
110
+ CoverSong_360P-3218_crf_10_ss_00_t_20.0,-0.12195756286382675
111
+ CoverSong_360P-4add_crf_10_ss_00_t_20.0,-0.09421252459287643
112
+ CoverSong_360P-53a6_crf_10_ss_00_t_20.0,-0.07886657863855362
113
+ CoverSong_360P-59d1_crf_10_ss_00_t_20.0,-0.10105736553668976
114
+ CoverSong_360P-5a24_crf_10_ss_00_t_20.0,-0.1006564348936081
115
+ CoverSong_360P-5d20_crf_10_ss_00_t_20.0,-0.10154758393764496
116
+ CoverSong_360P-67ec_crf_10_ss_00_t_20.0,-0.10817045718431473
117
+ CoverSong_360P-69ef_crf_10_ss_00_t_20.0,-0.09800731390714645
118
+ CoverSong_360P-6d6a_crf_10_ss_00_t_20.0,-0.09278105944395065
119
+ CoverSong_360P-6da7_crf_10_ss_00_t_20.0,-0.10061616450548172
120
+ CoverSong_480P-0170_crf_10_ss_00_t_20.0,-0.08201110363006592
121
+ CoverSong_480P-1019_crf_10_ss_00_t_20.0,-0.07450887560844421
122
+ CoverSong_480P-1109_crf_10_ss_00_t_20.0,-0.11361861228942871
123
+ CoverSong_480P-2142_crf_10_ss_00_t_20.0,-0.0834643617272377
124
+ CoverSong_480P-2207_crf_10_ss_00_t_20.0,-0.08386816829442978
125
+ CoverSong_480P-2d2c_crf_10_ss_00_t_20.0,-0.06972139328718185
126
+ CoverSong_480P-3076_crf_10_ss_00_t_20.0,-0.14373385906219482
127
+ CoverSong_480P-35e1_crf_10_ss_00_t_20.0,-0.07589658349752426
128
+ CoverSong_480P-3e4b_crf_10_ss_00_t_20.0,-0.0964965745806694
129
+ CoverSong_480P-3e92_crf_10_ss_00_t_20.0,-0.0585140585899353
130
+ CoverSong_480P-3f3b_crf_10_ss_00_t_20.0,-0.08811605721712112
131
+ CoverSong_480P-41a5_crf_10_ss_00_t_20.0,-0.07450453191995621
132
+ CoverSong_480P-4d34_crf_10_ss_00_t_20.0,-0.11055018752813339
133
+ CoverSong_480P-53f4_crf_10_ss_00_t_20.0,-0.11380661278963089
134
+ CoverSong_480P-59f2_crf_10_ss_00_t_20.0,-0.07316948473453522
135
+ CoverSong_480P-5b62_crf_10_ss_00_t_20.0,-0.1126120537519455
136
+ CoverSong_480P-60a6_crf_10_ss_00_t_20.0,-0.11078525334596634
137
+ CoverSong_480P-64d0_crf_10_ss_00_t_20.0,-0.061872005462646484
138
+ CoverSong_480P-6c3e_crf_10_ss_00_t_20.0,-0.09889889508485794
139
+ CoverSong_480P-6c50_crf_10_ss_00_t_20.0,-0.10590396076440811
140
+ CoverSong_480P-7f6d_crf_10_ss_00_t_20.0,-0.09800819307565689
141
+ CoverSong_720P-014c_crf_10_ss_00_t_20.0,-0.08956962823867798
142
+ CoverSong_720P-01a1_crf_10_ss_00_t_20.0,-0.08141101151704788
143
+ CoverSong_720P-0239_crf_10_ss_00_t_20.0,-0.08868689090013504
144
+ CoverSong_720P-05d6_crf_10_ss_00_t_20.0,-0.07235083729028702
145
+ CoverSong_720P-10f1_crf_10_ss_00_t_20.0,-0.12047158926725388
146
+ CoverSong_720P-1393_crf_10_ss_00_t_20.0,-0.07043430209159851
147
+ CoverSong_720P-2d05_crf_10_ss_00_t_20.0,-0.0877707451581955
148
+ CoverSong_720P-3dca_crf_10_ss_00_t_20.0,-0.09034284949302673
149
+ CoverSong_720P-4006_crf_10_ss_00_t_20.0,-0.06152578815817833
150
+ CoverSong_720P-449f_crf_10_ss_00_t_20.0,-0.08187096565961838
151
+ CoverSong_720P-5689_crf_10_ss_00_t_20.0,-0.11959941685199738
152
+ CoverSong_720P-5ba2_crf_10_ss_00_t_20.0,-0.09301161020994186
153
+ CoverSong_720P-60d3_crf_10_ss_00_t_20.0,-0.09452333301305771
154
+ CoverSong_720P-6626_crf_10_ss_00_t_20.0,-0.07662445306777954
155
+ CoverSong_720P-6b8c_crf_10_ss_00_t_20.0,-0.09267646819353104
156
+ CoverSong_720P-6d6a_crf_10_ss_00_t_20.0,-0.0753328874707222
157
+ CoverSong_720P-6d81_crf_10_ss_00_t_20.0,-0.08432016521692276
158
+ CoverSong_720P-7360_crf_10_ss_00_t_20.0,-0.11823563277721405
159
+ CoverSong_720P-7539_crf_10_ss_00_t_20.0,-0.0912618637084961
160
+ Gaming_1080P-0ce6_crf_10_ss_00_t_20.0,-0.05814461037516594
161
+ Gaming_1080P-0ef8_crf_10_ss_00_t_20.0,-0.07207822054624557
162
+ Gaming_1080P-12d4_crf_10_ss_00_t_20.0,-0.04882191866636276
163
+ Gaming_1080P-13e3_crf_10_ss_00_t_20.0,-0.04028917849063873
164
+ Gaming_1080P-1704_crf_10_ss_00_t_20.0,-0.0486273318529129
165
+ Gaming_1080P-173a_crf_10_ss_00_t_20.0,-0.08976340293884277
166
+ Gaming_1080P-190d_crf_10_ss_00_t_20.0,-0.0646025761961937
167
+ Gaming_1080P-2221_crf_10_ss_00_t_20.0,-0.05289851129055023
168
+ Gaming_1080P-223e_crf_10_ss_00_t_20.0,-0.062061142176389694
169
+ Gaming_1080P-26dc_crf_10_ss_00_t_20.0,-0.05175000801682472
170
+ Gaming_1080P-277c_crf_10_ss_00_t_20.0,-0.07119230926036835
171
+ Gaming_1080P-2927_crf_10_ss_00_t_20.0,-0.04346153140068054
172
+ Gaming_1080P-29b1_crf_10_ss_00_t_20.0,-0.06329922378063202
173
+ Gaming_1080P-2e97_crf_10_ss_00_t_20.0,-0.04264390841126442
174
+ Gaming_1080P-35fa_crf_10_ss_00_t_20.0,-0.09492652118206024
175
+ Gaming_1080P-3a9d_crf_10_ss_00_t_20.0,-0.06856971234083176
176
+ Gaming_1080P-3bf7_crf_10_ss_00_t_20.0,-0.1081264540553093
177
+ Gaming_1080P-3d58_crf_10_ss_00_t_20.0,-0.06651317328214645
178
+ Gaming_1080P-44c4_crf_10_ss_00_t_20.0,-0.06703866273164749
179
+ Gaming_1080P-45af_crf_10_ss_00_t_20.0,-0.05799802765250206
180
+ Gaming_1080P-45fc_crf_10_ss_00_t_20.0,-0.05857304856181145
181
+ Gaming_1080P-4865_crf_10_ss_00_t_20.0,-0.06179651990532875
182
+ Gaming_1080P-51fc_crf_10_ss_00_t_20.0,-0.05238281190395355
183
+ Gaming_1080P-564e_crf_10_ss_00_t_20.0,-0.04418686032295227
184
+ Gaming_1080P-57ca_crf_10_ss_00_t_20.0,-0.052218832075595856
185
+ Gaming_1080P-58ba_crf_10_ss_00_t_20.0,-0.07322964817285538
186
+ Gaming_1080P-5ae7_crf_10_ss_00_t_20.0,-0.0949811190366745
187
+ Gaming_1080P-6530_crf_10_ss_00_t_20.0,-0.05026627331972122
188
+ Gaming_1080P-6578_crf_10_ss_00_t_20.0,-0.05911211669445038
189
+ Gaming_1080P-66d2_crf_10_ss_00_t_20.0,-0.054069485515356064
190
+ Gaming_1080P-698a_crf_10_ss_00_t_20.0,-0.07275746762752533
191
+ Gaming_1080P-6d53_crf_10_ss_00_t_20.0,-0.06469177454710007
192
+ Gaming_1080P-6db2_crf_10_ss_00_t_20.0,-0.07490454614162445
193
+ Gaming_1080P-6dc6_crf_10_ss_00_t_20.0,-0.032754674553871155
194
+ Gaming_1080P-6e45_crf_10_ss_00_t_20.0,-0.11885996907949448
195
+ Gaming_1080P-71a5_crf_10_ss_00_t_20.0,-0.05171023681759834
196
+ Gaming_1080P-72c8_crf_10_ss_00_t_20.0,-0.05049573630094528
197
+ Gaming_1080P-777b_crf_10_ss_00_t_20.0,-0.06319988518953323
198
+ Gaming_1080P-7a1e_crf_10_ss_00_t_20.0,-0.05562899261713028
199
+ Gaming_2160P-2436_crf_10_ss_00_t_20.0,-0.06248947232961655
200
+ Gaming_2160P-28de_crf_10_ss_00_t_20.0,-0.05288057029247284
201
+ Gaming_2160P-2b92_crf_10_ss_00_t_20.0,-0.05888214707374573
202
+ Gaming_2160P-2cb1_crf_10_ss_00_t_20.0,-0.0363430418074131
203
+ Gaming_2160P-2dc4_crf_10_ss_00_t_20.0,-0.05446198210120201
204
+ Gaming_2160P-3002_crf_10_ss_00_t_20.0,-0.0503334105014801
205
+ Gaming_2160P-31f6_crf_10_ss_00_t_20.0,-0.052384842187166214
206
+ Gaming_2160P-348d_crf_10_ss_00_t_20.0,-0.04960111901164055
207
+ Gaming_2160P-34a1_crf_10_ss_00_t_20.0,-0.056213922798633575
208
+ Gaming_2160P-387f_crf_10_ss_00_t_20.0,-0.026866203173995018
209
+ Gaming_2160P-3a25_crf_10_ss_00_t_20.0,-0.050730615854263306
210
+ Gaming_2160P-3aec_crf_10_ss_00_t_20.0,-0.05181899294257164
211
+ Gaming_2160P-3ce4_crf_10_ss_00_t_20.0,-0.019946591928601265
212
+ Gaming_2160P-4139_crf_10_ss_00_t_20.0,-0.041902005672454834
213
+ Gaming_2160P-416f_crf_10_ss_00_t_20.0,-0.038012780249118805
214
+ Gaming_2160P-4258_crf_10_ss_00_t_20.0,-0.06323865801095963
215
+ Gaming_2160P-5c33_crf_10_ss_00_t_20.0,-0.09164711833000183
216
+ Gaming_2160P-5c53_crf_10_ss_00_t_20.0,-0.028642484918236732
217
+ Gaming_2160P-673d_crf_10_ss_00_t_20.0,-0.054936934262514114
218
+ Gaming_2160P-67b0_crf_10_ss_00_t_20.0,-0.05077757313847542
219
+ Gaming_2160P-6bb6_crf_10_ss_00_t_20.0,-0.03535345941781998
220
+ Gaming_2160P-6cd8_crf_10_ss_00_t_20.0,-0.041903913021087646
221
+ Gaming_2160P-7e80_crf_10_ss_00_t_20.0,-0.06694229692220688
222
+ Gaming_2160P-7ff0_crf_10_ss_00_t_20.0,-0.06413456797599792
223
+ Gaming_360P-043e_crf_10_ss_00_t_20.0,-0.10368384420871735
224
+ Gaming_360P-0b98_crf_10_ss_00_t_20.0,-0.08514823019504547
225
+ Gaming_360P-187a_crf_10_ss_00_t_20.0,-0.07621865719556808
226
+ Gaming_360P-215f_crf_10_ss_00_t_20.0,-0.09127459675073624
227
+ Gaming_360P-2164_crf_10_ss_00_t_20.0,-0.08667855709791183
228
+ Gaming_360P-21d2_crf_10_ss_00_t_20.0,-0.14531159400939941
229
+ Gaming_360P-2330_crf_10_ss_00_t_20.0,-0.11598198860883713
230
+ Gaming_360P-279f_crf_10_ss_00_t_20.0,-0.10058321803808212
231
+ Gaming_360P-2f99_crf_10_ss_00_t_20.0,-0.09041974693536758
232
+ Gaming_360P-3794_crf_10_ss_00_t_20.0,-0.1380833387374878
233
+ Gaming_360P-3eb6_crf_10_ss_00_t_20.0,-0.09567295014858246
234
+ Gaming_360P-48b0_crf_10_ss_00_t_20.0,-0.09685663878917694
235
+ Gaming_360P-4f09_crf_10_ss_00_t_20.0,-0.08379771560430527
236
+ Gaming_360P-56fe_crf_10_ss_00_t_20.0,-0.10674498230218887
237
+ Gaming_360P-586d_crf_10_ss_00_t_20.0,-0.08914891630411148
238
+ Gaming_360P-5e0f_crf_10_ss_00_t_20.0,-0.11100554466247559
239
+ Gaming_360P-6207_crf_10_ss_00_t_20.0,-0.09004237502813339
240
+ Gaming_360P-63e6_crf_10_ss_00_t_20.0,-0.10189935564994812
241
+ Gaming_360P-73c7_crf_10_ss_00_t_20.0,-0.07517961412668228
242
+ Gaming_360P-7975_crf_10_ss_00_t_20.0,-0.10539691895246506
243
+ Gaming_360P-7acb_crf_10_ss_00_t_20.0,-0.1008220836520195
244
+ Gaming_480P-0109_crf_10_ss_00_t_20.0,-0.10902346670627594
245
+ Gaming_480P-062e_crf_10_ss_00_t_20.0,-0.0765029788017273
246
+ Gaming_480P-09ab_crf_10_ss_00_t_20.0,-0.0612991563975811
247
+ Gaming_480P-0a03_crf_10_ss_00_t_20.0,-0.10250545293092728
248
+ Gaming_480P-0d23_crf_10_ss_00_t_20.0,-0.0776696428656578
249
+ Gaming_480P-0dbc_crf_10_ss_00_t_20.0,-0.12971819937229156
250
+ Gaming_480P-14fc_crf_10_ss_00_t_20.0,-0.07527992129325867
251
+ Gaming_480P-1542_crf_10_ss_00_t_20.0,-0.09007574617862701
252
+ Gaming_480P-20ca_crf_10_ss_00_t_20.0,-0.10912303626537323
253
+ Gaming_480P-3a44_crf_10_ss_00_t_20.0,-0.09123226255178452
254
+ Gaming_480P-445b_crf_10_ss_00_t_20.0,-0.06571101397275925
255
+ Gaming_480P-4560_crf_10_ss_00_t_20.0,-0.06517117470502853
256
+ Gaming_480P-5a5a_crf_10_ss_00_t_20.0,-0.09107192605733871
257
+ Gaming_480P-61ee_crf_10_ss_00_t_20.0,-0.06771668046712875
258
+ Gaming_480P-626a_crf_10_ss_00_t_20.0,-0.07837063819169998
259
+ Gaming_480P-6491_crf_10_ss_00_t_20.0,-0.10173607617616653
260
+ Gaming_480P-6548_crf_10_ss_00_t_20.0,-0.09744024276733398
261
+ Gaming_480P-6a5a_crf_10_ss_00_t_20.0,-0.08682490140199661
262
+ Gaming_480P-6c92_crf_10_ss_00_t_20.0,-0.11067412048578262
263
+ Gaming_480P-6cdc_crf_10_ss_00_t_20.0,-0.10628172755241394
264
+ Gaming_480P-6d1e_crf_10_ss_00_t_20.0,-0.11138766258955002
265
+ Gaming_480P-6f4b_crf_10_ss_00_t_20.0,-0.06786081194877625
266
+ Gaming_480P-75f7_crf_10_ss_00_t_20.0,-0.11030260473489761
267
+ Gaming_480P-7893_crf_10_ss_00_t_20.0,-0.08292756229639053
268
+ Gaming_480P-7a08_crf_10_ss_00_t_20.0,-0.08155984431505203
269
+ Gaming_480P-7ccb_crf_10_ss_00_t_20.0,-0.06332440674304962
270
+ Gaming_480P-7e76_crf_10_ss_00_t_20.0,-0.10446041077375412
271
+ Gaming_720P-0fba_crf_10_ss_00_t_20.0,-0.051510993391275406
272
+ Gaming_720P-0fdb_crf_10_ss_00_t_20.0,-0.101472407579422
273
+ Gaming_720P-1035_crf_10_ss_00_t_20.0,-0.07182563841342926
274
+ Gaming_720P-103a_crf_10_ss_00_t_20.0,-0.04964425042271614
275
+ Gaming_720P-1cbb_crf_10_ss_00_t_20.0,-0.0622011162340641
276
+ Gaming_720P-221d_crf_10_ss_00_t_20.0,-0.06932487338781357
277
+ Gaming_720P-25aa_crf_10_ss_00_t_20.0,-0.0811026319861412
278
+ Gaming_720P-2dbe_crf_10_ss_00_t_20.0,-0.07145465165376663
279
+ Gaming_720P-312f_crf_10_ss_00_t_20.0,-0.07015828788280487
280
+ Gaming_720P-324d_crf_10_ss_00_t_20.0,-0.07965587079524994
281
+ Gaming_720P-3524_crf_10_ss_00_t_20.0,-0.08193118870258331
282
+ Gaming_720P-40b2_crf_10_ss_00_t_20.0,-0.0648970901966095
283
+ Gaming_720P-469a_crf_10_ss_00_t_20.0,-0.05873320996761322
284
+ Gaming_720P-4813_crf_10_ss_00_t_20.0,-0.05723142623901367
285
+ Gaming_720P-493e_crf_10_ss_00_t_20.0,-0.09768914431333542
286
+ Gaming_720P-4cda_crf_10_ss_00_t_20.0,-0.07851817458868027
287
+ Gaming_720P-5973_crf_10_ss_00_t_20.0,-0.047351572662591934
288
+ Gaming_720P-5ba2_crf_10_ss_00_t_20.0,-0.05451999977231026
289
+ Gaming_720P-6403_crf_10_ss_00_t_20.0,-0.05493704229593277
290
+ Gaming_720P-64b0_crf_10_ss_00_t_20.0,-0.04097341373562813
291
+ Gaming_720P-6625_crf_10_ss_00_t_20.0,-0.06593277305364609
292
+ Gaming_720P-6658_crf_10_ss_00_t_20.0,-0.07149481028318405
293
+ Gaming_720P-6a45_crf_10_ss_00_t_20.0,-0.053325995802879333
294
+ Gaming_720P-7afd_crf_10_ss_00_t_20.0,-0.07986579090356827
295
+ HDR_1080P-0d31_crf_10_ss_00_t_20.0,-0.0567946583032608
296
+ HDR_1080P-13eb_crf_10_ss_00_t_20.0,-0.044356588274240494
297
+ HDR_1080P-1be2_crf_10_ss_00_t_20.0,-0.06807783991098404
298
+ HDR_1080P-1e5b_crf_10_ss_00_t_20.0,-0.1193326786160469
299
+ HDR_1080P-206d_crf_10_ss_00_t_20.0,-0.049841832369565964
300
+ HDR_1080P-282a_crf_10_ss_00_t_20.0,-0.07595545798540115
301
+ HDR_1080P-2d32_crf_10_ss_00_t_20.0,-0.045699745416641235
302
+ HDR_1080P-3181_crf_10_ss_00_t_20.0,-0.08078351616859436
303
+ HDR_1080P-33e3_crf_10_ss_00_t_20.0,-0.05427059158682823
304
+ HDR_1080P-3521_crf_10_ss_00_t_20.0,-0.0342622846364975
305
+ HDR_1080P-35f4_crf_10_ss_00_t_20.0,-0.05506308004260063
306
+ HDR_1080P-3749_crf_10_ss_00_t_20.0,-0.04814840853214264
307
+ HDR_1080P-3a4a_crf_10_ss_00_t_20.0,-0.08120965212583542
308
+ HDR_1080P-46a4_crf_10_ss_00_t_20.0,-0.08182384818792343
309
+ HDR_1080P-49d6_crf_10_ss_00_t_20.0,-0.04188426211476326
310
+ HDR_1080P-4f4a_crf_10_ss_00_t_20.0,-0.05799344554543495
311
+ HDR_1080P-548b_crf_10_ss_00_t_20.0,-0.060420580208301544
312
+ HDR_1080P-549e_crf_10_ss_00_t_20.0,-0.048315178602933884
313
+ HDR_1080P-55c4_crf_10_ss_00_t_20.0,-0.05854083225131035
314
+ HDR_1080P-601b_crf_10_ss_00_t_20.0,-0.0718514695763588
315
+ HDR_1080P-687e_crf_10_ss_00_t_20.0,-0.0909162387251854
316
+ HDR_1080P-68c8_crf_10_ss_00_t_20.0,-0.06654845178127289
317
+ HDR_1080P-69de_crf_10_ss_00_t_20.0,-0.050381988286972046
318
+ HDR_1080P-6eb7_crf_10_ss_00_t_20.0,-0.04295944422483444
319
+ HDR_1080P-7825_crf_10_ss_00_t_20.0,-0.03944491595029831
320
+ HDR_2160P-06ae_crf_10_ss_00_t_20.0,-0.03591693192720413
321
+ HDR_2160P-0e7a_crf_10_ss_00_t_20.0,-0.07530595362186432
322
+ HDR_2160P-15e2_crf_10_ss_00_t_20.0,-0.018101762980222702
323
+ HDR_2160P-1743_crf_10_ss_00_t_20.0,-0.06950803101062775
324
+ HDR_2160P-1e9e_crf_10_ss_00_t_20.0,-0.056060779839754105
325
+ HDR_2160P-2a72_crf_10_ss_00_t_20.0,-0.034899260848760605
326
+ HDR_2160P-351f_crf_10_ss_00_t_20.0,-0.057695284485816956
327
+ HDR_2160P-3663_crf_10_ss_00_t_20.0,-0.04240267351269722
328
+ HDR_2160P-382f_crf_10_ss_00_t_20.0,-0.06235405430197716
329
+ HDR_2160P-40ab_crf_10_ss_00_t_20.0,-0.05682375282049179
330
+ HDR_2160P-4348_crf_10_ss_00_t_20.0,-0.0631788894534111
331
+ HDR_2160P-4581_crf_10_ss_00_t_20.0,-0.06642206013202667
332
+ HDR_2160P-4dcd_crf_10_ss_00_t_20.0,-0.06052534282207489
333
+ HDR_2160P-51ea_crf_10_ss_00_t_20.0,-0.06284959614276886
334
+ HDR_2160P-5275_crf_10_ss_00_t_20.0,-0.03917962685227394
335
+ HDR_2160P-5926_crf_10_ss_00_t_20.0,-0.054384294897317886
336
+ HDR_2160P-5c86_crf_10_ss_00_t_20.0,-0.05458155646920204
337
+ HDR_2160P-5cdf_crf_10_ss_00_t_20.0,-0.06300418823957443
338
+ HDR_2160P-5e25_crf_10_ss_00_t_20.0,-0.05410509556531906
339
+ HDR_2160P-664d_crf_10_ss_00_t_20.0,-0.06829101592302322
340
+ HDR_2160P-6c6e_crf_10_ss_00_t_20.0,-0.05979285016655922
341
+ HDR_2160P-6ed1_crf_10_ss_00_t_20.0,-0.0452788807451725
342
+ HDR_2160P-6eeb_crf_10_ss_00_t_20.0,-0.07091744244098663
343
+ HDR_2160P-6fa4_crf_10_ss_00_t_20.0,-0.07192394882440567
344
+ HDR_2160P-6fab_crf_10_ss_00_t_20.0,-0.07088816165924072
345
+ HDR_2160P-70ca_crf_10_ss_00_t_20.0,-0.06846805661916733
346
+ HowTo_1080P-0267_crf_10_ss_00_t_20.0,-0.06961660087108612
347
+ HowTo_1080P-03fd_crf_10_ss_00_t_20.0,-0.07824644446372986
348
+ HowTo_1080P-13aa_crf_10_ss_00_t_20.0,-0.05630935728549957
349
+ HowTo_1080P-1f3b_crf_10_ss_00_t_20.0,-0.05461994186043739
350
+ HowTo_1080P-36a9_crf_10_ss_00_t_20.0,-0.05907255411148071
351
+ HowTo_1080P-4d7b_crf_10_ss_00_t_20.0,-0.05946722626686096
352
+ HowTo_1080P-52bb_crf_10_ss_00_t_20.0,-0.057594988495111465
353
+ HowTo_1080P-55d1_crf_10_ss_00_t_20.0,-0.046491838991642
354
+ HowTo_1080P-63e4_crf_10_ss_00_t_20.0,-0.061009813100099564
355
+ HowTo_1080P-63ec_crf_10_ss_00_t_20.0,-0.04019956663250923
356
+ HowTo_1080P-64f7_crf_10_ss_00_t_20.0,-0.07205615192651749
357
+ HowTo_1080P-6cbf_crf_10_ss_00_t_20.0,-0.09119231253862381
358
+ HowTo_1080P-7399_crf_10_ss_00_t_20.0,-0.05560683831572533
359
+ HowTo_1080P-763c_crf_10_ss_00_t_20.0,-0.0451107919216156
360
+ HowTo_1080P-7cf2_crf_10_ss_00_t_20.0,-0.07995515316724777
361
+ HowTo_1080P-7f18_crf_10_ss_00_t_20.0,-0.0666775181889534
362
+ HowTo_1080P-7f4c_crf_10_ss_00_t_20.0,-0.06365123391151428
363
+ HowTo_360P-041c_crf_10_ss_00_t_20.0,-0.0856144055724144
364
+ HowTo_360P-0562_crf_10_ss_00_t_20.0,-0.08318458497524261
365
+ HowTo_360P-06be_crf_10_ss_00_t_20.0,-0.09841185063123703
366
+ HowTo_360P-09f8_crf_10_ss_00_t_20.0,-0.0824221670627594
367
+ HowTo_360P-127f_crf_10_ss_00_t_20.0,-0.08690743893384933
368
+ HowTo_360P-1823_crf_10_ss_00_t_20.0,-0.09294774383306503
369
+ HowTo_360P-18e7_crf_10_ss_00_t_20.0,-0.08526472747325897
370
+ HowTo_360P-1dba_crf_10_ss_00_t_20.0,-0.13723106682300568
371
+ HowTo_360P-2074_crf_10_ss_00_t_20.0,-0.08885840326547623
372
+ HowTo_360P-2a3b_crf_10_ss_00_t_20.0,-0.10983529686927795
373
+ HowTo_360P-2d35_crf_10_ss_00_t_20.0,-0.08481305092573166
374
+ HowTo_360P-2fd5_crf_10_ss_00_t_20.0,-0.13040105998516083
375
+ HowTo_360P-3aa6_crf_10_ss_00_t_20.0,-0.09161843359470367
376
+ HowTo_360P-4276_crf_10_ss_00_t_20.0,-0.08976635336875916
377
+ HowTo_360P-4e4c_crf_10_ss_00_t_20.0,-0.11343222856521606
378
+ HowTo_360P-55e9_crf_10_ss_00_t_20.0,-0.08997707068920135
379
+ HowTo_360P-5da7_crf_10_ss_00_t_20.0,-0.07418052107095718
380
+ HowTo_360P-6093_crf_10_ss_00_t_20.0,-0.08974560350179672
381
+ HowTo_360P-6a0e_crf_10_ss_00_t_20.0,-0.10987547785043716
382
+ HowTo_360P-7083_crf_10_ss_00_t_20.0,-0.11208495497703552
383
+ HowTo_360P-7dcd_crf_10_ss_00_t_20.0,-0.09028427302837372
384
+ HowTo_360P-7fb1_crf_10_ss_00_t_20.0,-0.09182858467102051
385
+ HowTo_480P-04f1_crf_10_ss_00_t_20.0,-0.09228219091892242
386
+ HowTo_480P-0cb3_crf_10_ss_00_t_20.0,-0.07050212472677231
387
+ HowTo_480P-0d00_crf_10_ss_00_t_20.0,-0.06971175223588943
388
+ HowTo_480P-0eb3_crf_10_ss_00_t_20.0,-0.11178969591856003
389
+ HowTo_480P-118d_crf_10_ss_00_t_20.0,-0.11609318852424622
390
+ HowTo_480P-15c1_crf_10_ss_00_t_20.0,-0.08840068429708481
391
+ HowTo_480P-221e_crf_10_ss_00_t_20.0,-0.08976888656616211
392
+ HowTo_480P-2610_crf_10_ss_00_t_20.0,-0.10325989872217178
393
+ HowTo_480P-32c9_crf_10_ss_00_t_20.0,-0.10787874460220337
394
+ HowTo_480P-3435_crf_10_ss_00_t_20.0,-0.08477158099412918
395
+ HowTo_480P-470b_crf_10_ss_00_t_20.0,-0.07783200591802597
396
+ HowTo_480P-48ac_crf_10_ss_00_t_20.0,-0.11005430668592453
397
+ HowTo_480P-4948_crf_10_ss_00_t_20.0,-0.10809356719255447
398
+ HowTo_480P-4a28_crf_10_ss_00_t_20.0,-0.0936184749007225
399
+ HowTo_480P-4b6a_crf_10_ss_00_t_20.0,-0.10530833899974823
400
+ HowTo_480P-4c99_crf_10_ss_00_t_20.0,-0.08957914263010025
401
+ HowTo_480P-56a5_crf_10_ss_00_t_20.0,-0.061664048582315445
402
+ HowTo_480P-60b3_crf_10_ss_00_t_20.0,-0.08045721054077148
403
+ HowTo_480P-63a2_crf_10_ss_00_t_20.0,-0.08095094561576843
404
+ HowTo_480P-64a2_crf_10_ss_00_t_20.0,-0.08775908499956131
405
+ HowTo_480P-7579_crf_10_ss_00_t_20.0,-0.058294877409935
406
+ HowTo_480P-7c11_crf_10_ss_00_t_20.0,-0.09666146337985992
407
+ HowTo_720P-017a_crf_10_ss_00_t_20.0,-0.05874047428369522
408
+ HowTo_720P-06eb_crf_10_ss_00_t_20.0,-0.04629138112068176
409
+ HowTo_720P-0a67_crf_10_ss_00_t_20.0,-0.038445957005023956
410
+ HowTo_720P-0b01_crf_10_ss_00_t_20.0,-0.053800638765096664
411
+ HowTo_720P-0c47_crf_10_ss_00_t_20.0,-0.061680763959884644
412
+ HowTo_720P-111e_crf_10_ss_00_t_20.0,-0.07090111076831818
413
+ HowTo_720P-12f7_crf_10_ss_00_t_20.0,-0.07949711382389069
414
+ HowTo_720P-21c6_crf_10_ss_00_t_20.0,-0.09150124341249466
415
+ HowTo_720P-269e_crf_10_ss_00_t_20.0,-0.06799675524234772
416
+ HowTo_720P-2cc6_crf_10_ss_00_t_20.0,-0.09336936473846436
417
+ HowTo_720P-37d0_crf_10_ss_00_t_20.0,-0.05144023150205612
418
+ HowTo_720P-3813_crf_10_ss_00_t_20.0,-0.09345775842666626
419
+ HowTo_720P-3a5d_crf_10_ss_00_t_20.0,-0.0970960333943367
420
+ HowTo_720P-479b_crf_10_ss_00_t_20.0,-0.0767388716340065
421
+ HowTo_720P-483c_crf_10_ss_00_t_20.0,-0.07091736048460007
422
+ HowTo_720P-4d55_crf_10_ss_00_t_20.0,-0.054060228168964386
423
+ HowTo_720P-4d9e_crf_10_ss_00_t_20.0,-0.07131541520357132
424
+ HowTo_720P-6323_crf_10_ss_00_t_20.0,-0.07234581559896469
425
+ HowTo_720P-6791_crf_10_ss_00_t_20.0,-0.10768799483776093
426
+ HowTo_720P-7782_crf_10_ss_00_t_20.0,-0.07938367873430252
427
+ HowTo_720P-7878_crf_10_ss_00_t_20.0,-0.07139940559864044
428
+ HowTo_720P-7c38_crf_10_ss_00_t_20.0,-0.05010133609175682
429
+ Lecture_1080P-011f_crf_10_ss_00_t_20.0,-0.09228116273880005
430
+ Lecture_1080P-0201_crf_10_ss_00_t_20.0,-0.07205726951360703
431
+ Lecture_1080P-0c8a_crf_10_ss_00_t_20.0,-0.03148633614182472
432
+ Lecture_1080P-1709_crf_10_ss_00_t_20.0,-0.05992235988378525
433
+ Lecture_1080P-1969_crf_10_ss_00_t_20.0,-0.06234784051775932
434
+ Lecture_360P-03bc_crf_10_ss_00_t_20.0,-0.09247639775276184
435
+ Lecture_360P-051a_crf_10_ss_00_t_20.0,-0.1056048721075058
436
+ Lecture_360P-114f_crf_10_ss_00_t_20.0,-0.04838935658335686
437
+ Lecture_360P-20c3_crf_10_ss_00_t_20.0,-0.11005476862192154
438
+ Lecture_360P-2276_crf_10_ss_00_t_20.0,-0.07489614188671112
439
+ Lecture_360P-27db_crf_10_ss_00_t_20.0,-0.09448637068271637
440
+ Lecture_360P-2c55_crf_10_ss_00_t_20.0,-0.09902380406856537
441
+ Lecture_360P-2d1f_crf_10_ss_00_t_20.0,-0.07663983106613159
442
+ Lecture_360P-30eb_crf_10_ss_00_t_20.0,-0.1029062271118164
443
+ Lecture_360P-311d_crf_10_ss_00_t_20.0,-0.07395055145025253
444
+ Lecture_360P-3590_crf_10_ss_00_t_20.0,-0.06512583047151566
445
+ Lecture_360P-44c2_crf_10_ss_00_t_20.0,-0.0897340252995491
446
+ Lecture_360P-4bb4_crf_10_ss_00_t_20.0,-0.06991095095872879
447
+ Lecture_360P-4f00_crf_10_ss_00_t_20.0,-0.10427376627922058
448
+ Lecture_360P-506c_crf_10_ss_00_t_20.0,-0.1032712310552597
449
+ Lecture_360P-5594_crf_10_ss_00_t_20.0,-0.0815369114279747
450
+ Lecture_360P-5779_crf_10_ss_00_t_20.0,-0.09158068150281906
451
+ Lecture_360P-5aea_crf_10_ss_00_t_20.0,-0.0900549590587616
452
+ Lecture_360P-5d0a_crf_10_ss_00_t_20.0,-0.09709011018276215
453
+ Lecture_360P-6656_crf_10_ss_00_t_20.0,-0.09512952715158463
454
+ Lecture_360P-6d29_crf_10_ss_00_t_20.0,-0.10072316974401474
455
+ Lecture_360P-7550_crf_10_ss_00_t_20.0,-0.09206036478281021
456
+ Lecture_360P-7a57_crf_10_ss_00_t_20.0,-0.0972306877374649
457
+ Lecture_360P-7f7e_crf_10_ss_00_t_20.0,-0.07300402224063873
458
+ Lecture_480P-02f2_crf_10_ss_00_t_20.0,-0.09813155233860016
459
+ Lecture_480P-11df_crf_10_ss_00_t_20.0,-0.0964021161198616
460
+ Lecture_480P-181a_crf_10_ss_00_t_20.0,-0.1292239874601364
461
+ Lecture_480P-1ec3_crf_10_ss_00_t_20.0,-0.09691576659679413
462
+ Lecture_480P-2513_crf_10_ss_00_t_20.0,-0.13602416217327118
463
+ Lecture_480P-2655_crf_10_ss_00_t_20.0,-0.1047496646642685
464
+ Lecture_480P-2ed0_crf_10_ss_00_t_20.0,-0.10836686193943024
465
+ Lecture_480P-369f_crf_10_ss_00_t_20.0,-0.043122440576553345
466
+ Lecture_480P-3bdc_crf_10_ss_00_t_20.0,-0.09772923588752747
467
+ Lecture_480P-41b7_crf_10_ss_00_t_20.0,-0.0730024054646492
468
+ Lecture_480P-4272_crf_10_ss_00_t_20.0,-0.07705488801002502
469
+ Lecture_480P-42c3_crf_10_ss_00_t_20.0,-0.07465606927871704
470
+ Lecture_480P-4bc3_crf_10_ss_00_t_20.0,-0.0645408108830452
471
+ Lecture_480P-4c86_crf_10_ss_00_t_20.0,-0.09973154217004776
472
+ Lecture_480P-5aee_crf_10_ss_00_t_20.0,-0.11944472044706345
473
+ Lecture_480P-5cd7_crf_10_ss_00_t_20.0,-0.062033671885728836
474
+ Lecture_480P-5f3a_crf_10_ss_00_t_20.0,-0.12219095975160599
475
+ Lecture_480P-6191_crf_10_ss_00_t_20.0,-0.0920351892709732
476
+ Lecture_480P-6b1e_crf_10_ss_00_t_20.0,-0.08200515061616898
477
+ Lecture_480P-71c0_crf_10_ss_00_t_20.0,-0.08970896899700165
478
+ Lecture_480P-71d6_crf_10_ss_00_t_20.0,-0.08850354701280594
479
+ Lecture_480P-7205_crf_10_ss_00_t_20.0,-0.08584712445735931
480
+ Lecture_480P-73f6_crf_10_ss_00_t_20.0,-0.08649875223636627
481
+ Lecture_480P-74cf_crf_10_ss_00_t_20.0,-0.09077247977256775
482
+ Lecture_480P-74ea_crf_10_ss_00_t_20.0,-0.08278150856494904
483
+ Lecture_480P-7d77_crf_10_ss_00_t_20.0,-0.0739847794175148
484
+ Lecture_480P-7e55_crf_10_ss_00_t_20.0,-0.0870862826704979
485
+ Lecture_480P-7eec_crf_10_ss_00_t_20.0,-0.09664880484342575
486
+ Lecture_720P-003a_crf_10_ss_00_t_20.0,-0.06503316760063171
487
+ Lecture_720P-07e0_crf_10_ss_00_t_20.0,-0.05994714796543121
488
+ Lecture_720P-094d_crf_10_ss_00_t_20.0,-0.08136925101280212
489
+ Lecture_720P-0f64_crf_10_ss_00_t_20.0,-0.08195537328720093
490
+ Lecture_720P-1033_crf_10_ss_00_t_20.0,-0.07131850719451904
491
+ Lecture_720P-10bc_crf_10_ss_00_t_20.0,-0.09094715863466263
492
+ Lecture_720P-11e7_crf_10_ss_00_t_20.0,-0.11991934478282928
493
+ Lecture_720P-1e62_crf_10_ss_00_t_20.0,-0.07287637144327164
494
+ Lecture_720P-1f22_crf_10_ss_00_t_20.0,-0.06637565046548843
495
+ Lecture_720P-2442_crf_10_ss_00_t_20.0,-0.08166459947824478
496
+ Lecture_720P-2b0f_crf_10_ss_00_t_20.0,-0.06366002559661865
497
+ Lecture_720P-2f38_crf_10_ss_00_t_20.0,-0.076473169028759
498
+ Lecture_720P-2f8c_crf_10_ss_00_t_20.0,-0.06257688999176025
499
+ Lecture_720P-3b7f_crf_10_ss_00_t_20.0,-0.05716538801789284
500
+ Lecture_720P-3f9f_crf_10_ss_00_t_20.0,-0.07405082881450653
501
+ Lecture_720P-4c87_crf_10_ss_00_t_20.0,-0.05664864182472229
502
+ Lecture_720P-50b9_crf_10_ss_00_t_20.0,-0.06188584491610527
503
+ Lecture_720P-5120_crf_10_ss_00_t_20.0,-0.05315875634551048
504
+ Lecture_720P-53a1_crf_10_ss_00_t_20.0,-0.07177349179983139
505
+ Lecture_720P-5725_crf_10_ss_00_t_20.0,-0.0577726885676384
506
+ Lecture_720P-5c7e_crf_10_ss_00_t_20.0,-0.07439786940813065
507
+ Lecture_720P-6016_crf_10_ss_00_t_20.0,-0.08207079768180847
508
+ Lecture_720P-6951_crf_10_ss_00_t_20.0,-0.04747029393911362
509
+ Lecture_720P-7189_crf_10_ss_00_t_20.0,-0.05316662788391113
510
+ Lecture_720P-7dcf_crf_10_ss_00_t_20.0,-0.05985037982463837
511
+ Lecture_720P-7e40_crf_10_ss_00_t_20.0,-0.05466729402542114
512
+ LiveMusic_1080P-14af_crf_10_ss_00_t_20.0,-0.04892686381936073
513
+ LiveMusic_1080P-157b_crf_10_ss_00_t_20.0,-0.06346017122268677
514
+ LiveMusic_1080P-1ace_crf_10_ss_00_t_20.0,-0.049145955592393875
515
+ LiveMusic_1080P-21dd_crf_10_ss_00_t_20.0,-0.07355327159166336
516
+ LiveMusic_1080P-28fe_crf_10_ss_00_t_20.0,-0.09000479429960251
517
+ LiveMusic_1080P-2930_crf_10_ss_00_t_20.0,-0.06755558401346207
518
+ LiveMusic_1080P-2b7a_crf_10_ss_00_t_20.0,-0.0637904554605484
519
+ LiveMusic_1080P-2f7f_crf_10_ss_00_t_20.0,-0.07498812675476074
520
+ LiveMusic_1080P-3549_crf_10_ss_00_t_20.0,-0.04192974418401718
521
+ LiveMusic_1080P-3f95_crf_10_ss_00_t_20.0,-0.05315537750720978
522
+ LiveMusic_1080P-48d5_crf_10_ss_00_t_20.0,-0.049214884638786316
523
+ LiveMusic_1080P-51f6_crf_10_ss_00_t_20.0,-0.074282206594944
524
+ LiveMusic_1080P-541f_crf_10_ss_00_t_20.0,-0.06487901508808136
525
+ LiveMusic_1080P-59b3_crf_10_ss_00_t_20.0,-0.06799662113189697
526
+ LiveMusic_1080P-6b1c_crf_10_ss_00_t_20.0,-0.06795714795589447
527
+ LiveMusic_1080P-6bbe_crf_10_ss_00_t_20.0,-0.06332866847515106
528
+ LiveMusic_1080P-6d1a_crf_10_ss_00_t_20.0,-0.07643794268369675
529
+ LiveMusic_1080P-6fe2_crf_10_ss_00_t_20.0,-0.0818888396024704
530
+ LiveMusic_1080P-77e8_crf_10_ss_00_t_20.0,-0.09462199360132217
531
+ LiveMusic_1080P-7948_crf_10_ss_00_t_20.0,-0.09343747794628143
532
+ LiveMusic_1080P-7ead_crf_10_ss_00_t_20.0,-0.07664123177528381
533
+ LiveMusic_360P-121f_crf_10_ss_00_t_20.0,-0.08702792227268219
534
+ LiveMusic_360P-1d94_crf_10_ss_00_t_20.0,-0.10140907019376755
535
+ LiveMusic_360P-22c5_crf_10_ss_00_t_20.0,-0.0767025500535965
536
+ LiveMusic_360P-2508_crf_10_ss_00_t_20.0,-0.08559916913509369
537
+ LiveMusic_360P-265c_crf_10_ss_00_t_20.0,-0.12334825843572617
538
+ LiveMusic_360P-2b0f_crf_10_ss_00_t_20.0,-0.08878219872713089
539
+ LiveMusic_360P-3979_crf_10_ss_00_t_20.0,-0.12494182586669922
540
+ LiveMusic_360P-3b96_crf_10_ss_00_t_20.0,-0.10371756553649902
541
+ LiveMusic_360P-3be0_crf_10_ss_00_t_20.0,-0.13083049654960632
542
+ LiveMusic_360P-48d5_crf_10_ss_00_t_20.0,-0.09014280140399933
543
+ LiveMusic_360P-5281_crf_10_ss_00_t_20.0,-0.07439452409744263
544
+ LiveMusic_360P-54d0_crf_10_ss_00_t_20.0,-0.08282201737165451
545
+ LiveMusic_360P-5b57_crf_10_ss_00_t_20.0,-0.11253371834754944
546
+ LiveMusic_360P-6266_crf_10_ss_00_t_20.0,-0.08750765770673752
547
+ LiveMusic_360P-6640_crf_10_ss_00_t_20.0,-0.10043521225452423
548
+ LiveMusic_360P-6a65_crf_10_ss_00_t_20.0,-0.1430293172597885
549
+ LiveMusic_360P-7483_crf_10_ss_00_t_20.0,-0.09899198263883591
550
+ LiveMusic_480P-0638_crf_10_ss_00_t_20.0,-0.09173138439655304
551
+ LiveMusic_480P-1a91_crf_10_ss_00_t_20.0,-0.09622896462678909
552
+ LiveMusic_480P-2019_crf_10_ss_00_t_20.0,-0.08203504234552383
553
+ LiveMusic_480P-2a5e_crf_10_ss_00_t_20.0,-0.10253886878490448
554
+ LiveMusic_480P-34be_crf_10_ss_00_t_20.0,-0.06782234460115433
555
+ LiveMusic_480P-38f3_crf_10_ss_00_t_20.0,-0.1080184131860733
556
+ LiveMusic_480P-3d03_crf_10_ss_00_t_20.0,-0.10804114490747452
557
+ LiveMusic_480P-459c_crf_10_ss_00_t_20.0,-0.11217677593231201
558
+ LiveMusic_480P-474a_crf_10_ss_00_t_20.0,-0.1322542130947113
559
+ LiveMusic_480P-4c3a_crf_10_ss_00_t_20.0,-0.11094804108142853
560
+ LiveMusic_480P-4f88_crf_10_ss_00_t_20.0,-0.08421457558870316
561
+ LiveMusic_480P-559d_crf_10_ss_00_t_20.0,-0.06952870637178421
562
+ LiveMusic_480P-58fb_crf_10_ss_00_t_20.0,-0.08085688203573227
563
+ LiveMusic_480P-61ef_crf_10_ss_00_t_20.0,-0.08724193274974823
564
+ LiveMusic_480P-6542_crf_10_ss_00_t_20.0,-0.09954749792814255
565
+ LiveMusic_480P-65ca_crf_10_ss_00_t_20.0,-0.06440546363592148
566
+ LiveMusic_720P-0cd5_crf_10_ss_00_t_20.0,-0.06625784188508987
567
+ LiveMusic_720P-0d9f_crf_10_ss_00_t_20.0,-0.08214495331048965
568
+ LiveMusic_720P-2620_crf_10_ss_00_t_20.0,-0.08618252724409103
569
+ LiveMusic_720P-267b_crf_10_ss_00_t_20.0,-0.07622360438108444
570
+ LiveMusic_720P-289b_crf_10_ss_00_t_20.0,-0.0972898006439209
571
+ LiveMusic_720P-3320_crf_10_ss_00_t_20.0,-0.08106020092964172
572
+ LiveMusic_720P-4ae2_crf_10_ss_00_t_20.0,-0.07553660124540329
573
+ LiveMusic_720P-58db_crf_10_ss_00_t_20.0,-0.06805187463760376
574
+ LiveMusic_720P-6343_crf_10_ss_00_t_20.0,-0.08420087397098541
575
+ LiveMusic_720P-6452_crf_10_ss_00_t_20.0,-0.09502771496772766
576
+ LiveMusic_720P-653e_crf_10_ss_00_t_20.0,-0.07917465269565582
577
+ LiveMusic_720P-65f6_crf_10_ss_00_t_20.0,-0.05180775001645088
578
+ LiveMusic_720P-66df_crf_10_ss_00_t_20.0,-0.03867135941982269
579
+ LiveMusic_720P-71c5_crf_10_ss_00_t_20.0,-0.07842615991830826
580
+ LyricVideo_1080P-0075_crf_10_ss_00_t_20.0,-0.07583567500114441
581
+ LyricVideo_1080P-0625_crf_10_ss_00_t_20.0,-0.06737231463193893
582
+ LyricVideo_1080P-16b6_crf_10_ss_00_t_20.0,-0.05494919791817665
583
+ LyricVideo_1080P-1b04_crf_10_ss_00_t_20.0,-0.06731889396905899
584
+ LyricVideo_1080P-1d75_crf_10_ss_00_t_20.0,-0.03541809320449829
585
+ LyricVideo_1080P-28e8_crf_10_ss_00_t_20.0,-0.10096742957830429
586
+ LyricVideo_1080P-2946_crf_10_ss_00_t_20.0,-0.05735919624567032
587
+ LyricVideo_1080P-3803_crf_10_ss_00_t_20.0,-0.046112850308418274
588
+ LyricVideo_1080P-41ee_crf_10_ss_00_t_20.0,-0.06981160491704941
589
+ LyricVideo_1080P-4b40_crf_10_ss_00_t_20.0,-0.08815492689609528
590
+ LyricVideo_1080P-5461_crf_10_ss_00_t_20.0,-0.07755658030509949
591
+ LyricVideo_1080P-584f_crf_10_ss_00_t_20.0,-0.07597006857395172
592
+ LyricVideo_1080P-63d4_crf_10_ss_00_t_20.0,-0.06361328810453415
593
+ LyricVideo_1080P-63d9_crf_10_ss_00_t_20.0,-0.06791254878044128
594
+ LyricVideo_1080P-725e_crf_10_ss_00_t_20.0,-0.03617117553949356
595
+ LyricVideo_1080P-756a_crf_10_ss_00_t_20.0,-0.06049901619553566
596
+ LyricVideo_360P-0ac7_crf_10_ss_00_t_20.0,-0.10741306841373444
597
+ LyricVideo_360P-17ce_crf_10_ss_00_t_20.0,-0.1273244172334671
598
+ LyricVideo_360P-3afc_crf_10_ss_00_t_20.0,-0.10749850422143936
599
+ LyricVideo_360P-5868_crf_10_ss_00_t_20.0,-0.09093884378671646
600
+ LyricVideo_360P-5e87_crf_10_ss_00_t_20.0,-0.08438759297132492
601
+ LyricVideo_480P-0a5b_crf_10_ss_00_t_20.0,-0.07541920244693756
602
+ LyricVideo_480P-0f72_crf_10_ss_00_t_20.0,-0.10732617229223251
603
+ LyricVideo_480P-1484_crf_10_ss_00_t_20.0,-0.07110483944416046
604
+ LyricVideo_480P-200a_crf_10_ss_00_t_20.0,-0.08208516240119934
605
+ LyricVideo_480P-2c50_crf_10_ss_00_t_20.0,-0.0897943377494812
606
+ LyricVideo_480P-3b2c_crf_10_ss_00_t_20.0,-0.08382449299097061
607
+ LyricVideo_480P-3ccf_crf_10_ss_00_t_20.0,-0.11046136170625687
608
+ LyricVideo_480P-4346_crf_10_ss_00_t_20.0,-0.08114362508058548
609
+ LyricVideo_480P-51e4_crf_10_ss_00_t_20.0,-0.09756302088499069
610
+ LyricVideo_480P-5c17_crf_10_ss_00_t_20.0,-0.07792769372463226
611
+ LyricVideo_480P-6fca_crf_10_ss_00_t_20.0,-0.1157589703798294
612
+ LyricVideo_480P-7919_crf_10_ss_00_t_20.0,-0.08800051361322403
613
+ LyricVideo_720P-068d_crf_10_ss_00_t_20.0,-0.07086571305990219
614
+ LyricVideo_720P-081c_crf_10_ss_00_t_20.0,-0.059207018464803696
615
+ LyricVideo_720P-0940_crf_10_ss_00_t_20.0,-0.08377772569656372
616
+ LyricVideo_720P-09ed_crf_10_ss_00_t_20.0,-0.06607721745967865
617
+ LyricVideo_720P-0ae4_crf_10_ss_00_t_20.0,-0.08310703188180923
618
+ LyricVideo_720P-1c89_crf_10_ss_00_t_20.0,-0.05151968076825142
619
+ LyricVideo_720P-2d24_crf_10_ss_00_t_20.0,-0.05359923467040062
620
+ LyricVideo_720P-36fb_crf_10_ss_00_t_20.0,-0.06530970335006714
621
+ LyricVideo_720P-4253_crf_10_ss_00_t_20.0,-0.05116945877671242
622
+ LyricVideo_720P-47a9_crf_10_ss_00_t_20.0,-0.0911167711019516
623
+ LyricVideo_720P-59ed_crf_10_ss_00_t_20.0,-0.035642340779304504
624
+ LyricVideo_720P-5d3a_crf_10_ss_00_t_20.0,-0.061992090195417404
625
+ LyricVideo_720P-6f0c_crf_10_ss_00_t_20.0,-0.08882137387990952
626
+ LyricVideo_720P-6fc9_crf_10_ss_00_t_20.0,-0.10480599850416183
627
+ LyricVideo_720P-7003_crf_10_ss_00_t_20.0,-0.09688834100961685
628
+ LyricVideo_720P-739a_crf_10_ss_00_t_20.0,-0.0952645093202591
629
+ LyricVideo_720P-74a0_crf_10_ss_00_t_20.0,-0.05913495272397995
630
+ LyricVideo_720P-7f44_crf_10_ss_00_t_20.0,-0.052997563034296036
631
+ MusicVideo_1080P-04b6_crf_10_ss_00_t_20.0,-0.05915818363428116
632
+ MusicVideo_1080P-0706_crf_10_ss_00_t_20.0,-0.07884944975376129
633
+ MusicVideo_1080P-0860_crf_10_ss_00_t_20.0,-0.06348846852779388
634
+ MusicVideo_1080P-106d_crf_10_ss_00_t_20.0,-0.08974476158618927
635
+ MusicVideo_1080P-16e6_crf_10_ss_00_t_20.0,-0.051499899476766586
636
+ MusicVideo_1080P-18f5_crf_10_ss_00_t_20.0,-0.08442116528749466
637
+ MusicVideo_1080P-1a53_crf_10_ss_00_t_20.0,-0.09499791264533997
638
+ MusicVideo_1080P-24f5_crf_10_ss_00_t_20.0,-0.0456007719039917
639
+ MusicVideo_1080P-2b2b_crf_10_ss_00_t_20.0,-0.061161816120147705
640
+ MusicVideo_1080P-2d1c_crf_10_ss_00_t_20.0,-0.06412308663129807
641
+ MusicVideo_1080P-34ff_crf_10_ss_00_t_20.0,-0.07331793010234833
642
+ MusicVideo_1080P-3a50_crf_10_ss_00_t_20.0,-0.09154526889324188
643
+ MusicVideo_1080P-453f_crf_10_ss_00_t_20.0,-0.06107740476727486
644
+ MusicVideo_1080P-4671_crf_10_ss_00_t_20.0,-0.10325060784816742
645
+ MusicVideo_1080P-4b61_crf_10_ss_00_t_20.0,-0.05705492943525314
646
+ MusicVideo_1080P-5072_crf_10_ss_00_t_20.0,-0.053408779203891754
647
+ MusicVideo_1080P-55af_crf_10_ss_00_t_20.0,-0.07807373255491257
648
+ MusicVideo_1080P-59c4_crf_10_ss_00_t_20.0,-0.06791108101606369
649
+ MusicVideo_1080P-6260_crf_10_ss_00_t_20.0,-0.07778412848711014
650
+ MusicVideo_1080P-65c6_crf_10_ss_00_t_20.0,-0.054009757936000824
651
+ MusicVideo_1080P-6c1d_crf_10_ss_00_t_20.0,-0.04650092497467995
652
+ MusicVideo_1080P-6c88_crf_10_ss_00_t_20.0,-0.08051209151744843
653
+ MusicVideo_1080P-6fb1_crf_10_ss_00_t_20.0,-0.05271652713418007
654
+ MusicVideo_1080P-7265_crf_10_ss_00_t_20.0,-0.0679616779088974
655
+ MusicVideo_1080P-7706_crf_10_ss_00_t_20.0,-0.09387293457984924
656
+ MusicVideo_1080P-7f2e_crf_10_ss_00_t_20.0,-0.07049337774515152
657
+ MusicVideo_360P-08cb_crf_10_ss_00_t_20.0,-0.10331125557422638
658
+ MusicVideo_360P-17e4_crf_10_ss_00_t_20.0,-0.10154877603054047
659
+ MusicVideo_360P-24b0_crf_10_ss_00_t_20.0,-0.085292749106884
660
+ MusicVideo_360P-2fcb_crf_10_ss_00_t_20.0,-0.07013121247291565
661
+ MusicVideo_360P-462f_crf_10_ss_00_t_20.0,-0.09174613654613495
662
+ MusicVideo_360P-4de7_crf_10_ss_00_t_20.0,-0.09697171300649643
663
+ MusicVideo_360P-5358_crf_10_ss_00_t_20.0,-0.09629902243614197
664
+ MusicVideo_360P-5578_crf_10_ss_00_t_20.0,-0.09285231679677963
665
+ MusicVideo_360P-5699_crf_10_ss_00_t_20.0,-0.0764136016368866
666
+ MusicVideo_360P-5f07_crf_10_ss_00_t_20.0,-0.09478157013654709
667
+ MusicVideo_360P-5f8d_crf_10_ss_00_t_20.0,-0.12077444791793823
668
+ MusicVideo_360P-648c_crf_10_ss_00_t_20.0,-0.10220366716384888
669
+ MusicVideo_360P-7b94_crf_10_ss_00_t_20.0,-0.12707945704460144
670
+ MusicVideo_480P-0448_crf_10_ss_00_t_20.0,-0.0719417929649353
671
+ MusicVideo_480P-12fb_crf_10_ss_00_t_20.0,-0.10129529237747192
672
+ MusicVideo_480P-184c_crf_10_ss_00_t_20.0,-0.073102205991745
673
+ MusicVideo_480P-1eee_crf_10_ss_00_t_20.0,-0.08699823170900345
674
+ MusicVideo_480P-2de0_crf_10_ss_00_t_20.0,-0.09355482459068298
675
+ MusicVideo_480P-3aa2_crf_10_ss_00_t_20.0,-0.11662108451128006
676
+ MusicVideo_480P-3c8b_crf_10_ss_00_t_20.0,-0.0925290435552597
677
+ MusicVideo_480P-41ce_crf_10_ss_00_t_20.0,-0.08345971256494522
678
+ MusicVideo_480P-483b_crf_10_ss_00_t_20.0,-0.13079947233200073
679
+ MusicVideo_480P-4cc8_crf_10_ss_00_t_20.0,-0.08882509917020798
680
+ MusicVideo_480P-5461_crf_10_ss_00_t_20.0,-0.06998638063669205
681
+ MusicVideo_480P-5830_crf_10_ss_00_t_20.0,-0.1006399616599083
682
+ MusicVideo_480P-6026_crf_10_ss_00_t_20.0,-0.11152658611536026
683
+ MusicVideo_480P-61ba_crf_10_ss_00_t_20.0,-0.13658250868320465
684
+ MusicVideo_480P-66b2_crf_10_ss_00_t_20.0,-0.09999097138643265
685
+ MusicVideo_480P-6fb6_crf_10_ss_00_t_20.0,-0.06653851270675659
686
+ MusicVideo_480P-7643_crf_10_ss_00_t_20.0,-0.08819538354873657
687
+ MusicVideo_480P-7955_crf_10_ss_00_t_20.0,-0.09617353975772858
688
+ MusicVideo_720P-0355_crf_10_ss_00_t_20.0,-0.11439111828804016
689
+ MusicVideo_720P-0752_crf_10_ss_00_t_20.0,-0.06823975592851639
690
+ MusicVideo_720P-14f0_crf_10_ss_00_t_20.0,-0.07986409217119217
691
+ MusicVideo_720P-2d7d_crf_10_ss_00_t_20.0,-0.10097812861204147
692
+ MusicVideo_720P-3698_crf_10_ss_00_t_20.0,-0.0499579980969429
693
+ MusicVideo_720P-3b11_crf_10_ss_00_t_20.0,-0.08971153944730759
694
+ MusicVideo_720P-3c4c_crf_10_ss_00_t_20.0,-0.058852773159742355
695
+ MusicVideo_720P-44c1_crf_10_ss_00_t_20.0,-0.06444056332111359
696
+ MusicVideo_720P-4895_crf_10_ss_00_t_20.0,-0.07573986053466797
697
+ MusicVideo_720P-4ad2_crf_10_ss_00_t_20.0,-0.06917529553174973
698
+ MusicVideo_720P-575d_crf_10_ss_00_t_20.0,-0.09711519628763199
699
+ MusicVideo_720P-5c9c_crf_10_ss_00_t_20.0,-0.11354601383209229
700
+ MusicVideo_720P-62df_crf_10_ss_00_t_20.0,-0.0638682097196579
701
+ MusicVideo_720P-734f_crf_10_ss_00_t_20.0,-0.06189991533756256
702
+ MusicVideo_720P-7501_crf_10_ss_00_t_20.0,-0.10760347545146942
703
+ MusicVideo_720P-7bcf_crf_10_ss_00_t_20.0,-0.07683815062046051
704
+ NewsClip_1080P-00c3_crf_10_ss_00_t_20.0,-0.05676335468888283
705
+ NewsClip_1080P-02fd_crf_10_ss_00_t_20.0,-0.03714045509696007
706
+ NewsClip_1080P-06df_crf_10_ss_00_t_20.0,-0.05038969963788986
707
+ NewsClip_1080P-0abf_crf_10_ss_00_t_20.0,-0.08700139075517654
708
+ NewsClip_1080P-1db0_crf_10_ss_00_t_20.0,-0.06534290313720703
709
+ NewsClip_1080P-22b3_crf_10_ss_00_t_20.0,-0.06694680452346802
710
+ NewsClip_1080P-27fb_crf_10_ss_00_t_20.0,-0.05347222089767456
711
+ NewsClip_1080P-2eb0_crf_10_ss_00_t_20.0,-0.03047085925936699
712
+ NewsClip_1080P-3427_crf_10_ss_00_t_20.0,-0.06512844562530518
713
+ NewsClip_1080P-3c7c_crf_10_ss_00_t_20.0,-0.03346092626452446
714
+ NewsClip_1080P-4241_crf_10_ss_00_t_20.0,-0.06095882132649422
715
+ NewsClip_1080P-48ae_crf_10_ss_00_t_20.0,-0.08613462746143341
716
+ NewsClip_1080P-5b53_crf_10_ss_00_t_20.0,-0.03745599836111069
717
+ NewsClip_1080P-5be1_crf_10_ss_00_t_20.0,-0.06551486253738403
718
+ NewsClip_1080P-632e_crf_10_ss_00_t_20.0,-0.07659096270799637
719
+ NewsClip_1080P-67dc_crf_10_ss_00_t_20.0,-0.06065726280212402
720
+ NewsClip_1080P-7816_crf_10_ss_00_t_20.0,-0.07582235336303711
721
+ NewsClip_360P-0376_crf_10_ss_00_t_20.0,-0.09991642832756042
722
+ NewsClip_360P-0c17_crf_10_ss_00_t_20.0,-0.09337036311626434
723
+ NewsClip_360P-0ff8_crf_10_ss_00_t_20.0,-0.08326005935668945
724
+ NewsClip_360P-1093_crf_10_ss_00_t_20.0,-0.10466565191745758
725
+ NewsClip_360P-12fc_crf_10_ss_00_t_20.0,-0.10295924544334412
726
+ NewsClip_360P-1b1c_crf_10_ss_00_t_20.0,-0.08764337003231049
727
+ NewsClip_360P-1e1c_crf_10_ss_00_t_20.0,-0.10467200726270676
728
+ NewsClip_360P-1eae_crf_10_ss_00_t_20.0,-0.10018274188041687
729
+ NewsClip_360P-22ce_crf_10_ss_00_t_20.0,-0.09794368594884872
730
+ NewsClip_360P-274e_crf_10_ss_00_t_20.0,-0.08871637284755707
731
+ NewsClip_360P-2986_crf_10_ss_00_t_20.0,-0.10707864165306091
732
+ NewsClip_360P-2c91_crf_10_ss_00_t_20.0,-0.1233665943145752
733
+ NewsClip_360P-311a_crf_10_ss_00_t_20.0,-0.11544366925954819
734
+ NewsClip_360P-3451_crf_10_ss_00_t_20.0,-0.1175609603524208
735
+ NewsClip_360P-4288_crf_10_ss_00_t_20.0,-0.08344312012195587
736
+ NewsClip_360P-439a_crf_10_ss_00_t_20.0,-0.09825251996517181
737
+ NewsClip_360P-4417_crf_10_ss_00_t_20.0,-0.10584958642721176
738
+ NewsClip_360P-5052_crf_10_ss_00_t_20.0,-0.11251091212034225
739
+ NewsClip_360P-5752_crf_10_ss_00_t_20.0,-0.0934700295329094
740
+ NewsClip_360P-5bcc_crf_10_ss_00_t_20.0,-0.10471972823143005
741
+ NewsClip_360P-5f3b_crf_10_ss_00_t_20.0,-0.1165405809879303
742
+ NewsClip_360P-66ae_crf_10_ss_00_t_20.0,-0.0982612818479538
743
+ NewsClip_360P-67ce_crf_10_ss_00_t_20.0,-0.09925834089517593
744
+ NewsClip_360P-7a96_crf_10_ss_00_t_20.0,-0.11708685010671616
745
+ NewsClip_480P-0269_crf_10_ss_00_t_20.0,-0.10728831589221954
746
+ NewsClip_480P-0ce5_crf_10_ss_00_t_20.0,-0.09879196435213089
747
+ NewsClip_480P-15fa_crf_10_ss_00_t_20.0,-0.0690692812204361
748
+ NewsClip_480P-2407_crf_10_ss_00_t_20.0,-0.11627587676048279
749
+ NewsClip_480P-2642_crf_10_ss_00_t_20.0,-0.11046940833330154
750
+ NewsClip_480P-28eb_crf_10_ss_00_t_20.0,-0.11068084836006165
751
+ NewsClip_480P-2b9b_crf_10_ss_00_t_20.0,-0.11109185963869095
752
+ NewsClip_480P-2ba7_crf_10_ss_00_t_20.0,-0.1126280277967453
753
+ NewsClip_480P-31bd_crf_10_ss_00_t_20.0,-0.06592308729887009
754
+ NewsClip_480P-3672_crf_10_ss_00_t_20.0,-0.07543102651834488
755
+ NewsClip_480P-36d0_crf_10_ss_00_t_20.0,-0.08023658394813538
756
+ NewsClip_480P-4072_crf_10_ss_00_t_20.0,-0.11324436962604523
757
+ NewsClip_480P-41b1_crf_10_ss_00_t_20.0,-0.07831212878227234
758
+ NewsClip_480P-437c_crf_10_ss_00_t_20.0,-0.10747451335191727
759
+ NewsClip_480P-49c9_crf_10_ss_00_t_20.0,-0.0721544474363327
760
+ NewsClip_480P-4a9f_crf_10_ss_00_t_20.0,-0.10848324000835419
761
+ NewsClip_480P-4e77_crf_10_ss_00_t_20.0,-0.09638948738574982
762
+ NewsClip_480P-543f_crf_10_ss_00_t_20.0,-0.09971592575311661
763
+ NewsClip_480P-5a3b_crf_10_ss_00_t_20.0,-0.11779403686523438
764
+ NewsClip_480P-5e7f_crf_10_ss_00_t_20.0,-0.09474639594554901
765
+ NewsClip_480P-606e_crf_10_ss_00_t_20.0,-0.10355763137340546
766
+ NewsClip_480P-6615_crf_10_ss_00_t_20.0,-0.0692691057920456
767
+ NewsClip_480P-696e_crf_10_ss_00_t_20.0,-0.08990811556577682
768
+ NewsClip_480P-6bfa_crf_10_ss_00_t_20.0,-0.07543576508760452
769
+ NewsClip_480P-7232_crf_10_ss_00_t_20.0,-0.11241934448480606
770
+ NewsClip_480P-72b8_crf_10_ss_00_t_20.0,-0.0797622948884964
771
+ NewsClip_480P-7a0d_crf_10_ss_00_t_20.0,-0.06203991919755936
772
+ NewsClip_720P-04ba_crf_10_ss_00_t_20.0,-0.09482676535844803
773
+ NewsClip_720P-0c81_crf_10_ss_00_t_20.0,-0.06076989322900772
774
+ NewsClip_720P-1971_crf_10_ss_00_t_20.0,-0.07097284495830536
775
+ NewsClip_720P-2182_crf_10_ss_00_t_20.0,-0.07903468608856201
776
+ NewsClip_720P-23e0_crf_10_ss_00_t_20.0,-0.044248878955841064
777
+ NewsClip_720P-2882_crf_10_ss_00_t_20.0,-0.07683980464935303
778
+ NewsClip_720P-35d9_crf_10_ss_00_t_20.0,-0.10896134376525879
779
+ NewsClip_720P-37f7_crf_10_ss_00_t_20.0,-0.07489092648029327
780
+ NewsClip_720P-4603_crf_10_ss_00_t_20.0,-0.07745304703712463
781
+ NewsClip_720P-4e87_crf_10_ss_00_t_20.0,-0.05115382745862007
782
+ NewsClip_720P-5564_crf_10_ss_00_t_20.0,-0.0666082575917244
783
+ NewsClip_720P-5787_crf_10_ss_00_t_20.0,-0.07020881026983261
784
+ NewsClip_720P-579b_crf_10_ss_00_t_20.0,-0.09219682961702347
785
+ NewsClip_720P-5d89_crf_10_ss_00_t_20.0,-0.05223038047552109
786
+ NewsClip_720P-6016_crf_10_ss_00_t_20.0,-0.058844711631536484
787
+ NewsClip_720P-6106_crf_10_ss_00_t_20.0,-0.0668339729309082
788
+ NewsClip_720P-672c_crf_10_ss_00_t_20.0,-0.06483431905508041
789
+ NewsClip_720P-6a19_crf_10_ss_00_t_20.0,-0.07853351533412933
790
+ NewsClip_720P-6cde_crf_10_ss_00_t_20.0,-0.02879350073635578
791
+ NewsClip_720P-72d2_crf_10_ss_00_t_20.0,-0.058135032653808594
792
+ NewsClip_720P-739b_crf_10_ss_00_t_20.0,-0.0652407854795456
793
+ NewsClip_720P-7745_crf_10_ss_00_t_20.0,-0.0563688762485981
794
+ NewsClip_720P-7b7e_crf_10_ss_00_t_20.0,-0.0499742366373539
795
+ NewsClip_720P-7b97_crf_10_ss_00_t_20.0,-0.0780484527349472
796
+ NewsClip_720P-7c67_crf_10_ss_00_t_20.0,-0.05911000072956085
797
+ NewsClip_720P-7e56_crf_10_ss_00_t_20.0,-0.053478699177503586
798
+ Sports_1080P-0063_crf_10_ss_00_t_20.0,-0.080630362033844
799
+ Sports_1080P-0640_crf_10_ss_00_t_20.0,-0.09831389784812927
800
+ Sports_1080P-08e1_crf_10_ss_00_t_20.0,-0.05190834030508995
801
+ Sports_1080P-0d0c_crf_10_ss_00_t_20.0,-0.06726447492837906
802
+ Sports_1080P-15d1_crf_10_ss_00_t_20.0,-0.030863787978887558
803
+ Sports_1080P-19d8_crf_10_ss_00_t_20.0,-0.05372355505824089
804
+ Sports_1080P-1ae3_crf_10_ss_00_t_20.0,-0.08107053488492966
805
+ Sports_1080P-1bf7_crf_10_ss_00_t_20.0,-0.06247531995177269
806
+ Sports_1080P-1d78_crf_10_ss_00_t_20.0,-0.0757797583937645
807
+ Sports_1080P-241e_crf_10_ss_00_t_20.0,-0.05719951167702675
808
+ Sports_1080P-2524_crf_10_ss_00_t_20.0,-0.06519880890846252
809
+ Sports_1080P-28a6_crf_10_ss_00_t_20.0,-0.030511043965816498
810
+ Sports_1080P-2a21_crf_10_ss_00_t_20.0,-0.07721873372793198
811
+ Sports_1080P-3a3b_crf_10_ss_00_t_20.0,-0.06579438596963882
812
+ Sports_1080P-3db7_crf_10_ss_00_t_20.0,-0.0539998933672905
813
+ Sports_1080P-3eb0_crf_10_ss_00_t_20.0,-0.0866163894534111
814
+ Sports_1080P-43e2_crf_10_ss_00_t_20.0,-0.04867805913090706
815
+ Sports_1080P-46ed_crf_10_ss_00_t_20.0,-0.06711830198764801
816
+ Sports_1080P-47e9_crf_10_ss_00_t_20.0,-0.05153968557715416
817
+ Sports_1080P-4978_crf_10_ss_00_t_20.0,-0.054456278681755066
818
+ Sports_1080P-49c5_crf_10_ss_00_t_20.0,-0.07091642171144485
819
+ Sports_1080P-4e05_crf_10_ss_00_t_20.0,-0.08682119101285934
820
+ Sports_1080P-53a0_crf_10_ss_00_t_20.0,-0.0741405263543129
821
+ Sports_1080P-5d25_crf_10_ss_00_t_20.0,-0.07895540446043015
822
+ Sports_1080P-6571_crf_10_ss_00_t_20.0,-0.07291808724403381
823
+ Sports_1080P-6710_crf_10_ss_00_t_20.0,-0.046599384397268295
824
+ Sports_1080P-679d_crf_10_ss_00_t_20.0,-0.04933265224099159
825
+ Sports_1080P-7203_crf_10_ss_00_t_20.0,-0.05695221573114395
826
+ Sports_1080P-7584_crf_10_ss_00_t_20.0,-0.07423511147499084
827
+ Sports_1080P-76a2_crf_10_ss_00_t_20.0,-0.07739651948213577
828
+ Sports_1080P-7dba_crf_10_ss_00_t_20.0,-0.08125085383653641
829
+ Sports_2160P-0455_crf_10_ss_00_t_20.0,-0.050189923495054245
830
+ Sports_2160P-086d_crf_10_ss_00_t_20.0,-0.04922937974333763
831
+ Sports_2160P-1261_crf_10_ss_00_t_20.0,-0.05226950719952583
832
+ Sports_2160P-1733_crf_10_ss_00_t_20.0,-0.04227391630411148
833
+ Sports_2160P-1b70_crf_10_ss_00_t_20.0,-0.06258116662502289
834
+ Sports_2160P-1ddc_crf_10_ss_00_t_20.0,-0.0845523253083229
835
+ Sports_2160P-210c_crf_10_ss_00_t_20.0,-0.052869588136672974
836
+ Sports_2160P-2568_crf_10_ss_00_t_20.0,-0.059643473476171494
837
+ Sports_2160P-2626_crf_10_ss_00_t_20.0,-0.033593110740184784
838
+ Sports_2160P-279f_crf_10_ss_00_t_20.0,-0.03244408592581749
839
+ Sports_2160P-2a83_crf_10_ss_00_t_20.0,-0.060272540897130966
840
+ Sports_2160P-2e1d_crf_10_ss_00_t_20.0,-0.04491132125258446
841
+ Sports_2160P-2eda_crf_10_ss_00_t_20.0,-0.03562018647789955
842
+ Sports_2160P-300d_crf_10_ss_00_t_20.0,-0.08541194349527359
843
+ Sports_2160P-324e_crf_10_ss_00_t_20.0,-0.04315199330449104
844
+ Sports_2160P-349c_crf_10_ss_00_t_20.0,-0.05788997560739517
845
+ Sports_2160P-3794_crf_10_ss_00_t_20.0,-0.09375739097595215
846
+ Sports_2160P-391a_crf_10_ss_00_t_20.0,-0.04684353247284889
847
+ Sports_2160P-3a9a_crf_10_ss_00_t_20.0,-0.062283217906951904
848
+ Sports_2160P-3d85_crf_10_ss_00_t_20.0,-0.04790546000003815
849
+ Sports_2160P-4024_crf_10_ss_00_t_20.0,-0.06551457196474075
850
+ Sports_2160P-4201_crf_10_ss_00_t_20.0,-0.060558658093214035
851
+ Sports_2160P-49f1_crf_10_ss_00_t_20.0,-0.05452551320195198
852
+ Sports_2160P-4aae_crf_10_ss_00_t_20.0,-0.0544927716255188
853
+ Sports_2160P-4e9f_crf_10_ss_00_t_20.0,-0.0457674004137516
854
+ Sports_2160P-5ef3_crf_10_ss_00_t_20.0,-0.05157468840479851
855
+ Sports_2160P-69b9_crf_10_ss_00_t_20.0,-0.02948053926229477
856
+ Sports_2160P-6b28_crf_10_ss_00_t_20.0,-0.03782782331109047
857
+ Sports_2160P-7165_crf_10_ss_00_t_20.0,-0.0514911413192749
858
+ Sports_2160P-7a11_crf_10_ss_00_t_20.0,-0.05271223559975624
859
+ Sports_2160P-7af7_crf_10_ss_00_t_20.0,-0.0715850442647934
860
+ Sports_2160P-7af8_crf_10_ss_00_t_20.0,-0.0673459842801094
861
+ Sports_2160P-7bbe_crf_10_ss_00_t_20.0,-0.025166502222418785
862
+ Sports_360P-02c3_crf_10_ss_00_t_20.0,-0.08531099557876587
863
+ Sports_360P-0c66_crf_10_ss_00_t_20.0,-0.0882500410079956
864
+ Sports_360P-0dda_crf_10_ss_00_t_20.0,-0.1058192178606987
865
+ Sports_360P-11b7_crf_10_ss_00_t_20.0,-0.11744309216737747
866
+ Sports_360P-1803_crf_10_ss_00_t_20.0,-0.08993278443813324
867
+ Sports_360P-1d5c_crf_10_ss_00_t_20.0,-0.08488910645246506
868
+ Sports_360P-2725_crf_10_ss_00_t_20.0,-0.10639842599630356
869
+ Sports_360P-27b0_crf_10_ss_00_t_20.0,-0.10866180062294006
870
+ Sports_360P-2ace_crf_10_ss_00_t_20.0,-0.0962187722325325
871
+ Sports_360P-2e48_crf_10_ss_00_t_20.0,-0.11764255166053772
872
+ Sports_360P-301d_crf_10_ss_00_t_20.0,-0.08882191777229309
873
+ Sports_360P-32d3_crf_10_ss_00_t_20.0,-0.11211220920085907
874
+ Sports_360P-3960_crf_10_ss_00_t_20.0,-0.1206074133515358
875
+ Sports_360P-3e68_crf_10_ss_00_t_20.0,-0.09633863717317581
876
+ Sports_360P-4545_crf_10_ss_00_t_20.0,-0.1330164521932602
877
+ Sports_360P-4802_crf_10_ss_00_t_20.0,-0.12475705146789551
878
+ Sports_360P-4ad7_crf_10_ss_00_t_20.0,-0.1385052651166916
879
+ Sports_360P-50fd_crf_10_ss_00_t_20.0,-0.11281874775886536
880
+ Sports_360P-5252_crf_10_ss_00_t_20.0,-0.12999263405799866
881
+ Sports_360P-5ded_crf_10_ss_00_t_20.0,-0.08773700892925262
882
+ Sports_360P-61f6_crf_10_ss_00_t_20.0,-0.08454781770706177
883
+ Sports_360P-65f3_crf_10_ss_00_t_20.0,-0.10415108501911163
884
+ Sports_360P-6b4f_crf_10_ss_00_t_20.0,-0.05795339122414589
885
+ Sports_360P-6c6f_crf_10_ss_00_t_20.0,-0.11309082061052322
886
+ Sports_360P-6f62_crf_10_ss_00_t_20.0,-0.09009676426649094
887
+ Sports_360P-7f50_crf_10_ss_00_t_20.0,-0.13319212198257446
888
+ Sports_480P-0623_crf_10_ss_00_t_20.0,-0.09664138406515121
889
+ Sports_480P-0827_crf_10_ss_00_t_20.0,-0.10713620483875275
890
+ Sports_480P-0af9_crf_10_ss_00_t_20.0,-0.07120650261640549
891
+ Sports_480P-0bb9_crf_10_ss_00_t_20.0,-0.08225203305482864
892
+ Sports_480P-0efe_crf_10_ss_00_t_20.0,-0.08235834538936615
893
+ Sports_480P-1019_crf_10_ss_00_t_20.0,-0.08985844254493713
894
+ Sports_480P-1056_crf_10_ss_00_t_20.0,-0.09290564060211182
895
+ Sports_480P-11ec_crf_10_ss_00_t_20.0,-0.12699219584465027
896
+ Sports_480P-1396_crf_10_ss_00_t_20.0,-0.0907752588391304
897
+ Sports_480P-19e4_crf_10_ss_00_t_20.0,-0.0546654537320137
898
+ Sports_480P-1d1b_crf_10_ss_00_t_20.0,-0.11420071125030518
899
+ Sports_480P-1fe9_crf_10_ss_00_t_20.0,-0.12350140511989594
900
+ Sports_480P-2053_crf_10_ss_00_t_20.0,-0.07246468961238861
901
+ Sports_480P-211f_crf_10_ss_00_t_20.0,-0.11022204905748367
902
+ Sports_480P-2dfe_crf_10_ss_00_t_20.0,-0.12411892414093018
903
+ Sports_480P-3195_crf_10_ss_00_t_20.0,-0.07659783214330673
904
+ Sports_480P-3404_crf_10_ss_00_t_20.0,-0.07267038524150848
905
+ Sports_480P-35ea_crf_10_ss_00_t_20.0,-0.07897160947322845
906
+ Sports_480P-3ca4_crf_10_ss_00_t_20.0,-0.12054301053285599
907
+ Sports_480P-3dfd_crf_10_ss_00_t_20.0,-0.09021591395139694
908
+ Sports_480P-3f50_crf_10_ss_00_t_20.0,-0.06917693465948105
909
+ Sports_480P-41a5_crf_10_ss_00_t_20.0,-0.12117949873209
910
+ Sports_480P-44e5_crf_10_ss_00_t_20.0,-0.10239041596651077
911
+ Sports_480P-4cf8_crf_10_ss_00_t_20.0,-0.12560461461544037
912
+ Sports_480P-5224_crf_10_ss_00_t_20.0,-0.10559491068124771
913
+ Sports_480P-5871_crf_10_ss_00_t_20.0,-0.11235589534044266
914
+ Sports_480P-5f38_crf_10_ss_00_t_20.0,-0.07211435586214066
915
+ Sports_480P-6508_crf_10_ss_00_t_20.0,-0.10158813744783401
916
+ Sports_480P-6e41_crf_10_ss_00_t_20.0,-0.07723777741193771
917
+ Sports_480P-77e3_crf_10_ss_00_t_20.0,-0.09814818948507309
918
+ Sports_480P-7f7e_crf_10_ss_00_t_20.0,-0.12369123846292496
919
+ Sports_720P-00a1_crf_10_ss_00_t_20.0,-0.05574185401201248
920
+ Sports_720P-0104_crf_10_ss_00_t_20.0,-0.05023399367928505
921
+ Sports_720P-058f_crf_10_ss_00_t_20.0,-0.046228982508182526
922
+ Sports_720P-07d0_crf_10_ss_00_t_20.0,-0.07641611993312836
923
+ Sports_720P-0b9e_crf_10_ss_00_t_20.0,-0.051584165543317795
924
+ Sports_720P-17fb_crf_10_ss_00_t_20.0,-0.08436689525842667
925
+ Sports_720P-2191_crf_10_ss_00_t_20.0,-0.07655619829893112
926
+ Sports_720P-2234_crf_10_ss_00_t_20.0,-0.06939943134784698
927
+ Sports_720P-2632_crf_10_ss_00_t_20.0,-0.08098326623439789
928
+ Sports_720P-2c06_crf_10_ss_00_t_20.0,-0.0854974016547203
929
+ Sports_720P-2c80_crf_10_ss_00_t_20.0,-0.09503602981567383
930
+ Sports_720P-3072_crf_10_ss_00_t_20.0,-0.08560390770435333
931
+ Sports_720P-3338_crf_10_ss_00_t_20.0,-0.04561328515410423
932
+ Sports_720P-33c6_crf_10_ss_00_t_20.0,-0.0932164341211319
933
+ Sports_720P-38a1_crf_10_ss_00_t_20.0,-0.10377774387598038
934
+ Sports_720P-3eb4_crf_10_ss_00_t_20.0,-0.06729423999786377
935
+ Sports_720P-3ffe_crf_10_ss_00_t_20.0,-0.10449600964784622
936
+ Sports_720P-4b69_crf_10_ss_00_t_20.0,-0.05859117582440376
937
+ Sports_720P-4c6f_crf_10_ss_00_t_20.0,-0.0745895504951477
938
+ Sports_720P-50cf_crf_10_ss_00_t_20.0,-0.06158236041665077
939
+ Sports_720P-531c_crf_10_ss_00_t_20.0,-0.0350944921374321
940
+ Sports_720P-5833_crf_10_ss_00_t_20.0,-0.08397965878248215
941
+ Sports_720P-5ae1_crf_10_ss_00_t_20.0,-0.03897377476096153
942
+ Sports_720P-5bfd_crf_10_ss_00_t_20.0,-0.03889524191617966
943
+ Sports_720P-5e39_crf_10_ss_00_t_20.0,-0.06640340387821198
944
+ Sports_720P-5ea4_crf_10_ss_00_t_20.0,-0.05110946670174599
945
+ Sports_720P-62ba_crf_10_ss_00_t_20.0,-0.1024787575006485
946
+ Sports_720P-675b_crf_10_ss_00_t_20.0,-0.08396100252866745
947
+ Sports_720P-69a0_crf_10_ss_00_t_20.0,-0.05413825064897537
948
+ Sports_720P-6bb7_crf_10_ss_00_t_20.0,-0.0807611420750618
949
+ Sports_720P-6d04_crf_10_ss_00_t_20.0,-0.07450871914625168
950
+ Sports_720P-7ba7_crf_10_ss_00_t_20.0,-0.07978205382823944
951
+ TelevisionClip_1080P-0604_crf_10_ss_00_t_20.0,-0.06290370970964432
952
+ TelevisionClip_1080P-3758_crf_10_ss_00_t_20.0,-0.058178942650556564
953
+ TelevisionClip_1080P-39e3_crf_10_ss_00_t_20.0,-0.039023082703351974
954
+ TelevisionClip_1080P-3b9b_crf_10_ss_00_t_20.0,-0.050712279975414276
955
+ TelevisionClip_1080P-3d10_crf_10_ss_00_t_20.0,-0.06447423994541168
956
+ TelevisionClip_1080P-3d83_crf_10_ss_00_t_20.0,-0.07996126264333725
957
+ TelevisionClip_1080P-3e42_crf_10_ss_00_t_20.0,-0.12302648276090622
958
+ TelevisionClip_1080P-401e_crf_10_ss_00_t_20.0,-0.054436758160591125
959
+ TelevisionClip_1080P-4c24_crf_10_ss_00_t_20.0,-0.051291048526763916
960
+ TelevisionClip_1080P-4c94_crf_10_ss_00_t_20.0,-0.08956418186426163
961
+ TelevisionClip_1080P-525d_crf_10_ss_00_t_20.0,-0.057897526770830154
962
+ TelevisionClip_1080P-5278_crf_10_ss_00_t_20.0,-0.05785712972283363
963
+ TelevisionClip_1080P-5e68_crf_10_ss_00_t_20.0,-0.05416417866945267
964
+ TelevisionClip_1080P-6026_crf_10_ss_00_t_20.0,-0.03820483013987541
965
+ TelevisionClip_1080P-6282_crf_10_ss_00_t_20.0,-0.056699831038713455
966
+ TelevisionClip_1080P-63e6_crf_10_ss_00_t_20.0,-0.05547215789556503
967
+ TelevisionClip_1080P-68c6_crf_10_ss_00_t_20.0,-0.03006676584482193
968
+ TelevisionClip_1080P-7eff_crf_10_ss_00_t_20.0,-0.0583711676299572
969
+ TelevisionClip_360P-0951_crf_10_ss_00_t_20.0,-0.1117800772190094
970
+ TelevisionClip_360P-11d5_crf_10_ss_00_t_20.0,-0.11228802800178528
971
+ TelevisionClip_360P-29f1_crf_10_ss_00_t_20.0,-0.12011965364217758
972
+ TelevisionClip_360P-3b9a_crf_10_ss_00_t_20.0,-0.09925617277622223
973
+ TelevisionClip_360P-74dd_crf_10_ss_00_t_20.0,-0.07869219779968262
974
+ TelevisionClip_360P-7b23_crf_10_ss_00_t_20.0,-0.10104473680257797
975
+ TelevisionClip_480P-09d8_crf_10_ss_00_t_20.0,-0.10398516058921814
976
+ TelevisionClip_480P-0e46_crf_10_ss_00_t_20.0,-0.10999774187803268
977
+ TelevisionClip_480P-19d3_crf_10_ss_00_t_20.0,-0.07927965372800827
978
+ TelevisionClip_480P-1b49_crf_10_ss_00_t_20.0,-0.0852922797203064
979
+ TelevisionClip_480P-27ca_crf_10_ss_00_t_20.0,-0.08314225822687149
980
+ TelevisionClip_480P-280f_crf_10_ss_00_t_20.0,-0.07364436239004135
981
+ TelevisionClip_480P-2ead_crf_10_ss_00_t_20.0,-0.11001157015562057
982
+ TelevisionClip_480P-30b6_crf_10_ss_00_t_20.0,-0.10014189034700394
983
+ TelevisionClip_480P-3284_crf_10_ss_00_t_20.0,-0.09960043430328369
984
+ TelevisionClip_480P-3617_crf_10_ss_00_t_20.0,-0.11956510692834854
985
+ TelevisionClip_480P-373d_crf_10_ss_00_t_20.0,-0.0862521082162857
986
+ TelevisionClip_480P-3c64_crf_10_ss_00_t_20.0,-0.08061417937278748
987
+ TelevisionClip_480P-415c_crf_10_ss_00_t_20.0,-0.07677331566810608
988
+ TelevisionClip_480P-436c_crf_10_ss_00_t_20.0,-0.10754185914993286
989
+ TelevisionClip_480P-4c6b_crf_10_ss_00_t_20.0,-0.07411693036556244
990
+ TelevisionClip_480P-59f0_crf_10_ss_00_t_20.0,-0.10312262922525406
991
+ TelevisionClip_480P-723e_crf_10_ss_00_t_20.0,-0.09279588609933853
992
+ TelevisionClip_720P-1862_crf_10_ss_00_t_20.0,-0.07823125272989273
993
+ TelevisionClip_720P-19de_crf_10_ss_00_t_20.0,-0.05404036492109299
994
+ TelevisionClip_720P-1b61_crf_10_ss_00_t_20.0,-0.03366374969482422
995
+ TelevisionClip_720P-31ce_crf_10_ss_00_t_20.0,-0.05713534355163574
996
+ TelevisionClip_720P-3f4c_crf_10_ss_00_t_20.0,-0.11373138427734375
997
+ TelevisionClip_720P-44d1_crf_10_ss_00_t_20.0,-0.06586378812789917
998
+ TelevisionClip_720P-4af1_crf_10_ss_00_t_20.0,-0.08404558897018433
999
+ TelevisionClip_720P-4edb_crf_10_ss_00_t_20.0,-0.06901350617408752
1000
+ TelevisionClip_720P-5e93_crf_10_ss_00_t_20.0,-0.05575611814856529
1001
+ TelevisionClip_720P-7c06_crf_10_ss_00_t_20.0,-0.037101589143276215
1002
+ VerticalVideo_1080P-04d4_crf_10_ss_00_t_20.0,-0.05218600109219551
1003
+ VerticalVideo_1080P-1105_crf_10_ss_00_t_20.0,-0.07583023607730865
1004
+ VerticalVideo_1080P-1ac1_crf_10_ss_00_t_20.0,-0.057320643216371536
1005
+ VerticalVideo_1080P-1c86_crf_10_ss_00_t_20.0,-0.0900663211941719
1006
+ VerticalVideo_1080P-2195_crf_10_ss_00_t_20.0,-0.09034233540296555
1007
+ VerticalVideo_1080P-2f00_crf_10_ss_00_t_20.0,-0.044523999094963074
1008
+ VerticalVideo_1080P-34ba_crf_10_ss_00_t_20.0,-0.07576656341552734
1009
+ VerticalVideo_1080P-360f_crf_10_ss_00_t_20.0,-0.06029202789068222
1010
+ VerticalVideo_1080P-3709_crf_10_ss_00_t_20.0,-0.04792333021759987
1011
+ VerticalVideo_1080P-3a9b_crf_10_ss_00_t_20.0,-0.036600250750780106
1012
+ VerticalVideo_1080P-3d96_crf_10_ss_00_t_20.0,-0.045212049037218094
1013
+ VerticalVideo_1080P-4591_crf_10_ss_00_t_20.0,-0.07707903534173965
1014
+ VerticalVideo_1080P-4925_crf_10_ss_00_t_20.0,-0.035292066633701324
1015
+ VerticalVideo_1080P-4b92_crf_10_ss_00_t_20.0,-0.04422830790281296
1016
+ VerticalVideo_1080P-4da5_crf_10_ss_00_t_20.0,-0.040750473737716675
1017
+ VerticalVideo_1080P-6e19_crf_10_ss_00_t_20.0,-0.07073233276605606
1018
+ VerticalVideo_1080P-73b6_crf_10_ss_00_t_20.0,-0.05692470446228981
1019
+ VerticalVideo_1080P-766b_crf_10_ss_00_t_20.0,-0.07253442704677582
1020
+ VerticalVideo_1080P-7c5c_crf_10_ss_00_t_20.0,-0.06014302745461464
1021
+ VerticalVideo_1080P-7cf3_crf_10_ss_00_t_20.0,-0.06183202564716339
1022
+ VerticalVideo_2160P-6d62_crf_10_ss_00_t_20.0,-0.053191833198070526
1023
+ VerticalVideo_360P-0d29_crf_10_ss_00_t_20.0,-0.10285557061433792
1024
+ VerticalVideo_360P-1424_crf_10_ss_00_t_20.0,-0.07621939480304718
1025
+ VerticalVideo_360P-145e_crf_10_ss_00_t_20.0,-0.11929060518741608
1026
+ VerticalVideo_360P-2bb0_crf_10_ss_00_t_20.0,-0.09785722941160202
1027
+ VerticalVideo_360P-2fa3_crf_10_ss_00_t_20.0,-0.04869775474071503
1028
+ VerticalVideo_360P-3936_crf_10_ss_00_t_20.0,-0.08720517158508301
1029
+ VerticalVideo_360P-3b4e_crf_10_ss_00_t_20.0,-0.08425149321556091
1030
+ VerticalVideo_360P-42f1_crf_10_ss_00_t_20.0,-0.06983518600463867
1031
+ VerticalVideo_360P-52c1_crf_10_ss_00_t_20.0,-0.09074199944734573
1032
+ VerticalVideo_360P-5429_crf_10_ss_00_t_20.0,-0.07417673617601395
1033
+ VerticalVideo_360P-54f7_crf_10_ss_00_t_20.0,-0.05491930991411209
1034
+ VerticalVideo_360P-579c_crf_10_ss_00_t_20.0,-0.0761028304696083
1035
+ VerticalVideo_360P-634f_crf_10_ss_00_t_20.0,-0.048994168639183044
1036
+ VerticalVideo_360P-6490_crf_10_ss_00_t_20.0,-0.08690953254699707
1037
+ VerticalVideo_360P-694d_crf_10_ss_00_t_20.0,-0.09832998365163803
1038
+ VerticalVideo_360P-6ff2_crf_10_ss_00_t_20.0,-0.0810854434967041
1039
+ VerticalVideo_360P-70a9_crf_10_ss_00_t_20.0,-0.10449212044477463
1040
+ VerticalVideo_360P-7ba8_crf_10_ss_00_t_20.0,-0.08833187818527222
1041
+ VerticalVideo_360P-7ec3_crf_10_ss_00_t_20.0,-0.06036118045449257
1042
+ VerticalVideo_480P-1bb9_crf_10_ss_00_t_20.0,-0.056433334946632385
1043
+ VerticalVideo_480P-2aa1_crf_10_ss_00_t_20.0,-0.03507693111896515
1044
+ VerticalVideo_480P-2fa4_crf_10_ss_00_t_20.0,-0.06293684244155884
1045
+ VerticalVideo_480P-34b9_crf_10_ss_00_t_20.0,-0.08939875662326813
1046
+ VerticalVideo_480P-3a6a_crf_10_ss_00_t_20.0,-0.04693424701690674
1047
+ VerticalVideo_480P-419c_crf_10_ss_00_t_20.0,-0.07007274031639099
1048
+ VerticalVideo_480P-467e_crf_10_ss_00_t_20.0,-0.09267038106918335
1049
+ VerticalVideo_480P-51b7_crf_10_ss_00_t_20.0,-0.11948732286691666
1050
+ VerticalVideo_480P-550d_crf_10_ss_00_t_20.0,-0.054054975509643555
1051
+ VerticalVideo_480P-572a_crf_10_ss_00_t_20.0,-0.08997970819473267
1052
+ VerticalVideo_480P-7278_crf_10_ss_00_t_20.0,-0.08565455675125122
1053
+ VerticalVideo_480P-729c_crf_10_ss_00_t_20.0,-0.04744774103164673
1054
+ VerticalVideo_480P-790a_crf_10_ss_00_t_20.0,-0.04161032661795616
1055
+ VerticalVideo_720P-0750_crf_10_ss_00_t_20.0,-0.07401368021965027
1056
+ VerticalVideo_720P-0dac_crf_10_ss_00_t_20.0,-0.10581131279468536
1057
+ VerticalVideo_720P-0f61_crf_10_ss_00_t_20.0,-0.05194726586341858
1058
+ VerticalVideo_720P-19fa_crf_10_ss_00_t_20.0,-0.04764178767800331
1059
+ VerticalVideo_720P-1ada_crf_10_ss_00_t_20.0,-0.07573606073856354
1060
+ VerticalVideo_720P-2efc_crf_10_ss_00_t_20.0,-0.07049412280321121
1061
+ VerticalVideo_720P-3df7_crf_10_ss_00_t_20.0,-0.07542604207992554
1062
+ VerticalVideo_720P-42f2_crf_10_ss_00_t_20.0,-0.07923293858766556
1063
+ VerticalVideo_720P-44de_crf_10_ss_00_t_20.0,-0.044545978307724
1064
+ VerticalVideo_720P-456c_crf_10_ss_00_t_20.0,-0.06493113189935684
1065
+ VerticalVideo_720P-4730_crf_10_ss_00_t_20.0,-0.0462157242000103
1066
+ VerticalVideo_720P-4ca7_crf_10_ss_00_t_20.0,-0.0552525632083416
1067
+ VerticalVideo_720P-57eb_crf_10_ss_00_t_20.0,-0.08599510788917542
1068
+ VerticalVideo_720P-6580_crf_10_ss_00_t_20.0,-0.08178023993968964
1069
+ VerticalVideo_720P-665d_crf_10_ss_00_t_20.0,-0.056009143590927124
1070
+ VerticalVideo_720P-669d_crf_10_ss_00_t_20.0,-0.05084630101919174
1071
+ VerticalVideo_720P-6bf7_crf_10_ss_00_t_20.0,-0.05446188151836395
1072
+ VerticalVideo_720P-7517_crf_10_ss_00_t_20.0,-0.05446511507034302
1073
+ VerticalVideo_720P-7859_crf_10_ss_00_t_20.0,-0.07135924696922302
1074
+ VerticalVideo_720P-7c1d_crf_10_ss_00_t_20.0,-0.048375293612480164
1075
+ Vlog_1080P-010b_crf_10_ss_00_t_20.0,-0.05799426510930061
1076
+ Vlog_1080P-1609_crf_10_ss_00_t_20.0,-0.08979053050279617
1077
+ Vlog_1080P-18da_crf_10_ss_00_t_20.0,-0.055923447012901306
1078
+ Vlog_1080P-19bb_crf_10_ss_00_t_20.0,-0.08590364456176758
1079
+ Vlog_1080P-1a53_crf_10_ss_00_t_20.0,-0.06404095143079758
1080
+ Vlog_1080P-1df9_crf_10_ss_00_t_20.0,-0.05232073366641998
1081
+ Vlog_1080P-1e70_crf_10_ss_00_t_20.0,-0.10601408779621124
1082
+ Vlog_1080P-1f0a_crf_10_ss_00_t_20.0,-0.06558403372764587
1083
+ Vlog_1080P-21f5_crf_10_ss_00_t_20.0,-0.08717229217290878
1084
+ Vlog_1080P-2394_crf_10_ss_00_t_20.0,-0.03807167708873749
1085
+ Vlog_1080P-23cb_crf_10_ss_00_t_20.0,-0.08206261694431305
1086
+ Vlog_1080P-25de_crf_10_ss_00_t_20.0,-0.10000427812337875
1087
+ Vlog_1080P-2600_crf_10_ss_00_t_20.0,-0.05668981000781059
1088
+ Vlog_1080P-26dc_crf_10_ss_00_t_20.0,-0.07675104588270187
1089
+ Vlog_1080P-2cda_crf_10_ss_00_t_20.0,-0.0440746545791626
1090
+ Vlog_1080P-34cb_crf_10_ss_00_t_20.0,-0.07016874849796295
1091
+ Vlog_1080P-35cd_crf_10_ss_00_t_20.0,-0.08424831926822662
1092
+ Vlog_1080P-3744_crf_10_ss_00_t_20.0,-0.05446738004684448
1093
+ Vlog_1080P-45c9_crf_10_ss_00_t_20.0,-0.09343317151069641
1094
+ Vlog_1080P-4921_crf_10_ss_00_t_20.0,-0.07691873610019684
1095
+ Vlog_1080P-4ba9_crf_10_ss_00_t_20.0,-0.06193056330084801
1096
+ Vlog_1080P-4f26_crf_10_ss_00_t_20.0,-0.07623296231031418
1097
+ Vlog_1080P-52fe_crf_10_ss_00_t_20.0,-0.07941041141748428
1098
+ Vlog_1080P-5904_crf_10_ss_00_t_20.0,-0.05263568088412285
1099
+ Vlog_1080P-5f28_crf_10_ss_00_t_20.0,-0.06498382985591888
1100
+ Vlog_1080P-62fc_crf_10_ss_00_t_20.0,-0.060617364943027496
1101
+ Vlog_1080P-64b6_crf_10_ss_00_t_20.0,-0.05304260179400444
1102
+ Vlog_1080P-6686_crf_10_ss_00_t_20.0,-0.07757080346345901
1103
+ Vlog_1080P-687a_crf_10_ss_00_t_20.0,-0.08840706199407578
1104
+ Vlog_1080P-7062_crf_10_ss_00_t_20.0,-0.06229519844055176
1105
+ Vlog_1080P-7b67_crf_10_ss_00_t_20.0,-0.07143063843250275
1106
+ Vlog_1080P-7e8c_crf_10_ss_00_t_20.0,-0.08826915174722672
1107
+ Vlog_2160P-030a_crf_10_ss_00_t_20.0,-0.09566257148981094
1108
+ Vlog_2160P-0577_crf_10_ss_00_t_20.0,-0.06811631470918655
1109
+ Vlog_2160P-059c_crf_10_ss_00_t_20.0,-0.05468488112092018
1110
+ Vlog_2160P-09c9_crf_10_ss_00_t_20.0,-0.08040519058704376
1111
+ Vlog_2160P-13a1_crf_10_ss_00_t_20.0,-0.055130232125520706
1112
+ Vlog_2160P-13fe_crf_10_ss_00_t_20.0,-0.06054767593741417
1113
+ Vlog_2160P-19f9_crf_10_ss_00_t_20.0,-0.06183479353785515
1114
+ Vlog_2160P-1ff6_crf_10_ss_00_t_20.0,-0.09615149348974228
1115
+ Vlog_2160P-255c_crf_10_ss_00_t_20.0,-0.039227090775966644
1116
+ Vlog_2160P-2953_crf_10_ss_00_t_20.0,-0.0697464570403099
1117
+ Vlog_2160P-2b2d_crf_10_ss_00_t_20.0,-0.06147422641515732
1118
+ Vlog_2160P-3019_crf_10_ss_00_t_20.0,-0.036041244864463806
1119
+ Vlog_2160P-310b_crf_10_ss_00_t_20.0,-0.0526333749294281
1120
+ Vlog_2160P-327a_crf_10_ss_00_t_20.0,-0.05094072222709656
1121
+ Vlog_2160P-342a_crf_10_ss_00_t_20.0,-0.05208401381969452
1122
+ Vlog_2160P-3a75_crf_10_ss_00_t_20.0,-0.05114149674773216
1123
+ Vlog_2160P-408f_crf_10_ss_00_t_20.0,-0.0676536038517952
1124
+ Vlog_2160P-416c_crf_10_ss_00_t_20.0,-0.06876442581415176
1125
+ Vlog_2160P-4362_crf_10_ss_00_t_20.0,-0.04128186032176018
1126
+ Vlog_2160P-4419_crf_10_ss_00_t_20.0,-0.04664120823144913
1127
+ Vlog_2160P-4655_crf_10_ss_00_t_20.0,-0.06743981689214706
1128
+ Vlog_2160P-4f98_crf_10_ss_00_t_20.0,-0.08804895728826523
1129
+ Vlog_2160P-522f_crf_10_ss_00_t_20.0,-0.05700177326798439
1130
+ Vlog_2160P-56e4_crf_10_ss_00_t_20.0,-0.06064453348517418
1131
+ Vlog_2160P-5874_crf_10_ss_00_t_20.0,-0.059889573603868484
1132
+ Vlog_2160P-62b2_crf_10_ss_00_t_20.0,-0.06675167381763458
1133
+ Vlog_2160P-6629_crf_10_ss_00_t_20.0,-0.04793190956115723
1134
+ Vlog_2160P-6f92_crf_10_ss_00_t_20.0,-0.05788465961813927
1135
+ Vlog_2160P-700c_crf_10_ss_00_t_20.0,-0.05188082158565521
1136
+ Vlog_2160P-70d6_crf_10_ss_00_t_20.0,-0.09715549647808075
1137
+ Vlog_2160P-7324_crf_10_ss_00_t_20.0,-0.06865306943655014
1138
+ Vlog_2160P-77d8_crf_10_ss_00_t_20.0,-0.07532751560211182
1139
+ Vlog_2160P-7b10_crf_10_ss_00_t_20.0,-0.06344159692525864
1140
+ Vlog_2160P-7b5c_crf_10_ss_00_t_20.0,-0.081961989402771
1141
+ Vlog_2160P-7bfb_crf_10_ss_00_t_20.0,-0.07069732993841171
1142
+ Vlog_2160P-7f05_crf_10_ss_00_t_20.0,-0.08620665222406387
1143
+ Vlog_360P-1e5b_crf_10_ss_00_t_20.0,-0.09091092646121979
1144
+ Vlog_360P-22a0_crf_10_ss_00_t_20.0,-0.09477479010820389
1145
+ Vlog_360P-2973_crf_10_ss_00_t_20.0,-0.09874006360769272
1146
+ Vlog_360P-2e9d_crf_10_ss_00_t_20.0,-0.1019025668501854
1147
+ Vlog_360P-3121_crf_10_ss_00_t_20.0,-0.09727933257818222
1148
+ Vlog_360P-3bc2_crf_10_ss_00_t_20.0,-0.08901622146368027
1149
+ Vlog_360P-433e_crf_10_ss_00_t_20.0,-0.09015585482120514
1150
+ Vlog_360P-4697_crf_10_ss_00_t_20.0,-0.0866449773311615
1151
+ Vlog_360P-4795_crf_10_ss_00_t_20.0,-0.11150090396404266
1152
+ Vlog_360P-4ad1_crf_10_ss_00_t_20.0,-0.0812116488814354
1153
+ Vlog_360P-4d71_crf_10_ss_00_t_20.0,-0.08807986974716187
1154
+ Vlog_360P-6279_crf_10_ss_00_t_20.0,-0.08715609461069107
1155
+ Vlog_360P-7334_crf_10_ss_00_t_20.0,-0.10327096283435822
1156
+ Vlog_360P-76ae_crf_10_ss_00_t_20.0,-0.11842911690473557
1157
+ Vlog_360P-7efe_crf_10_ss_00_t_20.0,-0.09755973517894745
1158
+ Vlog_480P-08c7_crf_10_ss_00_t_20.0,-0.08371386677026749
1159
+ Vlog_480P-0980_crf_10_ss_00_t_20.0,-0.11878778040409088
1160
+ Vlog_480P-0ddc_crf_10_ss_00_t_20.0,-0.07189115136861801
1161
+ Vlog_480P-1b39_crf_10_ss_00_t_20.0,-0.12041036784648895
1162
+ Vlog_480P-206f_crf_10_ss_00_t_20.0,-0.09883616864681244
1163
+ Vlog_480P-279d_crf_10_ss_00_t_20.0,-0.08243526518344879
1164
+ Vlog_480P-2cad_crf_10_ss_00_t_20.0,-0.10052873939275742
1165
+ Vlog_480P-34ba_crf_10_ss_00_t_20.0,-0.07282563298940659
1166
+ Vlog_480P-476b_crf_10_ss_00_t_20.0,-0.08051098138093948
1167
+ Vlog_480P-4beb_crf_10_ss_00_t_20.0,-0.10152111202478409
1168
+ Vlog_480P-5275_crf_10_ss_00_t_20.0,-0.11771013587713242
1169
+ Vlog_480P-535d_crf_10_ss_00_t_20.0,-0.11822864413261414
1170
+ Vlog_480P-59dc_crf_10_ss_00_t_20.0,-0.08301117271184921
1171
+ Vlog_480P-5dfe_crf_10_ss_00_t_20.0,-0.08112069964408875
1172
+ Vlog_480P-5e1c_crf_10_ss_00_t_20.0,-0.1019982397556305
1173
+ Vlog_480P-5ebd_crf_10_ss_00_t_20.0,-0.09195515513420105
1174
+ Vlog_480P-6395_crf_10_ss_00_t_20.0,-0.07865891605615616
1175
+ Vlog_480P-6c60_crf_10_ss_00_t_20.0,-0.1043117418885231
1176
+ Vlog_480P-7237_crf_10_ss_00_t_20.0,-0.0671253427863121
1177
+ Vlog_480P-7615_crf_10_ss_00_t_20.0,-0.1059526801109314
1178
+ Vlog_480P-7754_crf_10_ss_00_t_20.0,-0.08213529735803604
1179
+ Vlog_480P-7d0c_crf_10_ss_00_t_20.0,-0.08833270519971848
1180
+ Vlog_480P-7ecf_crf_10_ss_00_t_20.0,-0.08137600123882294
1181
+ Vlog_720P-033a_crf_10_ss_00_t_20.0,-0.049908462911844254
1182
+ Vlog_720P-03d5_crf_10_ss_00_t_20.0,-0.0697462260723114
1183
+ Vlog_720P-03f9_crf_10_ss_00_t_20.0,-0.05121626704931259
1184
+ Vlog_720P-0d79_crf_10_ss_00_t_20.0,-0.07909931242465973
1185
+ Vlog_720P-1003_crf_10_ss_00_t_20.0,-0.08523675799369812
1186
+ Vlog_720P-11c5_crf_10_ss_00_t_20.0,-0.07618345320224762
1187
+ Vlog_720P-135c_crf_10_ss_00_t_20.0,-0.09000694006681442
1188
+ Vlog_720P-141f_crf_10_ss_00_t_20.0,-0.10232966393232346
1189
+ Vlog_720P-155f_crf_10_ss_00_t_20.0,-0.06027068570256233
1190
+ Vlog_720P-2929_crf_10_ss_00_t_20.0,-0.051445089280605316
1191
+ Vlog_720P-329f_crf_10_ss_00_t_20.0,-0.0677751898765564
1192
+ Vlog_720P-32b2_crf_10_ss_00_t_20.0,-0.028104854747653008
1193
+ Vlog_720P-343d_crf_10_ss_00_t_20.0,-0.0752008706331253
1194
+ Vlog_720P-372d_crf_10_ss_00_t_20.0,-0.05438769608736038
1195
+ Vlog_720P-3e9c_crf_10_ss_00_t_20.0,-0.05816575512290001
1196
+ Vlog_720P-4e3d_crf_10_ss_00_t_20.0,-0.09882976859807968
1197
+ Vlog_720P-5364_crf_10_ss_00_t_20.0,-0.11853653937578201
1198
+ Vlog_720P-55b6_crf_10_ss_00_t_20.0,-0.04247138276696205
1199
+ Vlog_720P-561e_crf_10_ss_00_t_20.0,-0.05214335769414902
1200
+ Vlog_720P-5d08_crf_10_ss_00_t_20.0,-0.04606281965970993
1201
+ Vlog_720P-60f8_crf_10_ss_00_t_20.0,-0.04590136930346489
1202
+ Vlog_720P-6d56_crf_10_ss_00_t_20.0,-0.07939610630273819
prediction_results/youtube_ugc/tmos.csv ADDED
@@ -0,0 +1,1202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Name,Mos
2
+ Animation_1080P-01b3_crf_10_ss_00_t_20.0,0.006301241461187601
3
+ Animation_1080P-05f8_crf_10_ss_00_t_20.0,0.31147801876068115
4
+ Animation_1080P-0c4f_crf_10_ss_00_t_20.0,0.431509792804718
5
+ Animation_1080P-0cdf_crf_10_ss_00_t_20.0,0.7699240446090698
6
+ Animation_1080P-18f5_crf_10_ss_00_t_20.0,0.158493772149086
7
+ Animation_1080P-209f_crf_10_ss_00_t_20.0,0.5227994918823242
8
+ Animation_1080P-21dd_crf_10_ss_00_t_20.0,-0.0018617699388414621
9
+ Animation_1080P-2fbe_crf_10_ss_00_t_20.0,-0.19388620555400848
10
+ Animation_1080P-2fff_crf_10_ss_00_t_20.0,0.7507253289222717
11
+ Animation_1080P-3d67_crf_10_ss_00_t_20.0,-0.7878461480140686
12
+ Animation_1080P-3dbf_crf_10_ss_00_t_20.0,0.6751142740249634
13
+ Animation_1080P-3e01_crf_10_ss_00_t_20.0,0.4679197371006012
14
+ Animation_1080P-4214_crf_10_ss_00_t_20.0,0.23613472282886505
15
+ Animation_1080P-4be3_crf_10_ss_00_t_20.0,-0.026615401729941368
16
+ Animation_1080P-4ea8_crf_10_ss_00_t_20.0,0.25079163908958435
17
+ Animation_1080P-5083_crf_10_ss_00_t_20.0,-0.6748330593109131
18
+ Animation_1080P-58d3_crf_10_ss_00_t_20.0,0.60957270860672
19
+ Animation_1080P-5dd8_crf_10_ss_00_t_20.0,0.5961392521858215
20
+ Animation_1080P-646f_crf_10_ss_00_t_20.0,-0.21478146314620972
21
+ Animation_1080P-66ba_crf_10_ss_00_t_20.0,-0.6976034045219421
22
+ Animation_1080P-6a33_crf_10_ss_00_t_20.0,-1.0924843549728394
23
+ Animation_1080P-6ec0_crf_10_ss_00_t_20.0,0.2779380977153778
24
+ Animation_2160P-41dc_crf_10_ss_00_t_20.0,-0.07317426055669785
25
+ Animation_2160P-6f3b_crf_10_ss_00_t_20.0,0.5090757012367249
26
+ Animation_360P-08c9_crf_10_ss_00_t_20.0,0.2431143969297409
27
+ Animation_360P-188f_crf_10_ss_00_t_20.0,0.08792240917682648
28
+ Animation_360P-24d4_crf_10_ss_00_t_20.0,-0.18423716723918915
29
+ Animation_360P-3e40_crf_10_ss_00_t_20.0,-0.37989342212677
30
+ Animation_360P-3e52_crf_10_ss_00_t_20.0,-0.06874534487724304
31
+ Animation_360P-47cc_crf_10_ss_00_t_20.0,-0.28938814997673035
32
+ Animation_360P-4b4c_crf_10_ss_00_t_20.0,-0.899509072303772
33
+ Animation_360P-4edc_crf_10_ss_00_t_20.0,0.32204458117485046
34
+ Animation_360P-5712_crf_10_ss_00_t_20.0,0.24461783468723297
35
+ Animation_360P-5de0_crf_10_ss_00_t_20.0,-0.043386928737163544
36
+ Animation_360P-631c_crf_10_ss_00_t_20.0,-0.8494064807891846
37
+ Animation_360P-69e0_crf_10_ss_00_t_20.0,-0.1711384654045105
38
+ Animation_360P-7856_crf_10_ss_00_t_20.0,-0.6579924821853638
39
+ Animation_360P-794f_crf_10_ss_00_t_20.0,-0.18571630120277405
40
+ Animation_480P-046c_crf_10_ss_00_t_20.0,-0.40447798371315
41
+ Animation_480P-073c_crf_10_ss_00_t_20.0,-0.45815157890319824
42
+ Animation_480P-087e_crf_10_ss_00_t_20.0,-0.2357807457447052
43
+ Animation_480P-08a5_crf_10_ss_00_t_20.0,0.09691805392503738
44
+ Animation_480P-0d04_crf_10_ss_00_t_20.0,-0.31110140681266785
45
+ Animation_480P-1da7_crf_10_ss_00_t_20.0,0.006001094821840525
46
+ Animation_480P-35ee_crf_10_ss_00_t_20.0,-0.43471914529800415
47
+ Animation_480P-3fdf_crf_10_ss_00_t_20.0,-0.1396263986825943
48
+ Animation_480P-4b86_crf_10_ss_00_t_20.0,-0.1904332935810089
49
+ Animation_480P-4e36_crf_10_ss_00_t_20.0,-0.33926627039909363
50
+ Animation_480P-52af_crf_10_ss_00_t_20.0,-0.12109539657831192
51
+ Animation_480P-66c0_crf_10_ss_00_t_20.0,0.04859834536910057
52
+ Animation_480P-6e23_crf_10_ss_00_t_20.0,-0.07607781887054443
53
+ Animation_480P-6ef6_crf_10_ss_00_t_20.0,0.14509223401546478
54
+ Animation_480P-6ff4_crf_10_ss_00_t_20.0,-0.12051396071910858
55
+ Animation_480P-70d4_crf_10_ss_00_t_20.0,0.19428445398807526
56
+ Animation_480P-791b_crf_10_ss_00_t_20.0,-0.24746054410934448
57
+ Animation_480P-7a31_crf_10_ss_00_t_20.0,-0.1331767439842224
58
+ Animation_480P-7ef2_crf_10_ss_00_t_20.0,-0.29197636246681213
59
+ Animation_720P-0116_crf_10_ss_00_t_20.0,0.615274965763092
60
+ Animation_720P-01b3_crf_10_ss_00_t_20.0,0.011764362454414368
61
+ Animation_720P-06a6_crf_10_ss_00_t_20.0,0.464001327753067
62
+ Animation_720P-0acc_crf_10_ss_00_t_20.0,0.28403905034065247
63
+ Animation_720P-13b7_crf_10_ss_00_t_20.0,0.8968769311904907
64
+ Animation_720P-1a6d_crf_10_ss_00_t_20.0,0.5001014471054077
65
+ Animation_720P-2525_crf_10_ss_00_t_20.0,0.5006996393203735
66
+ Animation_720P-2abf_crf_10_ss_00_t_20.0,0.15082289278507233
67
+ Animation_720P-3adc_crf_10_ss_00_t_20.0,0.12427552789449692
68
+ Animation_720P-412a_crf_10_ss_00_t_20.0,0.9422982931137085
69
+ Animation_720P-41cf_crf_10_ss_00_t_20.0,0.4324483275413513
70
+ Animation_720P-41d6_crf_10_ss_00_t_20.0,0.42538315057754517
71
+ Animation_720P-4268_crf_10_ss_00_t_20.0,0.3130309581756592
72
+ Animation_720P-431c_crf_10_ss_00_t_20.0,0.8623047471046448
73
+ Animation_720P-57d9_crf_10_ss_00_t_20.0,0.011993607506155968
74
+ Animation_720P-620f_crf_10_ss_00_t_20.0,0.7512562870979309
75
+ Animation_720P-6372_crf_10_ss_00_t_20.0,0.9550552368164062
76
+ Animation_720P-79ee_crf_10_ss_00_t_20.0,-0.9324240684509277
77
+ Animation_720P-7b29_crf_10_ss_00_t_20.0,0.13303285837173462
78
+ Animation_720P-7e7d_crf_10_ss_00_t_20.0,0.10514785349369049
79
+ Animation_720P-7ff2_crf_10_ss_00_t_20.0,0.5360445976257324
80
+ CoverSong_1080P-0188_crf_10_ss_00_t_20.0,-0.6942545175552368
81
+ CoverSong_1080P-033d_crf_10_ss_00_t_20.0,0.9716841578483582
82
+ CoverSong_1080P-0a86_crf_10_ss_00_t_20.0,0.8567842245101929
83
+ CoverSong_1080P-0cdc_crf_10_ss_00_t_20.0,-0.8252810835838318
84
+ CoverSong_1080P-0f33_crf_10_ss_00_t_20.0,-0.43697354197502136
85
+ CoverSong_1080P-0f3a_crf_10_ss_00_t_20.0,0.7095382213592529
86
+ CoverSong_1080P-1963_crf_10_ss_00_t_20.0,0.4626653492450714
87
+ CoverSong_1080P-1b08_crf_10_ss_00_t_20.0,0.27143043279647827
88
+ CoverSong_1080P-1b0c_crf_10_ss_00_t_20.0,0.05582160875201225
89
+ CoverSong_1080P-2207_crf_10_ss_00_t_20.0,0.13694627583026886
90
+ CoverSong_1080P-237f_crf_10_ss_00_t_20.0,0.7305104732513428
91
+ CoverSong_1080P-3409_crf_10_ss_00_t_20.0,0.7302664518356323
92
+ CoverSong_1080P-3499_crf_10_ss_00_t_20.0,0.959958553314209
93
+ CoverSong_1080P-3aac_crf_10_ss_00_t_20.0,-0.2886955440044403
94
+ CoverSong_1080P-3df8_crf_10_ss_00_t_20.0,0.20246262848377228
95
+ CoverSong_1080P-4bad_crf_10_ss_00_t_20.0,0.661754846572876
96
+ CoverSong_1080P-5430_crf_10_ss_00_t_20.0,0.49093806743621826
97
+ CoverSong_1080P-5456_crf_10_ss_00_t_20.0,-0.03201897814869881
98
+ CoverSong_1080P-5cae_crf_10_ss_00_t_20.0,0.08890680968761444
99
+ CoverSong_1080P-5e69_crf_10_ss_00_t_20.0,-0.22928468883037567
100
+ CoverSong_1080P-5f92_crf_10_ss_00_t_20.0,0.273735374212265
101
+ CoverSong_1080P-6f26_crf_10_ss_00_t_20.0,0.7230199575424194
102
+ CoverSong_360P-0a9d_crf_10_ss_00_t_20.0,-0.8494820594787598
103
+ CoverSong_360P-0aa2_crf_10_ss_00_t_20.0,-0.71360182762146
104
+ CoverSong_360P-11f9_crf_10_ss_00_t_20.0,-0.6926806569099426
105
+ CoverSong_360P-13d2_crf_10_ss_00_t_20.0,-1.034690499305725
106
+ CoverSong_360P-14b9_crf_10_ss_00_t_20.0,-0.8133265376091003
107
+ CoverSong_360P-1b2b_crf_10_ss_00_t_20.0,-0.17662976682186127
108
+ CoverSong_360P-2146_crf_10_ss_00_t_20.0,-0.6955330967903137
109
+ CoverSong_360P-2b4d_crf_10_ss_00_t_20.0,-0.7754847407341003
110
+ CoverSong_360P-3218_crf_10_ss_00_t_20.0,-0.9824166893959045
111
+ CoverSong_360P-4add_crf_10_ss_00_t_20.0,-0.6016693711280823
112
+ CoverSong_360P-53a6_crf_10_ss_00_t_20.0,-0.07012676447629929
113
+ CoverSong_360P-59d1_crf_10_ss_00_t_20.0,-0.7718007564544678
114
+ CoverSong_360P-5a24_crf_10_ss_00_t_20.0,-0.6751655340194702
115
+ CoverSong_360P-5d20_crf_10_ss_00_t_20.0,-0.6752068400382996
116
+ CoverSong_360P-67ec_crf_10_ss_00_t_20.0,-0.9354033470153809
117
+ CoverSong_360P-69ef_crf_10_ss_00_t_20.0,-0.5256022214889526
118
+ CoverSong_360P-6d6a_crf_10_ss_00_t_20.0,-0.17240411043167114
119
+ CoverSong_360P-6da7_crf_10_ss_00_t_20.0,-0.7428795099258423
120
+ CoverSong_480P-0170_crf_10_ss_00_t_20.0,-0.37921464443206787
121
+ CoverSong_480P-1019_crf_10_ss_00_t_20.0,0.46808162331581116
122
+ CoverSong_480P-1109_crf_10_ss_00_t_20.0,-1.020910382270813
123
+ CoverSong_480P-2142_crf_10_ss_00_t_20.0,-0.2686063051223755
124
+ CoverSong_480P-2207_crf_10_ss_00_t_20.0,-0.7507798075675964
125
+ CoverSong_480P-2d2c_crf_10_ss_00_t_20.0,0.26596903800964355
126
+ CoverSong_480P-3076_crf_10_ss_00_t_20.0,-1.7715847492218018
127
+ CoverSong_480P-35e1_crf_10_ss_00_t_20.0,0.13272620737552643
128
+ CoverSong_480P-3e4b_crf_10_ss_00_t_20.0,-0.5654124021530151
129
+ CoverSong_480P-3e92_crf_10_ss_00_t_20.0,0.6108168959617615
130
+ CoverSong_480P-3f3b_crf_10_ss_00_t_20.0,-0.5010055899620056
131
+ CoverSong_480P-41a5_crf_10_ss_00_t_20.0,-0.12930572032928467
132
+ CoverSong_480P-4d34_crf_10_ss_00_t_20.0,-0.9170880317687988
133
+ CoverSong_480P-53f4_crf_10_ss_00_t_20.0,-0.5043942928314209
134
+ CoverSong_480P-59f2_crf_10_ss_00_t_20.0,-0.29767361283302307
135
+ CoverSong_480P-5b62_crf_10_ss_00_t_20.0,-0.5118338465690613
136
+ CoverSong_480P-60a6_crf_10_ss_00_t_20.0,-0.9070656895637512
137
+ CoverSong_480P-64d0_crf_10_ss_00_t_20.0,0.36181309819221497
138
+ CoverSong_480P-6c3e_crf_10_ss_00_t_20.0,-0.6654168367385864
139
+ CoverSong_480P-6c50_crf_10_ss_00_t_20.0,-0.8320837616920471
140
+ CoverSong_480P-7f6d_crf_10_ss_00_t_20.0,-0.6538814306259155
141
+ CoverSong_720P-014c_crf_10_ss_00_t_20.0,-0.6307421922683716
142
+ CoverSong_720P-01a1_crf_10_ss_00_t_20.0,0.01118661928921938
143
+ CoverSong_720P-0239_crf_10_ss_00_t_20.0,-0.8069755434989929
144
+ CoverSong_720P-05d6_crf_10_ss_00_t_20.0,-0.0013691069325432181
145
+ CoverSong_720P-10f1_crf_10_ss_00_t_20.0,-0.8293895125389099
146
+ CoverSong_720P-1393_crf_10_ss_00_t_20.0,0.19191744923591614
147
+ CoverSong_720P-2d05_crf_10_ss_00_t_20.0,-0.38044193387031555
148
+ CoverSong_720P-3dca_crf_10_ss_00_t_20.0,0.1128619983792305
149
+ CoverSong_720P-4006_crf_10_ss_00_t_20.0,0.2866271138191223
150
+ CoverSong_720P-449f_crf_10_ss_00_t_20.0,0.20528632402420044
151
+ CoverSong_720P-5689_crf_10_ss_00_t_20.0,-0.8631364703178406
152
+ CoverSong_720P-5ba2_crf_10_ss_00_t_20.0,-0.528147280216217
153
+ CoverSong_720P-60d3_crf_10_ss_00_t_20.0,-0.5985932946205139
154
+ CoverSong_720P-6626_crf_10_ss_00_t_20.0,-0.2696545720100403
155
+ CoverSong_720P-6b8c_crf_10_ss_00_t_20.0,-0.6277223825454712
156
+ CoverSong_720P-6d6a_crf_10_ss_00_t_20.0,-0.07652570307254791
157
+ CoverSong_720P-6d81_crf_10_ss_00_t_20.0,-0.27422547340393066
158
+ CoverSong_720P-7360_crf_10_ss_00_t_20.0,-0.7980493307113647
159
+ CoverSong_720P-7539_crf_10_ss_00_t_20.0,-0.5593712329864502
160
+ Gaming_1080P-0ce6_crf_10_ss_00_t_20.0,0.5272640585899353
161
+ Gaming_1080P-0ef8_crf_10_ss_00_t_20.0,0.4430539906024933
162
+ Gaming_1080P-12d4_crf_10_ss_00_t_20.0,0.7873564958572388
163
+ Gaming_1080P-13e3_crf_10_ss_00_t_20.0,0.8476848602294922
164
+ Gaming_1080P-1704_crf_10_ss_00_t_20.0,0.7473312616348267
165
+ Gaming_1080P-173a_crf_10_ss_00_t_20.0,-0.4486902356147766
166
+ Gaming_1080P-190d_crf_10_ss_00_t_20.0,0.1830005794763565
167
+ Gaming_1080P-2221_crf_10_ss_00_t_20.0,0.7591869235038757
168
+ Gaming_1080P-223e_crf_10_ss_00_t_20.0,0.766563892364502
169
+ Gaming_1080P-26dc_crf_10_ss_00_t_20.0,0.6064534783363342
170
+ Gaming_1080P-277c_crf_10_ss_00_t_20.0,-0.020775524899363518
171
+ Gaming_1080P-2927_crf_10_ss_00_t_20.0,0.6738362312316895
172
+ Gaming_1080P-29b1_crf_10_ss_00_t_20.0,0.3223021626472473
173
+ Gaming_1080P-2e97_crf_10_ss_00_t_20.0,0.7757519483566284
174
+ Gaming_1080P-35fa_crf_10_ss_00_t_20.0,-0.7615293860435486
175
+ Gaming_1080P-3a9d_crf_10_ss_00_t_20.0,0.3022899329662323
176
+ Gaming_1080P-3bf7_crf_10_ss_00_t_20.0,-0.8868178725242615
177
+ Gaming_1080P-3d58_crf_10_ss_00_t_20.0,0.418912798166275
178
+ Gaming_1080P-44c4_crf_10_ss_00_t_20.0,0.5393890142440796
179
+ Gaming_1080P-45af_crf_10_ss_00_t_20.0,0.7517842650413513
180
+ Gaming_1080P-45fc_crf_10_ss_00_t_20.0,-0.37695032358169556
181
+ Gaming_1080P-4865_crf_10_ss_00_t_20.0,0.714835524559021
182
+ Gaming_1080P-51fc_crf_10_ss_00_t_20.0,0.8587055206298828
183
+ Gaming_1080P-564e_crf_10_ss_00_t_20.0,0.9950529932975769
184
+ Gaming_1080P-57ca_crf_10_ss_00_t_20.0,0.8241322636604309
185
+ Gaming_1080P-58ba_crf_10_ss_00_t_20.0,0.0040925950743258
186
+ Gaming_1080P-5ae7_crf_10_ss_00_t_20.0,-0.5271202921867371
187
+ Gaming_1080P-6530_crf_10_ss_00_t_20.0,0.3178974390029907
188
+ Gaming_1080P-6578_crf_10_ss_00_t_20.0,0.6742009520530701
189
+ Gaming_1080P-66d2_crf_10_ss_00_t_20.0,0.3548288345336914
190
+ Gaming_1080P-698a_crf_10_ss_00_t_20.0,0.21987693011760712
191
+ Gaming_1080P-6d53_crf_10_ss_00_t_20.0,0.4195350408554077
192
+ Gaming_1080P-6db2_crf_10_ss_00_t_20.0,-0.16385051608085632
193
+ Gaming_1080P-6dc6_crf_10_ss_00_t_20.0,0.9152387976646423
194
+ Gaming_1080P-6e45_crf_10_ss_00_t_20.0,-0.9762721657752991
195
+ Gaming_1080P-71a5_crf_10_ss_00_t_20.0,0.8341324329376221
196
+ Gaming_1080P-72c8_crf_10_ss_00_t_20.0,0.710593044757843
197
+ Gaming_1080P-777b_crf_10_ss_00_t_20.0,0.35223492980003357
198
+ Gaming_1080P-7a1e_crf_10_ss_00_t_20.0,0.36675408482551575
199
+ Gaming_2160P-2436_crf_10_ss_00_t_20.0,0.9115023612976074
200
+ Gaming_2160P-28de_crf_10_ss_00_t_20.0,0.8467603325843811
201
+ Gaming_2160P-2b92_crf_10_ss_00_t_20.0,-0.0997435674071312
202
+ Gaming_2160P-2cb1_crf_10_ss_00_t_20.0,0.8948709964752197
203
+ Gaming_2160P-2dc4_crf_10_ss_00_t_20.0,0.6998733878135681
204
+ Gaming_2160P-3002_crf_10_ss_00_t_20.0,0.5707798004150391
205
+ Gaming_2160P-31f6_crf_10_ss_00_t_20.0,0.8422737121582031
206
+ Gaming_2160P-348d_crf_10_ss_00_t_20.0,0.8428594470024109
207
+ Gaming_2160P-34a1_crf_10_ss_00_t_20.0,0.6388822197914124
208
+ Gaming_2160P-387f_crf_10_ss_00_t_20.0,1.2117788791656494
209
+ Gaming_2160P-3a25_crf_10_ss_00_t_20.0,0.8143220543861389
210
+ Gaming_2160P-3aec_crf_10_ss_00_t_20.0,0.8771589398384094
211
+ Gaming_2160P-3ce4_crf_10_ss_00_t_20.0,1.1462377309799194
212
+ Gaming_2160P-4139_crf_10_ss_00_t_20.0,0.7535091042518616
213
+ Gaming_2160P-416f_crf_10_ss_00_t_20.0,0.6227983832359314
214
+ Gaming_2160P-4258_crf_10_ss_00_t_20.0,0.2523285746574402
215
+ Gaming_2160P-5c33_crf_10_ss_00_t_20.0,-0.43745705485343933
216
+ Gaming_2160P-5c53_crf_10_ss_00_t_20.0,1.2427905797958374
217
+ Gaming_2160P-673d_crf_10_ss_00_t_20.0,0.8070313334465027
218
+ Gaming_2160P-67b0_crf_10_ss_00_t_20.0,0.8280465602874756
219
+ Gaming_2160P-6bb6_crf_10_ss_00_t_20.0,1.0105559825897217
220
+ Gaming_2160P-6cd8_crf_10_ss_00_t_20.0,0.8110401034355164
221
+ Gaming_2160P-7e80_crf_10_ss_00_t_20.0,0.14154259860515594
222
+ Gaming_2160P-7ff0_crf_10_ss_00_t_20.0,0.7684678435325623
223
+ Gaming_360P-043e_crf_10_ss_00_t_20.0,-0.5467276573181152
224
+ Gaming_360P-0b98_crf_10_ss_00_t_20.0,-0.5069107413291931
225
+ Gaming_360P-187a_crf_10_ss_00_t_20.0,-0.2159733921289444
226
+ Gaming_360P-215f_crf_10_ss_00_t_20.0,-0.23436355590820312
227
+ Gaming_360P-2164_crf_10_ss_00_t_20.0,-0.006310468539595604
228
+ Gaming_360P-21d2_crf_10_ss_00_t_20.0,-1.3067944049835205
229
+ Gaming_360P-2330_crf_10_ss_00_t_20.0,-0.7234430909156799
230
+ Gaming_360P-279f_crf_10_ss_00_t_20.0,-0.14239656925201416
231
+ Gaming_360P-2f99_crf_10_ss_00_t_20.0,-0.37849366664886475
232
+ Gaming_360P-3794_crf_10_ss_00_t_20.0,-1.356024980545044
233
+ Gaming_360P-3eb6_crf_10_ss_00_t_20.0,-0.0756244957447052
234
+ Gaming_360P-48b0_crf_10_ss_00_t_20.0,0.08943870663642883
235
+ Gaming_360P-4f09_crf_10_ss_00_t_20.0,-0.061878155916929245
236
+ Gaming_360P-56fe_crf_10_ss_00_t_20.0,-0.6486082077026367
237
+ Gaming_360P-586d_crf_10_ss_00_t_20.0,-0.5810433030128479
238
+ Gaming_360P-5e0f_crf_10_ss_00_t_20.0,-0.41556107997894287
239
+ Gaming_360P-6207_crf_10_ss_00_t_20.0,-0.19198095798492432
240
+ Gaming_360P-63e6_crf_10_ss_00_t_20.0,-0.6569875478744507
241
+ Gaming_360P-73c7_crf_10_ss_00_t_20.0,-0.21336530148983002
242
+ Gaming_360P-7975_crf_10_ss_00_t_20.0,-0.515906035900116
243
+ Gaming_360P-7acb_crf_10_ss_00_t_20.0,-0.6413851976394653
244
+ Gaming_480P-0109_crf_10_ss_00_t_20.0,-0.8239063024520874
245
+ Gaming_480P-062e_crf_10_ss_00_t_20.0,-0.20614327490329742
246
+ Gaming_480P-09ab_crf_10_ss_00_t_20.0,0.3163609504699707
247
+ Gaming_480P-0a03_crf_10_ss_00_t_20.0,-0.6956993341445923
248
+ Gaming_480P-0d23_crf_10_ss_00_t_20.0,0.05112454295158386
249
+ Gaming_480P-0dbc_crf_10_ss_00_t_20.0,-0.7303711175918579
250
+ Gaming_480P-14fc_crf_10_ss_00_t_20.0,0.007237116806209087
251
+ Gaming_480P-1542_crf_10_ss_00_t_20.0,-0.7302055358886719
252
+ Gaming_480P-20ca_crf_10_ss_00_t_20.0,-0.7277981042861938
253
+ Gaming_480P-3a44_crf_10_ss_00_t_20.0,-0.33347588777542114
254
+ Gaming_480P-445b_crf_10_ss_00_t_20.0,0.3051200211048126
255
+ Gaming_480P-4560_crf_10_ss_00_t_20.0,0.4821833372116089
256
+ Gaming_480P-5a5a_crf_10_ss_00_t_20.0,-0.031170329079031944
257
+ Gaming_480P-61ee_crf_10_ss_00_t_20.0,0.5439765453338623
258
+ Gaming_480P-626a_crf_10_ss_00_t_20.0,0.31928980350494385
259
+ Gaming_480P-6491_crf_10_ss_00_t_20.0,-0.7078461647033691
260
+ Gaming_480P-6548_crf_10_ss_00_t_20.0,-0.6899846196174622
261
+ Gaming_480P-6a5a_crf_10_ss_00_t_20.0,-0.02687416784465313
262
+ Gaming_480P-6c92_crf_10_ss_00_t_20.0,-0.7967432141304016
263
+ Gaming_480P-6cdc_crf_10_ss_00_t_20.0,-0.8044206500053406
264
+ Gaming_480P-6d1e_crf_10_ss_00_t_20.0,-0.866352379322052
265
+ Gaming_480P-6f4b_crf_10_ss_00_t_20.0,0.2339523732662201
266
+ Gaming_480P-75f7_crf_10_ss_00_t_20.0,-0.7351830005645752
267
+ Gaming_480P-7893_crf_10_ss_00_t_20.0,-0.28542283177375793
268
+ Gaming_480P-7a08_crf_10_ss_00_t_20.0,0.12183085083961487
269
+ Gaming_480P-7ccb_crf_10_ss_00_t_20.0,0.35923802852630615
270
+ Gaming_480P-7e76_crf_10_ss_00_t_20.0,-0.7760653495788574
271
+ Gaming_720P-0fba_crf_10_ss_00_t_20.0,0.6081106662750244
272
+ Gaming_720P-0fdb_crf_10_ss_00_t_20.0,-0.8404949307441711
273
+ Gaming_720P-1035_crf_10_ss_00_t_20.0,0.4429434537887573
274
+ Gaming_720P-103a_crf_10_ss_00_t_20.0,0.30512213706970215
275
+ Gaming_720P-1cbb_crf_10_ss_00_t_20.0,0.3244999945163727
276
+ Gaming_720P-221d_crf_10_ss_00_t_20.0,-0.35490408539772034
277
+ Gaming_720P-25aa_crf_10_ss_00_t_20.0,-0.5058125257492065
278
+ Gaming_720P-2dbe_crf_10_ss_00_t_20.0,0.4273533821105957
279
+ Gaming_720P-312f_crf_10_ss_00_t_20.0,0.23211254179477692
280
+ Gaming_720P-324d_crf_10_ss_00_t_20.0,-0.5390033721923828
281
+ Gaming_720P-3524_crf_10_ss_00_t_20.0,-0.11551273614168167
282
+ Gaming_720P-40b2_crf_10_ss_00_t_20.0,0.34437620639801025
283
+ Gaming_720P-469a_crf_10_ss_00_t_20.0,0.42580446600914
284
+ Gaming_720P-4813_crf_10_ss_00_t_20.0,0.4729900360107422
285
+ Gaming_720P-493e_crf_10_ss_00_t_20.0,-0.2625492811203003
286
+ Gaming_720P-4cda_crf_10_ss_00_t_20.0,0.023258863016963005
287
+ Gaming_720P-5973_crf_10_ss_00_t_20.0,0.679523229598999
288
+ Gaming_720P-5ba2_crf_10_ss_00_t_20.0,0.7458423972129822
289
+ Gaming_720P-6403_crf_10_ss_00_t_20.0,0.45919913053512573
290
+ Gaming_720P-64b0_crf_10_ss_00_t_20.0,0.7932506799697876
291
+ Gaming_720P-6625_crf_10_ss_00_t_20.0,-0.2696259021759033
292
+ Gaming_720P-6658_crf_10_ss_00_t_20.0,0.24095480144023895
293
+ Gaming_720P-6a45_crf_10_ss_00_t_20.0,0.5803386569023132
294
+ Gaming_720P-7afd_crf_10_ss_00_t_20.0,-0.4903164207935333
295
+ HDR_1080P-0d31_crf_10_ss_00_t_20.0,0.6417653560638428
296
+ HDR_1080P-13eb_crf_10_ss_00_t_20.0,0.7060278654098511
297
+ HDR_1080P-1be2_crf_10_ss_00_t_20.0,0.41446468234062195
298
+ HDR_1080P-1e5b_crf_10_ss_00_t_20.0,-0.9057968258857727
299
+ HDR_1080P-206d_crf_10_ss_00_t_20.0,0.6758038997650146
300
+ HDR_1080P-282a_crf_10_ss_00_t_20.0,0.274261474609375
301
+ HDR_1080P-2d32_crf_10_ss_00_t_20.0,1.015136480331421
302
+ HDR_1080P-3181_crf_10_ss_00_t_20.0,-0.4222736656665802
303
+ HDR_1080P-33e3_crf_10_ss_00_t_20.0,0.7808157205581665
304
+ HDR_1080P-3521_crf_10_ss_00_t_20.0,0.8252801299095154
305
+ HDR_1080P-35f4_crf_10_ss_00_t_20.0,0.6467231512069702
306
+ HDR_1080P-3749_crf_10_ss_00_t_20.0,0.7235466241836548
307
+ HDR_1080P-3a4a_crf_10_ss_00_t_20.0,0.12320716679096222
308
+ HDR_1080P-46a4_crf_10_ss_00_t_20.0,0.34988129138946533
309
+ HDR_1080P-49d6_crf_10_ss_00_t_20.0,0.6797940135002136
310
+ HDR_1080P-4f4a_crf_10_ss_00_t_20.0,0.5236821174621582
311
+ HDR_1080P-548b_crf_10_ss_00_t_20.0,0.5152425765991211
312
+ HDR_1080P-549e_crf_10_ss_00_t_20.0,0.8647285103797913
313
+ HDR_1080P-55c4_crf_10_ss_00_t_20.0,0.5653461813926697
314
+ HDR_1080P-601b_crf_10_ss_00_t_20.0,0.6412501335144043
315
+ HDR_1080P-687e_crf_10_ss_00_t_20.0,-0.03405646234750748
316
+ HDR_1080P-68c8_crf_10_ss_00_t_20.0,0.3695976734161377
317
+ HDR_1080P-69de_crf_10_ss_00_t_20.0,0.4019515812397003
318
+ HDR_1080P-6eb7_crf_10_ss_00_t_20.0,0.7379675507545471
319
+ HDR_1080P-7825_crf_10_ss_00_t_20.0,0.8191094398498535
320
+ HDR_2160P-06ae_crf_10_ss_00_t_20.0,1.0042980909347534
321
+ HDR_2160P-0e7a_crf_10_ss_00_t_20.0,-0.5879980325698853
322
+ HDR_2160P-15e2_crf_10_ss_00_t_20.0,0.9836901426315308
323
+ HDR_2160P-1743_crf_10_ss_00_t_20.0,0.27520298957824707
324
+ HDR_2160P-1e9e_crf_10_ss_00_t_20.0,0.5377158522605896
325
+ HDR_2160P-2a72_crf_10_ss_00_t_20.0,0.601977527141571
326
+ HDR_2160P-351f_crf_10_ss_00_t_20.0,0.6371771097183228
327
+ HDR_2160P-3663_crf_10_ss_00_t_20.0,0.9385257363319397
328
+ HDR_2160P-382f_crf_10_ss_00_t_20.0,0.5550158023834229
329
+ HDR_2160P-40ab_crf_10_ss_00_t_20.0,0.44004514813423157
330
+ HDR_2160P-4348_crf_10_ss_00_t_20.0,0.3320850729942322
331
+ HDR_2160P-4581_crf_10_ss_00_t_20.0,0.3458060622215271
332
+ HDR_2160P-4dcd_crf_10_ss_00_t_20.0,0.15476538240909576
333
+ HDR_2160P-51ea_crf_10_ss_00_t_20.0,0.2988109886646271
334
+ HDR_2160P-5275_crf_10_ss_00_t_20.0,0.9137110114097595
335
+ HDR_2160P-5926_crf_10_ss_00_t_20.0,0.8471127152442932
336
+ HDR_2160P-5c86_crf_10_ss_00_t_20.0,0.633928120136261
337
+ HDR_2160P-5cdf_crf_10_ss_00_t_20.0,0.39512962102890015
338
+ HDR_2160P-5e25_crf_10_ss_00_t_20.0,0.5716578364372253
339
+ HDR_2160P-664d_crf_10_ss_00_t_20.0,0.13013987243175507
340
+ HDR_2160P-6c6e_crf_10_ss_00_t_20.0,0.7960433959960938
341
+ HDR_2160P-6ed1_crf_10_ss_00_t_20.0,0.6758848428726196
342
+ HDR_2160P-6eeb_crf_10_ss_00_t_20.0,0.5424788594245911
343
+ HDR_2160P-6fa4_crf_10_ss_00_t_20.0,0.4545648992061615
344
+ HDR_2160P-6fab_crf_10_ss_00_t_20.0,-0.37755343317985535
345
+ HDR_2160P-70ca_crf_10_ss_00_t_20.0,0.6486070156097412
346
+ HowTo_1080P-0267_crf_10_ss_00_t_20.0,0.11354787647724152
347
+ HowTo_1080P-03fd_crf_10_ss_00_t_20.0,-0.24397920072078705
348
+ HowTo_1080P-13aa_crf_10_ss_00_t_20.0,0.5241125822067261
349
+ HowTo_1080P-1f3b_crf_10_ss_00_t_20.0,0.8349753022193909
350
+ HowTo_1080P-36a9_crf_10_ss_00_t_20.0,0.5771497488021851
351
+ HowTo_1080P-4d7b_crf_10_ss_00_t_20.0,0.6054596304893494
352
+ HowTo_1080P-52bb_crf_10_ss_00_t_20.0,0.6122742295265198
353
+ HowTo_1080P-55d1_crf_10_ss_00_t_20.0,0.595864474773407
354
+ HowTo_1080P-63e4_crf_10_ss_00_t_20.0,0.48557355999946594
355
+ HowTo_1080P-63ec_crf_10_ss_00_t_20.0,0.8744516968727112
356
+ HowTo_1080P-64f7_crf_10_ss_00_t_20.0,0.5146933794021606
357
+ HowTo_1080P-6cbf_crf_10_ss_00_t_20.0,-1.0067685842514038
358
+ HowTo_1080P-7399_crf_10_ss_00_t_20.0,0.5921059846878052
359
+ HowTo_1080P-763c_crf_10_ss_00_t_20.0,0.44476479291915894
360
+ HowTo_1080P-7cf2_crf_10_ss_00_t_20.0,-0.05201663821935654
361
+ HowTo_1080P-7f18_crf_10_ss_00_t_20.0,0.2288014441728592
362
+ HowTo_1080P-7f4c_crf_10_ss_00_t_20.0,0.3808388411998749
363
+ HowTo_360P-041c_crf_10_ss_00_t_20.0,-0.3228902220726013
364
+ HowTo_360P-0562_crf_10_ss_00_t_20.0,0.2835395932197571
365
+ HowTo_360P-06be_crf_10_ss_00_t_20.0,0.22669717669487
366
+ HowTo_360P-09f8_crf_10_ss_00_t_20.0,-0.6217827796936035
367
+ HowTo_360P-127f_crf_10_ss_00_t_20.0,-0.18048179149627686
368
+ HowTo_360P-1823_crf_10_ss_00_t_20.0,-0.15518133342266083
369
+ HowTo_360P-18e7_crf_10_ss_00_t_20.0,-0.32971060276031494
370
+ HowTo_360P-1dba_crf_10_ss_00_t_20.0,-1.0794508457183838
371
+ HowTo_360P-2074_crf_10_ss_00_t_20.0,0.17617449164390564
372
+ HowTo_360P-2a3b_crf_10_ss_00_t_20.0,-0.7037580609321594
373
+ HowTo_360P-2d35_crf_10_ss_00_t_20.0,-0.7581713795661926
374
+ HowTo_360P-2fd5_crf_10_ss_00_t_20.0,-1.241492509841919
375
+ HowTo_360P-3aa6_crf_10_ss_00_t_20.0,-0.5480865836143494
376
+ HowTo_360P-4276_crf_10_ss_00_t_20.0,-0.0005157864652574062
377
+ HowTo_360P-4e4c_crf_10_ss_00_t_20.0,-0.5213264226913452
378
+ HowTo_360P-55e9_crf_10_ss_00_t_20.0,0.006559525616466999
379
+ HowTo_360P-5da7_crf_10_ss_00_t_20.0,0.034877728670835495
380
+ HowTo_360P-6093_crf_10_ss_00_t_20.0,0.012750073336064816
381
+ HowTo_360P-6a0e_crf_10_ss_00_t_20.0,-1.0177831649780273
382
+ HowTo_360P-7083_crf_10_ss_00_t_20.0,-0.5240670442581177
383
+ HowTo_360P-7dcd_crf_10_ss_00_t_20.0,-0.4526152014732361
384
+ HowTo_360P-7fb1_crf_10_ss_00_t_20.0,-0.3050309121608734
385
+ HowTo_480P-04f1_crf_10_ss_00_t_20.0,-0.30424413084983826
386
+ HowTo_480P-0cb3_crf_10_ss_00_t_20.0,0.18195800483226776
387
+ HowTo_480P-0d00_crf_10_ss_00_t_20.0,0.38247525691986084
388
+ HowTo_480P-0eb3_crf_10_ss_00_t_20.0,-0.8279114365577698
389
+ HowTo_480P-118d_crf_10_ss_00_t_20.0,-0.9487391114234924
390
+ HowTo_480P-15c1_crf_10_ss_00_t_20.0,-0.2559971213340759
391
+ HowTo_480P-221e_crf_10_ss_00_t_20.0,-0.23706798255443573
392
+ HowTo_480P-2610_crf_10_ss_00_t_20.0,-0.4031141400337219
393
+ HowTo_480P-32c9_crf_10_ss_00_t_20.0,-0.6200262308120728
394
+ HowTo_480P-3435_crf_10_ss_00_t_20.0,0.3649842441082001
395
+ HowTo_480P-470b_crf_10_ss_00_t_20.0,0.2762194573879242
396
+ HowTo_480P-48ac_crf_10_ss_00_t_20.0,-0.7394279837608337
397
+ HowTo_480P-4948_crf_10_ss_00_t_20.0,-0.9051721096038818
398
+ HowTo_480P-4a28_crf_10_ss_00_t_20.0,0.08517859876155853
399
+ HowTo_480P-4b6a_crf_10_ss_00_t_20.0,-0.6768788695335388
400
+ HowTo_480P-4c99_crf_10_ss_00_t_20.0,-0.31000760197639465
401
+ HowTo_480P-56a5_crf_10_ss_00_t_20.0,0.3225671052932739
402
+ HowTo_480P-60b3_crf_10_ss_00_t_20.0,-0.0108810318633914
403
+ HowTo_480P-63a2_crf_10_ss_00_t_20.0,0.14873644709587097
404
+ HowTo_480P-64a2_crf_10_ss_00_t_20.0,-0.3256961405277252
405
+ HowTo_480P-7579_crf_10_ss_00_t_20.0,0.5518554449081421
406
+ HowTo_480P-7c11_crf_10_ss_00_t_20.0,-0.3194868862628937
407
+ HowTo_720P-017a_crf_10_ss_00_t_20.0,0.6236892342567444
408
+ HowTo_720P-06eb_crf_10_ss_00_t_20.0,0.5497922301292419
409
+ HowTo_720P-0a67_crf_10_ss_00_t_20.0,0.7528321743011475
410
+ HowTo_720P-0b01_crf_10_ss_00_t_20.0,0.68189537525177
411
+ HowTo_720P-0c47_crf_10_ss_00_t_20.0,0.3574334383010864
412
+ HowTo_720P-111e_crf_10_ss_00_t_20.0,0.21042999625205994
413
+ HowTo_720P-12f7_crf_10_ss_00_t_20.0,-0.5057165026664734
414
+ HowTo_720P-21c6_crf_10_ss_00_t_20.0,-0.5907136797904968
415
+ HowTo_720P-269e_crf_10_ss_00_t_20.0,-0.04014163836836815
416
+ HowTo_720P-2cc6_crf_10_ss_00_t_20.0,-0.5362821221351624
417
+ HowTo_720P-37d0_crf_10_ss_00_t_20.0,0.7330066561698914
418
+ HowTo_720P-3813_crf_10_ss_00_t_20.0,-0.48650604486465454
419
+ HowTo_720P-3a5d_crf_10_ss_00_t_20.0,-0.6801843643188477
420
+ HowTo_720P-479b_crf_10_ss_00_t_20.0,0.21364732086658478
421
+ HowTo_720P-483c_crf_10_ss_00_t_20.0,-0.10823939740657806
422
+ HowTo_720P-4d55_crf_10_ss_00_t_20.0,0.44448912143707275
423
+ HowTo_720P-4d9e_crf_10_ss_00_t_20.0,0.21734020113945007
424
+ HowTo_720P-6323_crf_10_ss_00_t_20.0,0.29697278141975403
425
+ HowTo_720P-6791_crf_10_ss_00_t_20.0,-0.7205982208251953
426
+ HowTo_720P-7782_crf_10_ss_00_t_20.0,-0.1328248232603073
427
+ HowTo_720P-7878_crf_10_ss_00_t_20.0,0.40457868576049805
428
+ HowTo_720P-7c38_crf_10_ss_00_t_20.0,0.7835822701454163
429
+ Lecture_1080P-011f_crf_10_ss_00_t_20.0,-0.24923893809318542
430
+ Lecture_1080P-0201_crf_10_ss_00_t_20.0,-0.10607728362083435
431
+ Lecture_1080P-0c8a_crf_10_ss_00_t_20.0,0.8429110646247864
432
+ Lecture_1080P-1709_crf_10_ss_00_t_20.0,0.1905854344367981
433
+ Lecture_1080P-1969_crf_10_ss_00_t_20.0,0.15921418368816376
434
+ Lecture_360P-03bc_crf_10_ss_00_t_20.0,-0.5363813638687134
435
+ Lecture_360P-051a_crf_10_ss_00_t_20.0,-0.7769960761070251
436
+ Lecture_360P-114f_crf_10_ss_00_t_20.0,0.7093126773834229
437
+ Lecture_360P-20c3_crf_10_ss_00_t_20.0,-0.46931612491607666
438
+ Lecture_360P-2276_crf_10_ss_00_t_20.0,0.25991490483283997
439
+ Lecture_360P-27db_crf_10_ss_00_t_20.0,-0.39711669087409973
440
+ Lecture_360P-2c55_crf_10_ss_00_t_20.0,-0.011510021984577179
441
+ Lecture_360P-2d1f_crf_10_ss_00_t_20.0,0.0710950717329979
442
+ Lecture_360P-30eb_crf_10_ss_00_t_20.0,-0.184369295835495
443
+ Lecture_360P-311d_crf_10_ss_00_t_20.0,0.054239675402641296
444
+ Lecture_360P-3590_crf_10_ss_00_t_20.0,0.03882721811532974
445
+ Lecture_360P-44c2_crf_10_ss_00_t_20.0,-0.19468124210834503
446
+ Lecture_360P-4bb4_crf_10_ss_00_t_20.0,0.06827783584594727
447
+ Lecture_360P-4f00_crf_10_ss_00_t_20.0,-0.4404347836971283
448
+ Lecture_360P-506c_crf_10_ss_00_t_20.0,-0.5120733380317688
449
+ Lecture_360P-5594_crf_10_ss_00_t_20.0,-0.025897420942783356
450
+ Lecture_360P-5779_crf_10_ss_00_t_20.0,-0.3512234091758728
451
+ Lecture_360P-5aea_crf_10_ss_00_t_20.0,-0.5303210616111755
452
+ Lecture_360P-5d0a_crf_10_ss_00_t_20.0,-0.27145472168922424
453
+ Lecture_360P-6656_crf_10_ss_00_t_20.0,-0.13549694418907166
454
+ Lecture_360P-6d29_crf_10_ss_00_t_20.0,-0.641126811504364
455
+ Lecture_360P-7550_crf_10_ss_00_t_20.0,-0.16552722454071045
456
+ Lecture_360P-7a57_crf_10_ss_00_t_20.0,-0.4552502930164337
457
+ Lecture_360P-7f7e_crf_10_ss_00_t_20.0,0.25960540771484375
458
+ Lecture_480P-02f2_crf_10_ss_00_t_20.0,-0.3037053942680359
459
+ Lecture_480P-11df_crf_10_ss_00_t_20.0,0.04020729288458824
460
+ Lecture_480P-181a_crf_10_ss_00_t_20.0,-1.4740843772888184
461
+ Lecture_480P-1ec3_crf_10_ss_00_t_20.0,-0.4997447729110718
462
+ Lecture_480P-2513_crf_10_ss_00_t_20.0,-1.0537950992584229
463
+ Lecture_480P-2655_crf_10_ss_00_t_20.0,-0.44948333501815796
464
+ Lecture_480P-2ed0_crf_10_ss_00_t_20.0,-1.4491708278656006
465
+ Lecture_480P-369f_crf_10_ss_00_t_20.0,0.6616756319999695
466
+ Lecture_480P-3bdc_crf_10_ss_00_t_20.0,-0.6352403163909912
467
+ Lecture_480P-41b7_crf_10_ss_00_t_20.0,-0.0305232685059309
468
+ Lecture_480P-4272_crf_10_ss_00_t_20.0,-0.23082445561885834
469
+ Lecture_480P-42c3_crf_10_ss_00_t_20.0,-0.11888941377401352
470
+ Lecture_480P-4bc3_crf_10_ss_00_t_20.0,0.4545683264732361
471
+ Lecture_480P-4c86_crf_10_ss_00_t_20.0,-0.14614556729793549
472
+ Lecture_480P-5aee_crf_10_ss_00_t_20.0,-0.868336021900177
473
+ Lecture_480P-5cd7_crf_10_ss_00_t_20.0,0.5624434947967529
474
+ Lecture_480P-5f3a_crf_10_ss_00_t_20.0,-0.8026635646820068
475
+ Lecture_480P-6191_crf_10_ss_00_t_20.0,-0.11253798007965088
476
+ Lecture_480P-6b1e_crf_10_ss_00_t_20.0,-0.2361915111541748
477
+ Lecture_480P-71c0_crf_10_ss_00_t_20.0,-0.37854325771331787
478
+ Lecture_480P-71d6_crf_10_ss_00_t_20.0,-0.408276230096817
479
+ Lecture_480P-7205_crf_10_ss_00_t_20.0,-0.2279055416584015
480
+ Lecture_480P-73f6_crf_10_ss_00_t_20.0,-0.37847617268562317
481
+ Lecture_480P-74cf_crf_10_ss_00_t_20.0,-0.19507813453674316
482
+ Lecture_480P-74ea_crf_10_ss_00_t_20.0,-0.29171258211135864
483
+ Lecture_480P-7d77_crf_10_ss_00_t_20.0,0.11321013420820236
484
+ Lecture_480P-7e55_crf_10_ss_00_t_20.0,-0.008543969132006168
485
+ Lecture_480P-7eec_crf_10_ss_00_t_20.0,-0.683097779750824
486
+ Lecture_720P-003a_crf_10_ss_00_t_20.0,0.5227403044700623
487
+ Lecture_720P-07e0_crf_10_ss_00_t_20.0,0.5141653418540955
488
+ Lecture_720P-094d_crf_10_ss_00_t_20.0,-0.08019834011793137
489
+ Lecture_720P-0f64_crf_10_ss_00_t_20.0,-0.4143235683441162
490
+ Lecture_720P-1033_crf_10_ss_00_t_20.0,0.2899899184703827
491
+ Lecture_720P-10bc_crf_10_ss_00_t_20.0,-0.178229421377182
492
+ Lecture_720P-11e7_crf_10_ss_00_t_20.0,-0.914519727230072
493
+ Lecture_720P-1e62_crf_10_ss_00_t_20.0,0.40938159823417664
494
+ Lecture_720P-1f22_crf_10_ss_00_t_20.0,0.5806912183761597
495
+ Lecture_720P-2442_crf_10_ss_00_t_20.0,-0.03757748380303383
496
+ Lecture_720P-2b0f_crf_10_ss_00_t_20.0,0.3824576735496521
497
+ Lecture_720P-2f38_crf_10_ss_00_t_20.0,-0.2189851850271225
498
+ Lecture_720P-2f8c_crf_10_ss_00_t_20.0,0.46617722511291504
499
+ Lecture_720P-3b7f_crf_10_ss_00_t_20.0,0.7438739538192749
500
+ Lecture_720P-3f9f_crf_10_ss_00_t_20.0,-0.05122050642967224
501
+ Lecture_720P-4c87_crf_10_ss_00_t_20.0,0.5790327787399292
502
+ Lecture_720P-50b9_crf_10_ss_00_t_20.0,0.10597895830869675
503
+ Lecture_720P-5120_crf_10_ss_00_t_20.0,0.6893022656440735
504
+ Lecture_720P-53a1_crf_10_ss_00_t_20.0,0.4173823595046997
505
+ Lecture_720P-5725_crf_10_ss_00_t_20.0,0.4919053614139557
506
+ Lecture_720P-5c7e_crf_10_ss_00_t_20.0,-0.00505035649985075
507
+ Lecture_720P-6016_crf_10_ss_00_t_20.0,-0.3716169595718384
508
+ Lecture_720P-6951_crf_10_ss_00_t_20.0,0.6788332462310791
509
+ Lecture_720P-7189_crf_10_ss_00_t_20.0,0.6160353422164917
510
+ Lecture_720P-7dcf_crf_10_ss_00_t_20.0,0.5961082577705383
511
+ Lecture_720P-7e40_crf_10_ss_00_t_20.0,0.5736286640167236
512
+ LiveMusic_1080P-14af_crf_10_ss_00_t_20.0,0.7126275300979614
513
+ LiveMusic_1080P-157b_crf_10_ss_00_t_20.0,0.7241949439048767
514
+ LiveMusic_1080P-1ace_crf_10_ss_00_t_20.0,0.5192309021949768
515
+ LiveMusic_1080P-21dd_crf_10_ss_00_t_20.0,0.02408752217888832
516
+ LiveMusic_1080P-28fe_crf_10_ss_00_t_20.0,-0.20379067957401276
517
+ LiveMusic_1080P-2930_crf_10_ss_00_t_20.0,0.3422291576862335
518
+ LiveMusic_1080P-2b7a_crf_10_ss_00_t_20.0,0.11990073323249817
519
+ LiveMusic_1080P-2f7f_crf_10_ss_00_t_20.0,0.09261640906333923
520
+ LiveMusic_1080P-3549_crf_10_ss_00_t_20.0,0.15327365696430206
521
+ LiveMusic_1080P-3f95_crf_10_ss_00_t_20.0,0.42980220913887024
522
+ LiveMusic_1080P-48d5_crf_10_ss_00_t_20.0,0.6158114671707153
523
+ LiveMusic_1080P-51f6_crf_10_ss_00_t_20.0,0.20318876206874847
524
+ LiveMusic_1080P-541f_crf_10_ss_00_t_20.0,0.3569059371948242
525
+ LiveMusic_1080P-59b3_crf_10_ss_00_t_20.0,0.34689897298812866
526
+ LiveMusic_1080P-6b1c_crf_10_ss_00_t_20.0,0.3557552397251129
527
+ LiveMusic_1080P-6bbe_crf_10_ss_00_t_20.0,0.6417807936668396
528
+ LiveMusic_1080P-6d1a_crf_10_ss_00_t_20.0,-0.06024476885795593
529
+ LiveMusic_1080P-6fe2_crf_10_ss_00_t_20.0,-0.39133206009864807
530
+ LiveMusic_1080P-77e8_crf_10_ss_00_t_20.0,-0.20505809783935547
531
+ LiveMusic_1080P-7948_crf_10_ss_00_t_20.0,-0.531530499458313
532
+ LiveMusic_1080P-7ead_crf_10_ss_00_t_20.0,0.1964983195066452
533
+ LiveMusic_360P-121f_crf_10_ss_00_t_20.0,-0.2738904356956482
534
+ LiveMusic_360P-1d94_crf_10_ss_00_t_20.0,-0.4216490387916565
535
+ LiveMusic_360P-22c5_crf_10_ss_00_t_20.0,-0.3159995377063751
536
+ LiveMusic_360P-2508_crf_10_ss_00_t_20.0,-0.42023491859436035
537
+ LiveMusic_360P-265c_crf_10_ss_00_t_20.0,-0.9611147046089172
538
+ LiveMusic_360P-2b0f_crf_10_ss_00_t_20.0,-0.38946667313575745
539
+ LiveMusic_360P-3979_crf_10_ss_00_t_20.0,-1.242023229598999
540
+ LiveMusic_360P-3b96_crf_10_ss_00_t_20.0,-0.8670681118965149
541
+ LiveMusic_360P-3be0_crf_10_ss_00_t_20.0,-1.0457422733306885
542
+ LiveMusic_360P-48d5_crf_10_ss_00_t_20.0,-0.24896416068077087
543
+ LiveMusic_360P-5281_crf_10_ss_00_t_20.0,0.040897186845541
544
+ LiveMusic_360P-54d0_crf_10_ss_00_t_20.0,0.013947645202279091
545
+ LiveMusic_360P-5b57_crf_10_ss_00_t_20.0,-0.7981361746788025
546
+ LiveMusic_360P-6266_crf_10_ss_00_t_20.0,-0.28231754899024963
547
+ LiveMusic_360P-6640_crf_10_ss_00_t_20.0,-0.48982083797454834
548
+ LiveMusic_360P-6a65_crf_10_ss_00_t_20.0,-1.204540729522705
549
+ LiveMusic_360P-7483_crf_10_ss_00_t_20.0,-0.5697140693664551
550
+ LiveMusic_480P-0638_crf_10_ss_00_t_20.0,-0.6035326719284058
551
+ LiveMusic_480P-1a91_crf_10_ss_00_t_20.0,-0.47510722279548645
552
+ LiveMusic_480P-2019_crf_10_ss_00_t_20.0,-0.13328436017036438
553
+ LiveMusic_480P-2a5e_crf_10_ss_00_t_20.0,-0.44355329871177673
554
+ LiveMusic_480P-34be_crf_10_ss_00_t_20.0,0.21919305622577667
555
+ LiveMusic_480P-38f3_crf_10_ss_00_t_20.0,-0.6212456822395325
556
+ LiveMusic_480P-3d03_crf_10_ss_00_t_20.0,-0.7605329155921936
557
+ LiveMusic_480P-459c_crf_10_ss_00_t_20.0,-0.8417842388153076
558
+ LiveMusic_480P-474a_crf_10_ss_00_t_20.0,-1.8761636018753052
559
+ LiveMusic_480P-4c3a_crf_10_ss_00_t_20.0,-0.7723383903503418
560
+ LiveMusic_480P-4f88_crf_10_ss_00_t_20.0,-0.19279895722866058
561
+ LiveMusic_480P-559d_crf_10_ss_00_t_20.0,0.07405924797058105
562
+ LiveMusic_480P-58fb_crf_10_ss_00_t_20.0,-0.1792692393064499
563
+ LiveMusic_480P-61ef_crf_10_ss_00_t_20.0,-0.4350684583187103
564
+ LiveMusic_480P-6542_crf_10_ss_00_t_20.0,-0.48391440510749817
565
+ LiveMusic_480P-65ca_crf_10_ss_00_t_20.0,-0.2140018194913864
566
+ LiveMusic_720P-0cd5_crf_10_ss_00_t_20.0,0.45822933316230774
567
+ LiveMusic_720P-0d9f_crf_10_ss_00_t_20.0,-0.251968652009964
568
+ LiveMusic_720P-2620_crf_10_ss_00_t_20.0,-0.0047517200000584126
569
+ LiveMusic_720P-267b_crf_10_ss_00_t_20.0,0.00113681482616812
570
+ LiveMusic_720P-289b_crf_10_ss_00_t_20.0,-0.8318769931793213
571
+ LiveMusic_720P-3320_crf_10_ss_00_t_20.0,-0.3707069754600525
572
+ LiveMusic_720P-4ae2_crf_10_ss_00_t_20.0,-0.43126845359802246
573
+ LiveMusic_720P-58db_crf_10_ss_00_t_20.0,0.33153480291366577
574
+ LiveMusic_720P-6343_crf_10_ss_00_t_20.0,-0.40697717666625977
575
+ LiveMusic_720P-6452_crf_10_ss_00_t_20.0,-0.5783475637435913
576
+ LiveMusic_720P-653e_crf_10_ss_00_t_20.0,-0.5248231291770935
577
+ LiveMusic_720P-65f6_crf_10_ss_00_t_20.0,0.6310908794403076
578
+ LiveMusic_720P-66df_crf_10_ss_00_t_20.0,1.050475001335144
579
+ LiveMusic_720P-71c5_crf_10_ss_00_t_20.0,-0.13200925290584564
580
+ LyricVideo_1080P-0075_crf_10_ss_00_t_20.0,-0.003950105514377356
581
+ LyricVideo_1080P-0625_crf_10_ss_00_t_20.0,0.6698145866394043
582
+ LyricVideo_1080P-16b6_crf_10_ss_00_t_20.0,0.7580392956733704
583
+ LyricVideo_1080P-1b04_crf_10_ss_00_t_20.0,0.16503657400608063
584
+ LyricVideo_1080P-1d75_crf_10_ss_00_t_20.0,0.906058669090271
585
+ LyricVideo_1080P-28e8_crf_10_ss_00_t_20.0,-0.9577234983444214
586
+ LyricVideo_1080P-2946_crf_10_ss_00_t_20.0,0.5971480011940002
587
+ LyricVideo_1080P-3803_crf_10_ss_00_t_20.0,0.26650768518447876
588
+ LyricVideo_1080P-41ee_crf_10_ss_00_t_20.0,0.569329559803009
589
+ LyricVideo_1080P-4b40_crf_10_ss_00_t_20.0,-0.6124962568283081
590
+ LyricVideo_1080P-5461_crf_10_ss_00_t_20.0,0.3872339725494385
591
+ LyricVideo_1080P-584f_crf_10_ss_00_t_20.0,-0.10316430777311325
592
+ LyricVideo_1080P-63d4_crf_10_ss_00_t_20.0,0.5835211277008057
593
+ LyricVideo_1080P-63d9_crf_10_ss_00_t_20.0,0.37197861075401306
594
+ LyricVideo_1080P-725e_crf_10_ss_00_t_20.0,0.8528181314468384
595
+ LyricVideo_1080P-756a_crf_10_ss_00_t_20.0,0.5218166708946228
596
+ LyricVideo_360P-0ac7_crf_10_ss_00_t_20.0,-0.8034715056419373
597
+ LyricVideo_360P-17ce_crf_10_ss_00_t_20.0,-0.8483430743217468
598
+ LyricVideo_360P-3afc_crf_10_ss_00_t_20.0,-0.6977106332778931
599
+ LyricVideo_360P-5868_crf_10_ss_00_t_20.0,-0.45973265171051025
600
+ LyricVideo_360P-5e87_crf_10_ss_00_t_20.0,-0.4931679666042328
601
+ LyricVideo_480P-0a5b_crf_10_ss_00_t_20.0,0.27461671829223633
602
+ LyricVideo_480P-0f72_crf_10_ss_00_t_20.0,-0.993159294128418
603
+ LyricVideo_480P-1484_crf_10_ss_00_t_20.0,-0.3332880139350891
604
+ LyricVideo_480P-200a_crf_10_ss_00_t_20.0,-0.36809012293815613
605
+ LyricVideo_480P-2c50_crf_10_ss_00_t_20.0,-0.31903016567230225
606
+ LyricVideo_480P-3b2c_crf_10_ss_00_t_20.0,-0.12425122410058975
607
+ LyricVideo_480P-3ccf_crf_10_ss_00_t_20.0,-0.6401238441467285
608
+ LyricVideo_480P-4346_crf_10_ss_00_t_20.0,-0.5459728837013245
609
+ LyricVideo_480P-51e4_crf_10_ss_00_t_20.0,-0.19958128035068512
610
+ LyricVideo_480P-5c17_crf_10_ss_00_t_20.0,-0.1814155876636505
611
+ LyricVideo_480P-6fca_crf_10_ss_00_t_20.0,-1.0148252248764038
612
+ LyricVideo_480P-7919_crf_10_ss_00_t_20.0,-0.7983123064041138
613
+ LyricVideo_720P-068d_crf_10_ss_00_t_20.0,0.21069397032260895
614
+ LyricVideo_720P-081c_crf_10_ss_00_t_20.0,0.26363733410835266
615
+ LyricVideo_720P-0940_crf_10_ss_00_t_20.0,-0.2684130370616913
616
+ LyricVideo_720P-09ed_crf_10_ss_00_t_20.0,-0.29998674988746643
617
+ LyricVideo_720P-0ae4_crf_10_ss_00_t_20.0,0.22774386405944824
618
+ LyricVideo_720P-1c89_crf_10_ss_00_t_20.0,0.3476199209690094
619
+ LyricVideo_720P-2d24_crf_10_ss_00_t_20.0,0.5091370940208435
620
+ LyricVideo_720P-36fb_crf_10_ss_00_t_20.0,0.32673096656799316
621
+ LyricVideo_720P-4253_crf_10_ss_00_t_20.0,0.4046449065208435
622
+ LyricVideo_720P-47a9_crf_10_ss_00_t_20.0,-0.5348834991455078
623
+ LyricVideo_720P-59ed_crf_10_ss_00_t_20.0,0.9006332159042358
624
+ LyricVideo_720P-5d3a_crf_10_ss_00_t_20.0,0.4457039535045624
625
+ LyricVideo_720P-6f0c_crf_10_ss_00_t_20.0,-0.6670011281967163
626
+ LyricVideo_720P-6fc9_crf_10_ss_00_t_20.0,-0.7860807180404663
627
+ LyricVideo_720P-7003_crf_10_ss_00_t_20.0,0.17677733302116394
628
+ LyricVideo_720P-739a_crf_10_ss_00_t_20.0,-0.6905157566070557
629
+ LyricVideo_720P-74a0_crf_10_ss_00_t_20.0,0.5165480375289917
630
+ LyricVideo_720P-7f44_crf_10_ss_00_t_20.0,0.7302244305610657
631
+ MusicVideo_1080P-04b6_crf_10_ss_00_t_20.0,0.5977511405944824
632
+ MusicVideo_1080P-0706_crf_10_ss_00_t_20.0,0.29321885108947754
633
+ MusicVideo_1080P-0860_crf_10_ss_00_t_20.0,0.5854607820510864
634
+ MusicVideo_1080P-106d_crf_10_ss_00_t_20.0,-0.43087416887283325
635
+ MusicVideo_1080P-16e6_crf_10_ss_00_t_20.0,0.8374020457267761
636
+ MusicVideo_1080P-18f5_crf_10_ss_00_t_20.0,0.29945552349090576
637
+ MusicVideo_1080P-1a53_crf_10_ss_00_t_20.0,-0.5562608242034912
638
+ MusicVideo_1080P-24f5_crf_10_ss_00_t_20.0,0.9231261610984802
639
+ MusicVideo_1080P-2b2b_crf_10_ss_00_t_20.0,0.8391255140304565
640
+ MusicVideo_1080P-2d1c_crf_10_ss_00_t_20.0,0.15661419928073883
641
+ MusicVideo_1080P-34ff_crf_10_ss_00_t_20.0,-0.2005625069141388
642
+ MusicVideo_1080P-3a50_crf_10_ss_00_t_20.0,0.11869531124830246
643
+ MusicVideo_1080P-453f_crf_10_ss_00_t_20.0,0.7373391389846802
644
+ MusicVideo_1080P-4671_crf_10_ss_00_t_20.0,-0.7049528956413269
645
+ MusicVideo_1080P-4b61_crf_10_ss_00_t_20.0,0.3307496905326843
646
+ MusicVideo_1080P-5072_crf_10_ss_00_t_20.0,0.7196933031082153
647
+ MusicVideo_1080P-55af_crf_10_ss_00_t_20.0,0.030652817338705063
648
+ MusicVideo_1080P-59c4_crf_10_ss_00_t_20.0,0.359129399061203
649
+ MusicVideo_1080P-6260_crf_10_ss_00_t_20.0,-0.4771277606487274
650
+ MusicVideo_1080P-65c6_crf_10_ss_00_t_20.0,0.5604744553565979
651
+ MusicVideo_1080P-6c1d_crf_10_ss_00_t_20.0,0.6584911942481995
652
+ MusicVideo_1080P-6c88_crf_10_ss_00_t_20.0,-0.29686805605888367
653
+ MusicVideo_1080P-6fb1_crf_10_ss_00_t_20.0,0.5519713163375854
654
+ MusicVideo_1080P-7265_crf_10_ss_00_t_20.0,0.09052401781082153
655
+ MusicVideo_1080P-7706_crf_10_ss_00_t_20.0,-0.6127535700798035
656
+ MusicVideo_1080P-7f2e_crf_10_ss_00_t_20.0,0.0863945260643959
657
+ MusicVideo_360P-08cb_crf_10_ss_00_t_20.0,-0.5022565722465515
658
+ MusicVideo_360P-17e4_crf_10_ss_00_t_20.0,-0.41521841287612915
659
+ MusicVideo_360P-24b0_crf_10_ss_00_t_20.0,0.14795146882534027
660
+ MusicVideo_360P-2fcb_crf_10_ss_00_t_20.0,0.18559333682060242
661
+ MusicVideo_360P-462f_crf_10_ss_00_t_20.0,-0.1526375263929367
662
+ MusicVideo_360P-4de7_crf_10_ss_00_t_20.0,-0.6830282807350159
663
+ MusicVideo_360P-5358_crf_10_ss_00_t_20.0,-0.2731700539588928
664
+ MusicVideo_360P-5578_crf_10_ss_00_t_20.0,-0.4820803105831146
665
+ MusicVideo_360P-5699_crf_10_ss_00_t_20.0,0.49853694438934326
666
+ MusicVideo_360P-5f07_crf_10_ss_00_t_20.0,-0.6501492261886597
667
+ MusicVideo_360P-5f8d_crf_10_ss_00_t_20.0,-0.8746330142021179
668
+ MusicVideo_360P-648c_crf_10_ss_00_t_20.0,-0.08483954519033432
669
+ MusicVideo_360P-7b94_crf_10_ss_00_t_20.0,-0.9667816162109375
670
+ MusicVideo_480P-0448_crf_10_ss_00_t_20.0,-0.1590975672006607
671
+ MusicVideo_480P-12fb_crf_10_ss_00_t_20.0,-0.5325754284858704
672
+ MusicVideo_480P-184c_crf_10_ss_00_t_20.0,0.4075259566307068
673
+ MusicVideo_480P-1eee_crf_10_ss_00_t_20.0,-0.3940759599208832
674
+ MusicVideo_480P-2de0_crf_10_ss_00_t_20.0,-0.17048731446266174
675
+ MusicVideo_480P-3aa2_crf_10_ss_00_t_20.0,-0.840111494064331
676
+ MusicVideo_480P-3c8b_crf_10_ss_00_t_20.0,-0.70992112159729
677
+ MusicVideo_480P-41ce_crf_10_ss_00_t_20.0,0.2602657079696655
678
+ MusicVideo_480P-483b_crf_10_ss_00_t_20.0,-1.5385929346084595
679
+ MusicVideo_480P-4cc8_crf_10_ss_00_t_20.0,-0.23659645020961761
680
+ MusicVideo_480P-5461_crf_10_ss_00_t_20.0,0.5294555425643921
681
+ MusicVideo_480P-5830_crf_10_ss_00_t_20.0,-0.4118851125240326
682
+ MusicVideo_480P-6026_crf_10_ss_00_t_20.0,-0.6210314631462097
683
+ MusicVideo_480P-61ba_crf_10_ss_00_t_20.0,-1.6103898286819458
684
+ MusicVideo_480P-66b2_crf_10_ss_00_t_20.0,-0.14038841426372528
685
+ MusicVideo_480P-6fb6_crf_10_ss_00_t_20.0,0.29555636644363403
686
+ MusicVideo_480P-7643_crf_10_ss_00_t_20.0,-0.4329928457736969
687
+ MusicVideo_480P-7955_crf_10_ss_00_t_20.0,-0.34266674518585205
688
+ MusicVideo_720P-0355_crf_10_ss_00_t_20.0,-1.090802788734436
689
+ MusicVideo_720P-0752_crf_10_ss_00_t_20.0,0.762525737285614
690
+ MusicVideo_720P-14f0_crf_10_ss_00_t_20.0,-0.7265281677246094
691
+ MusicVideo_720P-2d7d_crf_10_ss_00_t_20.0,-0.5679306387901306
692
+ MusicVideo_720P-3698_crf_10_ss_00_t_20.0,0.7276455760002136
693
+ MusicVideo_720P-3b11_crf_10_ss_00_t_20.0,-0.027985045686364174
694
+ MusicVideo_720P-3c4c_crf_10_ss_00_t_20.0,0.7226401567459106
695
+ MusicVideo_720P-44c1_crf_10_ss_00_t_20.0,0.636665403842926
696
+ MusicVideo_720P-4895_crf_10_ss_00_t_20.0,0.13182754814624786
697
+ MusicVideo_720P-4ad2_crf_10_ss_00_t_20.0,0.5301458239555359
698
+ MusicVideo_720P-575d_crf_10_ss_00_t_20.0,-0.6869209408760071
699
+ MusicVideo_720P-5c9c_crf_10_ss_00_t_20.0,-0.853847086429596
700
+ MusicVideo_720P-62df_crf_10_ss_00_t_20.0,0.6029414534568787
701
+ MusicVideo_720P-734f_crf_10_ss_00_t_20.0,0.4622459411621094
702
+ MusicVideo_720P-7501_crf_10_ss_00_t_20.0,-0.9029911160469055
703
+ MusicVideo_720P-7bcf_crf_10_ss_00_t_20.0,-0.00910833477973938
704
+ NewsClip_1080P-00c3_crf_10_ss_00_t_20.0,0.6737439632415771
705
+ NewsClip_1080P-02fd_crf_10_ss_00_t_20.0,0.5680215358734131
706
+ NewsClip_1080P-06df_crf_10_ss_00_t_20.0,0.7447144389152527
707
+ NewsClip_1080P-0abf_crf_10_ss_00_t_20.0,0.04363558441400528
708
+ NewsClip_1080P-1db0_crf_10_ss_00_t_20.0,0.7178872227668762
709
+ NewsClip_1080P-22b3_crf_10_ss_00_t_20.0,0.3329400420188904
710
+ NewsClip_1080P-27fb_crf_10_ss_00_t_20.0,0.49768900871276855
711
+ NewsClip_1080P-2eb0_crf_10_ss_00_t_20.0,0.8564082980155945
712
+ NewsClip_1080P-3427_crf_10_ss_00_t_20.0,0.8305162787437439
713
+ NewsClip_1080P-3c7c_crf_10_ss_00_t_20.0,0.7750288844108582
714
+ NewsClip_1080P-4241_crf_10_ss_00_t_20.0,0.35301801562309265
715
+ NewsClip_1080P-48ae_crf_10_ss_00_t_20.0,-0.06695188581943512
716
+ NewsClip_1080P-5b53_crf_10_ss_00_t_20.0,0.9887518286705017
717
+ NewsClip_1080P-5be1_crf_10_ss_00_t_20.0,0.527905285358429
718
+ NewsClip_1080P-632e_crf_10_ss_00_t_20.0,-0.10752271860837936
719
+ NewsClip_1080P-67dc_crf_10_ss_00_t_20.0,0.5122339129447937
720
+ NewsClip_1080P-7816_crf_10_ss_00_t_20.0,-0.3019433617591858
721
+ NewsClip_360P-0376_crf_10_ss_00_t_20.0,-0.36525577306747437
722
+ NewsClip_360P-0c17_crf_10_ss_00_t_20.0,-0.43753600120544434
723
+ NewsClip_360P-0ff8_crf_10_ss_00_t_20.0,-0.0018507452914491296
724
+ NewsClip_360P-1093_crf_10_ss_00_t_20.0,-0.33979833126068115
725
+ NewsClip_360P-12fc_crf_10_ss_00_t_20.0,-0.5129290223121643
726
+ NewsClip_360P-1b1c_crf_10_ss_00_t_20.0,-0.15314863622188568
727
+ NewsClip_360P-1e1c_crf_10_ss_00_t_20.0,-0.10720694810152054
728
+ NewsClip_360P-1eae_crf_10_ss_00_t_20.0,-0.02715286985039711
729
+ NewsClip_360P-22ce_crf_10_ss_00_t_20.0,-0.5255513191223145
730
+ NewsClip_360P-274e_crf_10_ss_00_t_20.0,-0.261918842792511
731
+ NewsClip_360P-2986_crf_10_ss_00_t_20.0,-0.6758421659469604
732
+ NewsClip_360P-2c91_crf_10_ss_00_t_20.0,-0.6516825556755066
733
+ NewsClip_360P-311a_crf_10_ss_00_t_20.0,-0.9960353374481201
734
+ NewsClip_360P-3451_crf_10_ss_00_t_20.0,-0.9558371901512146
735
+ NewsClip_360P-4288_crf_10_ss_00_t_20.0,0.17486372590065002
736
+ NewsClip_360P-439a_crf_10_ss_00_t_20.0,-0.3217324912548065
737
+ NewsClip_360P-4417_crf_10_ss_00_t_20.0,-0.7801814675331116
738
+ NewsClip_360P-5052_crf_10_ss_00_t_20.0,-0.7507664561271667
739
+ NewsClip_360P-5752_crf_10_ss_00_t_20.0,-0.24321407079696655
740
+ NewsClip_360P-5bcc_crf_10_ss_00_t_20.0,-0.748708188533783
741
+ NewsClip_360P-5f3b_crf_10_ss_00_t_20.0,-0.860063910484314
742
+ NewsClip_360P-66ae_crf_10_ss_00_t_20.0,-0.43825727701187134
743
+ NewsClip_360P-67ce_crf_10_ss_00_t_20.0,-0.569445788860321
744
+ NewsClip_360P-7a96_crf_10_ss_00_t_20.0,-0.8891664147377014
745
+ NewsClip_480P-0269_crf_10_ss_00_t_20.0,-0.36020413041114807
746
+ NewsClip_480P-0ce5_crf_10_ss_00_t_20.0,-0.3323027193546295
747
+ NewsClip_480P-15fa_crf_10_ss_00_t_20.0,0.2995423376560211
748
+ NewsClip_480P-2407_crf_10_ss_00_t_20.0,-0.8259097337722778
749
+ NewsClip_480P-2642_crf_10_ss_00_t_20.0,-0.8393685817718506
750
+ NewsClip_480P-28eb_crf_10_ss_00_t_20.0,-0.6801376342773438
751
+ NewsClip_480P-2b9b_crf_10_ss_00_t_20.0,-0.9445531368255615
752
+ NewsClip_480P-2ba7_crf_10_ss_00_t_20.0,-0.8058068752288818
753
+ NewsClip_480P-31bd_crf_10_ss_00_t_20.0,0.41064512729644775
754
+ NewsClip_480P-3672_crf_10_ss_00_t_20.0,-0.022122737020254135
755
+ NewsClip_480P-36d0_crf_10_ss_00_t_20.0,0.18243592977523804
756
+ NewsClip_480P-4072_crf_10_ss_00_t_20.0,-0.8999327421188354
757
+ NewsClip_480P-41b1_crf_10_ss_00_t_20.0,-0.27667945623397827
758
+ NewsClip_480P-437c_crf_10_ss_00_t_20.0,-0.5620755553245544
759
+ NewsClip_480P-49c9_crf_10_ss_00_t_20.0,0.3033117949962616
760
+ NewsClip_480P-4a9f_crf_10_ss_00_t_20.0,-0.6681880354881287
761
+ NewsClip_480P-4e77_crf_10_ss_00_t_20.0,-0.32807597517967224
762
+ NewsClip_480P-543f_crf_10_ss_00_t_20.0,-0.31363990902900696
763
+ NewsClip_480P-5a3b_crf_10_ss_00_t_20.0,-0.9708979725837708
764
+ NewsClip_480P-5e7f_crf_10_ss_00_t_20.0,-0.19283632934093475
765
+ NewsClip_480P-606e_crf_10_ss_00_t_20.0,-0.7290987968444824
766
+ NewsClip_480P-6615_crf_10_ss_00_t_20.0,0.0729798898100853
767
+ NewsClip_480P-696e_crf_10_ss_00_t_20.0,-0.1976386308670044
768
+ NewsClip_480P-6bfa_crf_10_ss_00_t_20.0,0.3487587571144104
769
+ NewsClip_480P-7232_crf_10_ss_00_t_20.0,-0.46428439021110535
770
+ NewsClip_480P-72b8_crf_10_ss_00_t_20.0,0.1506689190864563
771
+ NewsClip_480P-7a0d_crf_10_ss_00_t_20.0,0.23977060616016388
772
+ NewsClip_720P-04ba_crf_10_ss_00_t_20.0,-0.44625964760780334
773
+ NewsClip_720P-0c81_crf_10_ss_00_t_20.0,0.13705536723136902
774
+ NewsClip_720P-1971_crf_10_ss_00_t_20.0,0.6462329626083374
775
+ NewsClip_720P-2182_crf_10_ss_00_t_20.0,0.17090930044651031
776
+ NewsClip_720P-23e0_crf_10_ss_00_t_20.0,0.7484737038612366
777
+ NewsClip_720P-2882_crf_10_ss_00_t_20.0,0.0918869599699974
778
+ NewsClip_720P-35d9_crf_10_ss_00_t_20.0,-0.9156078100204468
779
+ NewsClip_720P-37f7_crf_10_ss_00_t_20.0,0.4460237920284271
780
+ NewsClip_720P-4603_crf_10_ss_00_t_20.0,-0.26694267988204956
781
+ NewsClip_720P-4e87_crf_10_ss_00_t_20.0,0.7255493998527527
782
+ NewsClip_720P-5564_crf_10_ss_00_t_20.0,0.8296725153923035
783
+ NewsClip_720P-5787_crf_10_ss_00_t_20.0,0.723142147064209
784
+ NewsClip_720P-579b_crf_10_ss_00_t_20.0,-0.4975462257862091
785
+ NewsClip_720P-5d89_crf_10_ss_00_t_20.0,0.8814008831977844
786
+ NewsClip_720P-6016_crf_10_ss_00_t_20.0,0.8136022686958313
787
+ NewsClip_720P-6106_crf_10_ss_00_t_20.0,-0.24880298972129822
788
+ NewsClip_720P-672c_crf_10_ss_00_t_20.0,0.41211313009262085
789
+ NewsClip_720P-6a19_crf_10_ss_00_t_20.0,-0.006234363187104464
790
+ NewsClip_720P-6cde_crf_10_ss_00_t_20.0,0.8041635155677795
791
+ NewsClip_720P-72d2_crf_10_ss_00_t_20.0,0.8006581664085388
792
+ NewsClip_720P-739b_crf_10_ss_00_t_20.0,0.4818590581417084
793
+ NewsClip_720P-7745_crf_10_ss_00_t_20.0,1.068350911140442
794
+ NewsClip_720P-7b7e_crf_10_ss_00_t_20.0,0.7434659004211426
795
+ NewsClip_720P-7b97_crf_10_ss_00_t_20.0,-0.42473310232162476
796
+ NewsClip_720P-7c67_crf_10_ss_00_t_20.0,0.7927860617637634
797
+ NewsClip_720P-7e56_crf_10_ss_00_t_20.0,0.8681464791297913
798
+ Sports_1080P-0063_crf_10_ss_00_t_20.0,-0.3446296155452728
799
+ Sports_1080P-0640_crf_10_ss_00_t_20.0,-0.4497281014919281
800
+ Sports_1080P-08e1_crf_10_ss_00_t_20.0,0.7549381256103516
801
+ Sports_1080P-0d0c_crf_10_ss_00_t_20.0,0.3917313516139984
802
+ Sports_1080P-15d1_crf_10_ss_00_t_20.0,0.8978502154350281
803
+ Sports_1080P-19d8_crf_10_ss_00_t_20.0,0.8380432724952698
804
+ Sports_1080P-1ae3_crf_10_ss_00_t_20.0,-0.07154852151870728
805
+ Sports_1080P-1bf7_crf_10_ss_00_t_20.0,0.579853355884552
806
+ Sports_1080P-1d78_crf_10_ss_00_t_20.0,-0.29823705554008484
807
+ Sports_1080P-241e_crf_10_ss_00_t_20.0,0.7126649022102356
808
+ Sports_1080P-2524_crf_10_ss_00_t_20.0,-0.044034045189619064
809
+ Sports_1080P-28a6_crf_10_ss_00_t_20.0,0.8893395066261292
810
+ Sports_1080P-2a21_crf_10_ss_00_t_20.0,-0.4038480818271637
811
+ Sports_1080P-3a3b_crf_10_ss_00_t_20.0,-0.5057089924812317
812
+ Sports_1080P-3db7_crf_10_ss_00_t_20.0,0.24552729725837708
813
+ Sports_1080P-3eb0_crf_10_ss_00_t_20.0,0.005140502005815506
814
+ Sports_1080P-43e2_crf_10_ss_00_t_20.0,0.9143681526184082
815
+ Sports_1080P-46ed_crf_10_ss_00_t_20.0,-0.1794729083776474
816
+ Sports_1080P-47e9_crf_10_ss_00_t_20.0,0.7919036746025085
817
+ Sports_1080P-4978_crf_10_ss_00_t_20.0,0.5767731666564941
818
+ Sports_1080P-49c5_crf_10_ss_00_t_20.0,0.5527461767196655
819
+ Sports_1080P-4e05_crf_10_ss_00_t_20.0,-0.6090685725212097
820
+ Sports_1080P-53a0_crf_10_ss_00_t_20.0,0.04575571417808533
821
+ Sports_1080P-5d25_crf_10_ss_00_t_20.0,-0.18407540023326874
822
+ Sports_1080P-6571_crf_10_ss_00_t_20.0,0.2619781792163849
823
+ Sports_1080P-6710_crf_10_ss_00_t_20.0,0.6921200156211853
824
+ Sports_1080P-679d_crf_10_ss_00_t_20.0,0.7125162482261658
825
+ Sports_1080P-7203_crf_10_ss_00_t_20.0,0.3640681505203247
826
+ Sports_1080P-7584_crf_10_ss_00_t_20.0,-0.02622934803366661
827
+ Sports_1080P-76a2_crf_10_ss_00_t_20.0,0.33138513565063477
828
+ Sports_1080P-7dba_crf_10_ss_00_t_20.0,0.2127748429775238
829
+ Sports_2160P-0455_crf_10_ss_00_t_20.0,0.8334523439407349
830
+ Sports_2160P-086d_crf_10_ss_00_t_20.0,0.8531048893928528
831
+ Sports_2160P-1261_crf_10_ss_00_t_20.0,0.7308869957923889
832
+ Sports_2160P-1733_crf_10_ss_00_t_20.0,0.5954117774963379
833
+ Sports_2160P-1b70_crf_10_ss_00_t_20.0,0.5889742970466614
834
+ Sports_2160P-1ddc_crf_10_ss_00_t_20.0,-0.1954796463251114
835
+ Sports_2160P-210c_crf_10_ss_00_t_20.0,0.7712384462356567
836
+ Sports_2160P-2568_crf_10_ss_00_t_20.0,0.5311163067817688
837
+ Sports_2160P-2626_crf_10_ss_00_t_20.0,0.7634949088096619
838
+ Sports_2160P-279f_crf_10_ss_00_t_20.0,0.9583180546760559
839
+ Sports_2160P-2a83_crf_10_ss_00_t_20.0,0.6664121747016907
840
+ Sports_2160P-2e1d_crf_10_ss_00_t_20.0,0.8963235020637512
841
+ Sports_2160P-2eda_crf_10_ss_00_t_20.0,0.7991366386413574
842
+ Sports_2160P-300d_crf_10_ss_00_t_20.0,-0.3589009642601013
843
+ Sports_2160P-324e_crf_10_ss_00_t_20.0,0.7171198725700378
844
+ Sports_2160P-349c_crf_10_ss_00_t_20.0,0.6513508558273315
845
+ Sports_2160P-3794_crf_10_ss_00_t_20.0,-0.644402801990509
846
+ Sports_2160P-391a_crf_10_ss_00_t_20.0,0.8218992352485657
847
+ Sports_2160P-3a9a_crf_10_ss_00_t_20.0,0.14660924673080444
848
+ Sports_2160P-3d85_crf_10_ss_00_t_20.0,0.7449786067008972
849
+ Sports_2160P-4024_crf_10_ss_00_t_20.0,0.03178359195590019
850
+ Sports_2160P-4201_crf_10_ss_00_t_20.0,0.2653316557407379
851
+ Sports_2160P-49f1_crf_10_ss_00_t_20.0,0.6341010332107544
852
+ Sports_2160P-4aae_crf_10_ss_00_t_20.0,0.7572784423828125
853
+ Sports_2160P-4e9f_crf_10_ss_00_t_20.0,0.9333046078681946
854
+ Sports_2160P-5ef3_crf_10_ss_00_t_20.0,0.7148963809013367
855
+ Sports_2160P-69b9_crf_10_ss_00_t_20.0,1.1251108646392822
856
+ Sports_2160P-6b28_crf_10_ss_00_t_20.0,0.4074791371822357
857
+ Sports_2160P-7165_crf_10_ss_00_t_20.0,0.7739952802658081
858
+ Sports_2160P-7a11_crf_10_ss_00_t_20.0,0.6630496382713318
859
+ Sports_2160P-7af7_crf_10_ss_00_t_20.0,0.1791367083787918
860
+ Sports_2160P-7af8_crf_10_ss_00_t_20.0,-0.1624813973903656
861
+ Sports_2160P-7bbe_crf_10_ss_00_t_20.0,1.0512171983718872
862
+ Sports_360P-02c3_crf_10_ss_00_t_20.0,-0.13540072739124298
863
+ Sports_360P-0c66_crf_10_ss_00_t_20.0,-0.288833349943161
864
+ Sports_360P-0dda_crf_10_ss_00_t_20.0,-0.6430691480636597
865
+ Sports_360P-11b7_crf_10_ss_00_t_20.0,-1.0137978792190552
866
+ Sports_360P-1803_crf_10_ss_00_t_20.0,-0.10543037950992584
867
+ Sports_360P-1d5c_crf_10_ss_00_t_20.0,0.4630570113658905
868
+ Sports_360P-2725_crf_10_ss_00_t_20.0,-0.5235414505004883
869
+ Sports_360P-27b0_crf_10_ss_00_t_20.0,-0.29955998063087463
870
+ Sports_360P-2ace_crf_10_ss_00_t_20.0,-0.29157957434654236
871
+ Sports_360P-2e48_crf_10_ss_00_t_20.0,-0.8846095204353333
872
+ Sports_360P-301d_crf_10_ss_00_t_20.0,0.2630711793899536
873
+ Sports_360P-32d3_crf_10_ss_00_t_20.0,-0.504300057888031
874
+ Sports_360P-3960_crf_10_ss_00_t_20.0,-0.4697053134441376
875
+ Sports_360P-3e68_crf_10_ss_00_t_20.0,-0.7996551990509033
876
+ Sports_360P-4545_crf_10_ss_00_t_20.0,-1.232763648033142
877
+ Sports_360P-4802_crf_10_ss_00_t_20.0,-0.9616190195083618
878
+ Sports_360P-4ad7_crf_10_ss_00_t_20.0,-1.130899429321289
879
+ Sports_360P-50fd_crf_10_ss_00_t_20.0,-0.7409089803695679
880
+ Sports_360P-5252_crf_10_ss_00_t_20.0,-0.9364163875579834
881
+ Sports_360P-5ded_crf_10_ss_00_t_20.0,0.2777528464794159
882
+ Sports_360P-61f6_crf_10_ss_00_t_20.0,-0.2659201920032501
883
+ Sports_360P-65f3_crf_10_ss_00_t_20.0,-0.8559698462486267
884
+ Sports_360P-6b4f_crf_10_ss_00_t_20.0,-0.2836296856403351
885
+ Sports_360P-6c6f_crf_10_ss_00_t_20.0,-0.796739935874939
886
+ Sports_360P-6f62_crf_10_ss_00_t_20.0,0.15081727504730225
887
+ Sports_360P-7f50_crf_10_ss_00_t_20.0,-1.23819899559021
888
+ Sports_480P-0623_crf_10_ss_00_t_20.0,-0.415114164352417
889
+ Sports_480P-0827_crf_10_ss_00_t_20.0,-0.6817752122879028
890
+ Sports_480P-0af9_crf_10_ss_00_t_20.0,0.29207730293273926
891
+ Sports_480P-0bb9_crf_10_ss_00_t_20.0,0.16583777964115143
892
+ Sports_480P-0efe_crf_10_ss_00_t_20.0,0.19477839767932892
893
+ Sports_480P-1019_crf_10_ss_00_t_20.0,-0.5202978253364563
894
+ Sports_480P-1056_crf_10_ss_00_t_20.0,-0.43682658672332764
895
+ Sports_480P-11ec_crf_10_ss_00_t_20.0,-1.4115760326385498
896
+ Sports_480P-1396_crf_10_ss_00_t_20.0,-0.21635915338993073
897
+ Sports_480P-19e4_crf_10_ss_00_t_20.0,0.31073468923568726
898
+ Sports_480P-1d1b_crf_10_ss_00_t_20.0,-1.0412417650222778
899
+ Sports_480P-1fe9_crf_10_ss_00_t_20.0,-1.0683324337005615
900
+ Sports_480P-2053_crf_10_ss_00_t_20.0,-0.006565933581441641
901
+ Sports_480P-211f_crf_10_ss_00_t_20.0,-0.6208974123001099
902
+ Sports_480P-2dfe_crf_10_ss_00_t_20.0,-1.1858898401260376
903
+ Sports_480P-3195_crf_10_ss_00_t_20.0,0.06484898924827576
904
+ Sports_480P-3404_crf_10_ss_00_t_20.0,0.07271605730056763
905
+ Sports_480P-35ea_crf_10_ss_00_t_20.0,0.09166678041219711
906
+ Sports_480P-3ca4_crf_10_ss_00_t_20.0,-0.9965693950653076
907
+ Sports_480P-3dfd_crf_10_ss_00_t_20.0,0.2676629424095154
908
+ Sports_480P-3f50_crf_10_ss_00_t_20.0,0.6641125082969666
909
+ Sports_480P-41a5_crf_10_ss_00_t_20.0,-1.076130747795105
910
+ Sports_480P-44e5_crf_10_ss_00_t_20.0,-0.3580101728439331
911
+ Sports_480P-4cf8_crf_10_ss_00_t_20.0,-1.01991868019104
912
+ Sports_480P-5224_crf_10_ss_00_t_20.0,-0.6809135675430298
913
+ Sports_480P-5871_crf_10_ss_00_t_20.0,-0.8674823641777039
914
+ Sports_480P-5f38_crf_10_ss_00_t_20.0,0.38683849573135376
915
+ Sports_480P-6508_crf_10_ss_00_t_20.0,-0.45906418561935425
916
+ Sports_480P-6e41_crf_10_ss_00_t_20.0,0.016246149316430092
917
+ Sports_480P-77e3_crf_10_ss_00_t_20.0,-0.44252124428749084
918
+ Sports_480P-7f7e_crf_10_ss_00_t_20.0,-1.4054471254348755
919
+ Sports_720P-00a1_crf_10_ss_00_t_20.0,0.6559664011001587
920
+ Sports_720P-0104_crf_10_ss_00_t_20.0,0.7200896143913269
921
+ Sports_720P-058f_crf_10_ss_00_t_20.0,0.7735316157341003
922
+ Sports_720P-07d0_crf_10_ss_00_t_20.0,0.2917647361755371
923
+ Sports_720P-0b9e_crf_10_ss_00_t_20.0,0.5929381847381592
924
+ Sports_720P-17fb_crf_10_ss_00_t_20.0,0.12061060220003128
925
+ Sports_720P-2191_crf_10_ss_00_t_20.0,0.2191995084285736
926
+ Sports_720P-2234_crf_10_ss_00_t_20.0,0.604367733001709
927
+ Sports_720P-2632_crf_10_ss_00_t_20.0,0.2117285281419754
928
+ Sports_720P-2c06_crf_10_ss_00_t_20.0,0.19595052301883698
929
+ Sports_720P-2c80_crf_10_ss_00_t_20.0,-0.46381503343582153
930
+ Sports_720P-3072_crf_10_ss_00_t_20.0,-0.17436645925045013
931
+ Sports_720P-3338_crf_10_ss_00_t_20.0,0.8248438835144043
932
+ Sports_720P-33c6_crf_10_ss_00_t_20.0,-0.597926139831543
933
+ Sports_720P-38a1_crf_10_ss_00_t_20.0,-0.42905765771865845
934
+ Sports_720P-3eb4_crf_10_ss_00_t_20.0,0.4683467745780945
935
+ Sports_720P-3ffe_crf_10_ss_00_t_20.0,-0.5843958854675293
936
+ Sports_720P-4b69_crf_10_ss_00_t_20.0,0.46767133474349976
937
+ Sports_720P-4c6f_crf_10_ss_00_t_20.0,0.5051420331001282
938
+ Sports_720P-50cf_crf_10_ss_00_t_20.0,-0.29708921909332275
939
+ Sports_720P-531c_crf_10_ss_00_t_20.0,0.8956282734870911
940
+ Sports_720P-5833_crf_10_ss_00_t_20.0,-0.24414575099945068
941
+ Sports_720P-5ae1_crf_10_ss_00_t_20.0,0.6820895671844482
942
+ Sports_720P-5bfd_crf_10_ss_00_t_20.0,0.9136949777603149
943
+ Sports_720P-5e39_crf_10_ss_00_t_20.0,0.16101381182670593
944
+ Sports_720P-5ea4_crf_10_ss_00_t_20.0,0.7878159880638123
945
+ Sports_720P-62ba_crf_10_ss_00_t_20.0,-0.541969358921051
946
+ Sports_720P-675b_crf_10_ss_00_t_20.0,-0.1170727089047432
947
+ Sports_720P-69a0_crf_10_ss_00_t_20.0,0.5678133368492126
948
+ Sports_720P-6bb7_crf_10_ss_00_t_20.0,0.08858001232147217
949
+ Sports_720P-6d04_crf_10_ss_00_t_20.0,0.28367894887924194
950
+ Sports_720P-7ba7_crf_10_ss_00_t_20.0,-0.20903460681438446
951
+ TelevisionClip_1080P-0604_crf_10_ss_00_t_20.0,0.2598346173763275
952
+ TelevisionClip_1080P-3758_crf_10_ss_00_t_20.0,0.7209951877593994
953
+ TelevisionClip_1080P-39e3_crf_10_ss_00_t_20.0,0.9478079080581665
954
+ TelevisionClip_1080P-3b9b_crf_10_ss_00_t_20.0,0.8052120804786682
955
+ TelevisionClip_1080P-3d10_crf_10_ss_00_t_20.0,0.3262917995452881
956
+ TelevisionClip_1080P-3d83_crf_10_ss_00_t_20.0,-0.05713886767625809
957
+ TelevisionClip_1080P-3e42_crf_10_ss_00_t_20.0,-1.2917627096176147
958
+ TelevisionClip_1080P-401e_crf_10_ss_00_t_20.0,0.8065165877342224
959
+ TelevisionClip_1080P-4c24_crf_10_ss_00_t_20.0,0.7887372970581055
960
+ TelevisionClip_1080P-4c94_crf_10_ss_00_t_20.0,-0.08205284178256989
961
+ TelevisionClip_1080P-525d_crf_10_ss_00_t_20.0,0.7507799863815308
962
+ TelevisionClip_1080P-5278_crf_10_ss_00_t_20.0,0.5612227916717529
963
+ TelevisionClip_1080P-5e68_crf_10_ss_00_t_20.0,0.6789169311523438
964
+ TelevisionClip_1080P-6026_crf_10_ss_00_t_20.0,0.874374508857727
965
+ TelevisionClip_1080P-6282_crf_10_ss_00_t_20.0,0.6631176471710205
966
+ TelevisionClip_1080P-63e6_crf_10_ss_00_t_20.0,0.7232455611228943
967
+ TelevisionClip_1080P-68c6_crf_10_ss_00_t_20.0,0.9977424740791321
968
+ TelevisionClip_1080P-7eff_crf_10_ss_00_t_20.0,0.48911571502685547
969
+ TelevisionClip_360P-0951_crf_10_ss_00_t_20.0,-0.7052143812179565
970
+ TelevisionClip_360P-11d5_crf_10_ss_00_t_20.0,-0.6491656303405762
971
+ TelevisionClip_360P-29f1_crf_10_ss_00_t_20.0,-0.5916975736618042
972
+ TelevisionClip_360P-3b9a_crf_10_ss_00_t_20.0,-0.5858059525489807
973
+ TelevisionClip_360P-74dd_crf_10_ss_00_t_20.0,0.2576664984226227
974
+ TelevisionClip_360P-7b23_crf_10_ss_00_t_20.0,-0.30350369215011597
975
+ TelevisionClip_480P-09d8_crf_10_ss_00_t_20.0,-0.5763239860534668
976
+ TelevisionClip_480P-0e46_crf_10_ss_00_t_20.0,-0.6949751377105713
977
+ TelevisionClip_480P-19d3_crf_10_ss_00_t_20.0,0.05606190860271454
978
+ TelevisionClip_480P-1b49_crf_10_ss_00_t_20.0,-0.39828237891197205
979
+ TelevisionClip_480P-27ca_crf_10_ss_00_t_20.0,0.24683408439159393
980
+ TelevisionClip_480P-280f_crf_10_ss_00_t_20.0,0.01931557059288025
981
+ TelevisionClip_480P-2ead_crf_10_ss_00_t_20.0,-0.8651860356330872
982
+ TelevisionClip_480P-30b6_crf_10_ss_00_t_20.0,-0.4419967830181122
983
+ TelevisionClip_480P-3284_crf_10_ss_00_t_20.0,-0.620657742023468
984
+ TelevisionClip_480P-3617_crf_10_ss_00_t_20.0,-0.9188197255134583
985
+ TelevisionClip_480P-373d_crf_10_ss_00_t_20.0,-0.3751443028450012
986
+ TelevisionClip_480P-3c64_crf_10_ss_00_t_20.0,0.04869425669312477
987
+ TelevisionClip_480P-415c_crf_10_ss_00_t_20.0,0.10694341361522675
988
+ TelevisionClip_480P-436c_crf_10_ss_00_t_20.0,-0.787696123123169
989
+ TelevisionClip_480P-4c6b_crf_10_ss_00_t_20.0,0.31223347783088684
990
+ TelevisionClip_480P-59f0_crf_10_ss_00_t_20.0,-0.4850272238254547
991
+ TelevisionClip_480P-723e_crf_10_ss_00_t_20.0,-0.44109824299812317
992
+ TelevisionClip_720P-1862_crf_10_ss_00_t_20.0,-0.2286725789308548
993
+ TelevisionClip_720P-19de_crf_10_ss_00_t_20.0,0.6988077163696289
994
+ TelevisionClip_720P-1b61_crf_10_ss_00_t_20.0,1.049852967262268
995
+ TelevisionClip_720P-31ce_crf_10_ss_00_t_20.0,0.831471860408783
996
+ TelevisionClip_720P-3f4c_crf_10_ss_00_t_20.0,-0.7843971848487854
997
+ TelevisionClip_720P-44d1_crf_10_ss_00_t_20.0,0.5484246611595154
998
+ TelevisionClip_720P-4af1_crf_10_ss_00_t_20.0,0.2551601231098175
999
+ TelevisionClip_720P-4edb_crf_10_ss_00_t_20.0,0.577414870262146
1000
+ TelevisionClip_720P-5e93_crf_10_ss_00_t_20.0,0.7941839098930359
1001
+ TelevisionClip_720P-7c06_crf_10_ss_00_t_20.0,0.9400792717933655
1002
+ VerticalVideo_1080P-04d4_crf_10_ss_00_t_20.0,0.8518354892730713
1003
+ VerticalVideo_1080P-1105_crf_10_ss_00_t_20.0,0.020281286910176277
1004
+ VerticalVideo_1080P-1ac1_crf_10_ss_00_t_20.0,0.412655770778656
1005
+ VerticalVideo_1080P-1c86_crf_10_ss_00_t_20.0,-0.7645702362060547
1006
+ VerticalVideo_1080P-2195_crf_10_ss_00_t_20.0,-0.616824209690094
1007
+ VerticalVideo_1080P-2f00_crf_10_ss_00_t_20.0,0.7952212691307068
1008
+ VerticalVideo_1080P-34ba_crf_10_ss_00_t_20.0,-0.13516303896903992
1009
+ VerticalVideo_1080P-360f_crf_10_ss_00_t_20.0,0.6233192682266235
1010
+ VerticalVideo_1080P-3709_crf_10_ss_00_t_20.0,0.6341921091079712
1011
+ VerticalVideo_1080P-3a9b_crf_10_ss_00_t_20.0,0.7441487908363342
1012
+ VerticalVideo_1080P-3d96_crf_10_ss_00_t_20.0,0.6066237688064575
1013
+ VerticalVideo_1080P-4591_crf_10_ss_00_t_20.0,-0.055027130991220474
1014
+ VerticalVideo_1080P-4925_crf_10_ss_00_t_20.0,0.9461201429367065
1015
+ VerticalVideo_1080P-4b92_crf_10_ss_00_t_20.0,0.6735302805900574
1016
+ VerticalVideo_1080P-4da5_crf_10_ss_00_t_20.0,0.8954634666442871
1017
+ VerticalVideo_1080P-6e19_crf_10_ss_00_t_20.0,-0.5677234530448914
1018
+ VerticalVideo_1080P-73b6_crf_10_ss_00_t_20.0,0.4014216661453247
1019
+ VerticalVideo_1080P-766b_crf_10_ss_00_t_20.0,-0.3279535472393036
1020
+ VerticalVideo_1080P-7c5c_crf_10_ss_00_t_20.0,0.3623873293399811
1021
+ VerticalVideo_1080P-7cf3_crf_10_ss_00_t_20.0,0.5163726806640625
1022
+ VerticalVideo_2160P-6d62_crf_10_ss_00_t_20.0,0.5150818824768066
1023
+ VerticalVideo_360P-0d29_crf_10_ss_00_t_20.0,-0.799216091632843
1024
+ VerticalVideo_360P-1424_crf_10_ss_00_t_20.0,0.07958431541919708
1025
+ VerticalVideo_360P-145e_crf_10_ss_00_t_20.0,-0.8730207681655884
1026
+ VerticalVideo_360P-2bb0_crf_10_ss_00_t_20.0,-0.5462141633033752
1027
+ VerticalVideo_360P-2fa3_crf_10_ss_00_t_20.0,0.7257533073425293
1028
+ VerticalVideo_360P-3936_crf_10_ss_00_t_20.0,0.18244238197803497
1029
+ VerticalVideo_360P-3b4e_crf_10_ss_00_t_20.0,0.009391633793711662
1030
+ VerticalVideo_360P-42f1_crf_10_ss_00_t_20.0,0.13422039151191711
1031
+ VerticalVideo_360P-52c1_crf_10_ss_00_t_20.0,-0.619672954082489
1032
+ VerticalVideo_360P-5429_crf_10_ss_00_t_20.0,-0.019006511196494102
1033
+ VerticalVideo_360P-54f7_crf_10_ss_00_t_20.0,0.40723511576652527
1034
+ VerticalVideo_360P-579c_crf_10_ss_00_t_20.0,-0.27733832597732544
1035
+ VerticalVideo_360P-634f_crf_10_ss_00_t_20.0,0.6631572842597961
1036
+ VerticalVideo_360P-6490_crf_10_ss_00_t_20.0,-0.5471550822257996
1037
+ VerticalVideo_360P-694d_crf_10_ss_00_t_20.0,-0.5049325823783875
1038
+ VerticalVideo_360P-6ff2_crf_10_ss_00_t_20.0,-0.10801578313112259
1039
+ VerticalVideo_360P-70a9_crf_10_ss_00_t_20.0,-0.6841452717781067
1040
+ VerticalVideo_360P-7ba8_crf_10_ss_00_t_20.0,-0.06701913475990295
1041
+ VerticalVideo_360P-7ec3_crf_10_ss_00_t_20.0,0.15607339143753052
1042
+ VerticalVideo_480P-1bb9_crf_10_ss_00_t_20.0,0.5085644721984863
1043
+ VerticalVideo_480P-2aa1_crf_10_ss_00_t_20.0,0.5839132070541382
1044
+ VerticalVideo_480P-2fa4_crf_10_ss_00_t_20.0,0.5985134840011597
1045
+ VerticalVideo_480P-34b9_crf_10_ss_00_t_20.0,-0.21562449634075165
1046
+ VerticalVideo_480P-3a6a_crf_10_ss_00_t_20.0,0.8104732036590576
1047
+ VerticalVideo_480P-419c_crf_10_ss_00_t_20.0,0.27363988757133484
1048
+ VerticalVideo_480P-467e_crf_10_ss_00_t_20.0,-0.2580169439315796
1049
+ VerticalVideo_480P-51b7_crf_10_ss_00_t_20.0,-0.8502848148345947
1050
+ VerticalVideo_480P-550d_crf_10_ss_00_t_20.0,0.6668230295181274
1051
+ VerticalVideo_480P-572a_crf_10_ss_00_t_20.0,-0.004523195326328278
1052
+ VerticalVideo_480P-7278_crf_10_ss_00_t_20.0,-0.5860431790351868
1053
+ VerticalVideo_480P-729c_crf_10_ss_00_t_20.0,0.3331366181373596
1054
+ VerticalVideo_480P-790a_crf_10_ss_00_t_20.0,0.7456080913543701
1055
+ VerticalVideo_720P-0750_crf_10_ss_00_t_20.0,0.013371992856264114
1056
+ VerticalVideo_720P-0dac_crf_10_ss_00_t_20.0,-0.9127340316772461
1057
+ VerticalVideo_720P-0f61_crf_10_ss_00_t_20.0,0.7982628345489502
1058
+ VerticalVideo_720P-19fa_crf_10_ss_00_t_20.0,0.630281388759613
1059
+ VerticalVideo_720P-1ada_crf_10_ss_00_t_20.0,-0.1214730516076088
1060
+ VerticalVideo_720P-2efc_crf_10_ss_00_t_20.0,-0.20654603838920593
1061
+ VerticalVideo_720P-3df7_crf_10_ss_00_t_20.0,0.06673071533441544
1062
+ VerticalVideo_720P-42f2_crf_10_ss_00_t_20.0,-0.2241513580083847
1063
+ VerticalVideo_720P-44de_crf_10_ss_00_t_20.0,0.9240735769271851
1064
+ VerticalVideo_720P-456c_crf_10_ss_00_t_20.0,0.488832950592041
1065
+ VerticalVideo_720P-4730_crf_10_ss_00_t_20.0,0.5520771741867065
1066
+ VerticalVideo_720P-4ca7_crf_10_ss_00_t_20.0,0.80741286277771
1067
+ VerticalVideo_720P-57eb_crf_10_ss_00_t_20.0,0.5121644735336304
1068
+ VerticalVideo_720P-6580_crf_10_ss_00_t_20.0,-0.4122396409511566
1069
+ VerticalVideo_720P-665d_crf_10_ss_00_t_20.0,0.5880920886993408
1070
+ VerticalVideo_720P-669d_crf_10_ss_00_t_20.0,0.6131605505943298
1071
+ VerticalVideo_720P-6bf7_crf_10_ss_00_t_20.0,0.62846440076828
1072
+ VerticalVideo_720P-7517_crf_10_ss_00_t_20.0,0.6492398381233215
1073
+ VerticalVideo_720P-7859_crf_10_ss_00_t_20.0,0.4108674228191376
1074
+ VerticalVideo_720P-7c1d_crf_10_ss_00_t_20.0,0.8772449493408203
1075
+ Vlog_1080P-010b_crf_10_ss_00_t_20.0,0.9621304273605347
1076
+ Vlog_1080P-1609_crf_10_ss_00_t_20.0,-0.4269038438796997
1077
+ Vlog_1080P-18da_crf_10_ss_00_t_20.0,0.5527653694152832
1078
+ Vlog_1080P-19bb_crf_10_ss_00_t_20.0,-0.30166181921958923
1079
+ Vlog_1080P-1a53_crf_10_ss_00_t_20.0,0.5852010250091553
1080
+ Vlog_1080P-1df9_crf_10_ss_00_t_20.0,0.6385982036590576
1081
+ Vlog_1080P-1e70_crf_10_ss_00_t_20.0,-0.7889578342437744
1082
+ Vlog_1080P-1f0a_crf_10_ss_00_t_20.0,0.38792163133621216
1083
+ Vlog_1080P-21f5_crf_10_ss_00_t_20.0,-0.44744354486465454
1084
+ Vlog_1080P-2394_crf_10_ss_00_t_20.0,1.0631929636001587
1085
+ Vlog_1080P-23cb_crf_10_ss_00_t_20.0,-0.39488649368286133
1086
+ Vlog_1080P-25de_crf_10_ss_00_t_20.0,-1.1010098457336426
1087
+ Vlog_1080P-2600_crf_10_ss_00_t_20.0,0.25322484970092773
1088
+ Vlog_1080P-26dc_crf_10_ss_00_t_20.0,-0.09737955778837204
1089
+ Vlog_1080P-2cda_crf_10_ss_00_t_20.0,0.7856366634368896
1090
+ Vlog_1080P-34cb_crf_10_ss_00_t_20.0,-0.19762009382247925
1091
+ Vlog_1080P-35cd_crf_10_ss_00_t_20.0,-0.3680741488933563
1092
+ Vlog_1080P-3744_crf_10_ss_00_t_20.0,0.5832158327102661
1093
+ Vlog_1080P-45c9_crf_10_ss_00_t_20.0,-0.677267849445343
1094
+ Vlog_1080P-4921_crf_10_ss_00_t_20.0,-0.47916924953460693
1095
+ Vlog_1080P-4ba9_crf_10_ss_00_t_20.0,-0.03166105970740318
1096
+ Vlog_1080P-4f26_crf_10_ss_00_t_20.0,0.1775350719690323
1097
+ Vlog_1080P-52fe_crf_10_ss_00_t_20.0,0.013750705868005753
1098
+ Vlog_1080P-5904_crf_10_ss_00_t_20.0,0.7255246043205261
1099
+ Vlog_1080P-5f28_crf_10_ss_00_t_20.0,0.029549142345786095
1100
+ Vlog_1080P-62fc_crf_10_ss_00_t_20.0,0.5907721519470215
1101
+ Vlog_1080P-64b6_crf_10_ss_00_t_20.0,0.7176833748817444
1102
+ Vlog_1080P-6686_crf_10_ss_00_t_20.0,0.07305429875850677
1103
+ Vlog_1080P-687a_crf_10_ss_00_t_20.0,-0.09677267074584961
1104
+ Vlog_1080P-7062_crf_10_ss_00_t_20.0,0.669283926486969
1105
+ Vlog_1080P-7b67_crf_10_ss_00_t_20.0,-0.08605465292930603
1106
+ Vlog_1080P-7e8c_crf_10_ss_00_t_20.0,-0.6624013781547546
1107
+ Vlog_2160P-030a_crf_10_ss_00_t_20.0,-0.8522883057594299
1108
+ Vlog_2160P-0577_crf_10_ss_00_t_20.0,0.5456452965736389
1109
+ Vlog_2160P-059c_crf_10_ss_00_t_20.0,1.0327000617980957
1110
+ Vlog_2160P-09c9_crf_10_ss_00_t_20.0,0.19999529421329498
1111
+ Vlog_2160P-13a1_crf_10_ss_00_t_20.0,0.34099432826042175
1112
+ Vlog_2160P-13fe_crf_10_ss_00_t_20.0,-0.05182996392250061
1113
+ Vlog_2160P-19f9_crf_10_ss_00_t_20.0,0.44443029165267944
1114
+ Vlog_2160P-1ff6_crf_10_ss_00_t_20.0,-0.4602903127670288
1115
+ Vlog_2160P-255c_crf_10_ss_00_t_20.0,0.8445203304290771
1116
+ Vlog_2160P-2953_crf_10_ss_00_t_20.0,-0.10446197539567947
1117
+ Vlog_2160P-2b2d_crf_10_ss_00_t_20.0,0.26645156741142273
1118
+ Vlog_2160P-3019_crf_10_ss_00_t_20.0,0.8878172039985657
1119
+ Vlog_2160P-310b_crf_10_ss_00_t_20.0,0.7141506671905518
1120
+ Vlog_2160P-327a_crf_10_ss_00_t_20.0,0.22667203843593597
1121
+ Vlog_2160P-342a_crf_10_ss_00_t_20.0,0.39110544323921204
1122
+ Vlog_2160P-3a75_crf_10_ss_00_t_20.0,0.16088564693927765
1123
+ Vlog_2160P-408f_crf_10_ss_00_t_20.0,0.1978733241558075
1124
+ Vlog_2160P-416c_crf_10_ss_00_t_20.0,0.43336838483810425
1125
+ Vlog_2160P-4362_crf_10_ss_00_t_20.0,0.9961375594139099
1126
+ Vlog_2160P-4419_crf_10_ss_00_t_20.0,0.6038097143173218
1127
+ Vlog_2160P-4655_crf_10_ss_00_t_20.0,0.3740270435810089
1128
+ Vlog_2160P-4f98_crf_10_ss_00_t_20.0,-0.3071756660938263
1129
+ Vlog_2160P-522f_crf_10_ss_00_t_20.0,0.6422466039657593
1130
+ Vlog_2160P-56e4_crf_10_ss_00_t_20.0,0.37554070353507996
1131
+ Vlog_2160P-5874_crf_10_ss_00_t_20.0,0.1955702304840088
1132
+ Vlog_2160P-62b2_crf_10_ss_00_t_20.0,-0.10719842463731766
1133
+ Vlog_2160P-6629_crf_10_ss_00_t_20.0,0.7971913814544678
1134
+ Vlog_2160P-6f92_crf_10_ss_00_t_20.0,0.2997395098209381
1135
+ Vlog_2160P-700c_crf_10_ss_00_t_20.0,0.4513530731201172
1136
+ Vlog_2160P-70d6_crf_10_ss_00_t_20.0,-0.6413047313690186
1137
+ Vlog_2160P-7324_crf_10_ss_00_t_20.0,0.5263070464134216
1138
+ Vlog_2160P-77d8_crf_10_ss_00_t_20.0,-0.06963691115379333
1139
+ Vlog_2160P-7b10_crf_10_ss_00_t_20.0,0.3460785150527954
1140
+ Vlog_2160P-7b5c_crf_10_ss_00_t_20.0,-0.18870073556900024
1141
+ Vlog_2160P-7bfb_crf_10_ss_00_t_20.0,0.7257019877433777
1142
+ Vlog_2160P-7f05_crf_10_ss_00_t_20.0,-0.6284916996955872
1143
+ Vlog_360P-1e5b_crf_10_ss_00_t_20.0,-0.3146393895149231
1144
+ Vlog_360P-22a0_crf_10_ss_00_t_20.0,-0.28597983717918396
1145
+ Vlog_360P-2973_crf_10_ss_00_t_20.0,-0.6982135772705078
1146
+ Vlog_360P-2e9d_crf_10_ss_00_t_20.0,-0.6894376277923584
1147
+ Vlog_360P-3121_crf_10_ss_00_t_20.0,-0.45558416843414307
1148
+ Vlog_360P-3bc2_crf_10_ss_00_t_20.0,-0.20734569430351257
1149
+ Vlog_360P-433e_crf_10_ss_00_t_20.0,-0.30626773834228516
1150
+ Vlog_360P-4697_crf_10_ss_00_t_20.0,-0.037908513098955154
1151
+ Vlog_360P-4795_crf_10_ss_00_t_20.0,-0.7823100686073303
1152
+ Vlog_360P-4ad1_crf_10_ss_00_t_20.0,-0.23577958345413208
1153
+ Vlog_360P-4d71_crf_10_ss_00_t_20.0,-0.20185501873493195
1154
+ Vlog_360P-6279_crf_10_ss_00_t_20.0,0.0014837565831840038
1155
+ Vlog_360P-7334_crf_10_ss_00_t_20.0,-0.3764302134513855
1156
+ Vlog_360P-76ae_crf_10_ss_00_t_20.0,-0.8435363173484802
1157
+ Vlog_360P-7efe_crf_10_ss_00_t_20.0,-0.5634471774101257
1158
+ Vlog_480P-08c7_crf_10_ss_00_t_20.0,-0.05735957995057106
1159
+ Vlog_480P-0980_crf_10_ss_00_t_20.0,-0.9000709652900696
1160
+ Vlog_480P-0ddc_crf_10_ss_00_t_20.0,0.3115215599536896
1161
+ Vlog_480P-1b39_crf_10_ss_00_t_20.0,-1.1788170337677002
1162
+ Vlog_480P-206f_crf_10_ss_00_t_20.0,-0.6144147515296936
1163
+ Vlog_480P-279d_crf_10_ss_00_t_20.0,-0.056195344775915146
1164
+ Vlog_480P-2cad_crf_10_ss_00_t_20.0,-0.38826414942741394
1165
+ Vlog_480P-34ba_crf_10_ss_00_t_20.0,0.18360698223114014
1166
+ Vlog_480P-476b_crf_10_ss_00_t_20.0,-0.07086940109729767
1167
+ Vlog_480P-4beb_crf_10_ss_00_t_20.0,-0.6788839101791382
1168
+ Vlog_480P-5275_crf_10_ss_00_t_20.0,-0.41175469756126404
1169
+ Vlog_480P-535d_crf_10_ss_00_t_20.0,-0.7038493156433105
1170
+ Vlog_480P-59dc_crf_10_ss_00_t_20.0,-0.08769164979457855
1171
+ Vlog_480P-5dfe_crf_10_ss_00_t_20.0,-0.1470651626586914
1172
+ Vlog_480P-5e1c_crf_10_ss_00_t_20.0,-0.8443536162376404
1173
+ Vlog_480P-5ebd_crf_10_ss_00_t_20.0,0.13136157393455505
1174
+ Vlog_480P-6395_crf_10_ss_00_t_20.0,0.4484257996082306
1175
+ Vlog_480P-6c60_crf_10_ss_00_t_20.0,-0.7818073630332947
1176
+ Vlog_480P-7237_crf_10_ss_00_t_20.0,0.47719499468803406
1177
+ Vlog_480P-7615_crf_10_ss_00_t_20.0,-0.5504193902015686
1178
+ Vlog_480P-7754_crf_10_ss_00_t_20.0,0.15005554258823395
1179
+ Vlog_480P-7d0c_crf_10_ss_00_t_20.0,0.008145852014422417
1180
+ Vlog_480P-7ecf_crf_10_ss_00_t_20.0,-0.10237663239240646
1181
+ Vlog_720P-033a_crf_10_ss_00_t_20.0,0.8826038241386414
1182
+ Vlog_720P-03d5_crf_10_ss_00_t_20.0,0.00364131317473948
1183
+ Vlog_720P-03f9_crf_10_ss_00_t_20.0,0.6561322808265686
1184
+ Vlog_720P-0d79_crf_10_ss_00_t_20.0,0.13642308115959167
1185
+ Vlog_720P-1003_crf_10_ss_00_t_20.0,0.28669390082359314
1186
+ Vlog_720P-11c5_crf_10_ss_00_t_20.0,0.037225428968667984
1187
+ Vlog_720P-135c_crf_10_ss_00_t_20.0,0.04985223710536957
1188
+ Vlog_720P-141f_crf_10_ss_00_t_20.0,-0.7273589372634888
1189
+ Vlog_720P-155f_crf_10_ss_00_t_20.0,0.5397931337356567
1190
+ Vlog_720P-2929_crf_10_ss_00_t_20.0,0.5705925226211548
1191
+ Vlog_720P-329f_crf_10_ss_00_t_20.0,0.21074186265468597
1192
+ Vlog_720P-32b2_crf_10_ss_00_t_20.0,0.8718011975288391
1193
+ Vlog_720P-343d_crf_10_ss_00_t_20.0,0.05696051940321922
1194
+ Vlog_720P-372d_crf_10_ss_00_t_20.0,0.40156832337379456
1195
+ Vlog_720P-3e9c_crf_10_ss_00_t_20.0,0.5621353387832642
1196
+ Vlog_720P-4e3d_crf_10_ss_00_t_20.0,-0.46946123242378235
1197
+ Vlog_720P-5364_crf_10_ss_00_t_20.0,-0.8291072845458984
1198
+ Vlog_720P-55b6_crf_10_ss_00_t_20.0,0.6998990774154663
1199
+ Vlog_720P-561e_crf_10_ss_00_t_20.0,0.7306910753250122
1200
+ Vlog_720P-5d08_crf_10_ss_00_t_20.0,0.5356259346008301
1201
+ Vlog_720P-60f8_crf_10_ss_00_t_20.0,0.805909276008606
1202
+ Vlog_720P-6d56_crf_10_ss_00_t_20.0,0.23803965747356415