Datasets:
Tasks:
Video Classification
Modalities:
Video
Languages:
English
Size:
10K<n<100K
Tags:
video
License:
Upload folder using huggingface_hub
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +3 -0
- .gitignore +1 -0
- README.md +39 -0
- k600/.processed_videos.log +3 -0
- k600/annotations/train.txt +3 -0
- k600/k600_reorganize.py +85 -0
- k600/quality_check.py +279 -0
- k600/readme.md +7 -0
- k600/removed_actions.txt +321 -0
- k600/test/.gitattributes +59 -0
- k600/test/.ipynb_checkpoints/kinetics-test-checkpoint.json +302 -0
- k600/test/1.mp4 +3 -0
- k600/test/10.mp4 +3 -0
- k600/test/11.mp4 +3 -0
- k600/test/12.mp4 +3 -0
- k600/test/13.mp4 +3 -0
- k600/test/14.mp4 +3 -0
- k600/test/15.mp4 +3 -0
- k600/test/16.mp4 +3 -0
- k600/test/17.mp4 +3 -0
- k600/test/18.mp4 +3 -0
- k600/test/19.mp4 +3 -0
- k600/test/2.mp4 +3 -0
- k600/test/20.mp4 +3 -0
- k600/test/21.mp4 +3 -0
- k600/test/22.mp4 +3 -0
- k600/test/23.mp4 +3 -0
- k600/test/24.mp4 +3 -0
- k600/test/25.mp4 +3 -0
- k600/test/26.mp4 +3 -0
- k600/test/27.mp4 +3 -0
- k600/test/28.mp4 +3 -0
- k600/test/29.mp4 +3 -0
- k600/test/3.mp4 +3 -0
- k600/test/30.mp4 +3 -0
- k600/test/31.mp4 +3 -0
- k600/test/32.mp4 +3 -0
- k600/test/33.mp4 +3 -0
- k600/test/34.mp4 +3 -0
- k600/test/35.mp4 +3 -0
- k600/test/36.mp4 +3 -0
- k600/test/37.mp4 +3 -0
- k600/test/38.mp4 +3 -0
- k600/test/39.mp4 +3 -0
- k600/test/4.mp4 +3 -0
- k600/test/40.mp4 +3 -0
- k600/test/41.mp4 +3 -0
- k600/test/42.mp4 +3 -0
- k600/test/43.mp4 +3 -0
- k600/test/44.mp4 +3 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
k600/.processed_videos.log filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
k600/annotations/train.txt filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
k600/train/train/video_verification.log filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
|
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Dataset Preparation for IV2 Retraining
|
| 2 |
+
|
| 3 |
+
### Downloading
|
| 4 |
+
```
|
| 5 |
+
> git clone https://github.com/qingy1337/kinetics-dataset.git
|
| 6 |
+
> cd kinetics-dataset
|
| 7 |
+
/kinetics-dataset > git pull
|
| 8 |
+
/kinetics-dataset > bash ./k600_downloader.sh
|
| 9 |
+
/kinetics-dataset > bash ./k600_extractor.sh
|
| 10 |
+
```
|
| 11 |
+
|
| 12 |
+
### Reorganizing into folders
|
| 13 |
+
```
|
| 14 |
+
> cd kinetics-dataset
|
| 15 |
+
/kinetics-dataset > mv k600_reorganize.py ./k600/
|
| 16 |
+
/kinetics-dataset > cd k600
|
| 17 |
+
/kinetics-dataset/k600 > python k600_reorganize annotations/train.txt
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
### Remove un-ideal actions
|
| 21 |
+
```
|
| 22 |
+
/kinetics-dataset > mv removed_actions.txt ./k600/
|
| 23 |
+
/kinetics-dataset > cd k600
|
| 24 |
+
/kinetics-dataset/k600 > grep -v '^$' removed_actions.txt | tr '\n' '\0' | xargs -0 -I {} rm -rf "./train/train/{}/"
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
### Filter only quality videos (~30 fps, ~10 seconds in duration)
|
| 28 |
+
```
|
| 29 |
+
/kinetics-dataset > mv quality_check.py ./k600/
|
| 30 |
+
/kinetics-dataset > cd k600
|
| 31 |
+
/kinetics-dataset/k600 > python quality_check.py
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
### Generate JSON dataset (compatible with IV2 training)
|
| 35 |
+
```
|
| 36 |
+
/kinetics-dataset > mv generate_json_dataset.py ./k600/train/train/
|
| 37 |
+
/kinetics-dataset > cd k600/train/train/
|
| 38 |
+
/kinetics-dataset/k600/train/train > python generate_json_dataset.py # output saved to kinetics.json in /kinetics-dataset/k600/train/train/
|
| 39 |
+
```
|
k600/.processed_videos.log
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6a0640a1b783c6b273ec4adb4112aae8a0765ce72b64892c19c822d425f73c7a
|
| 3 |
+
size 34388512
|
k600/annotations/train.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7dc172fcffa9d6706f7ed841313614faea428fc5eadef3b435dfad954b73e8f
|
| 3 |
+
size 12849665
|
k600/k600_reorganize.py
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import shutil
|
| 3 |
+
import sys
|
| 4 |
+
import json
|
| 5 |
+
|
| 6 |
+
def parse_txt_to_json(txt_path):
|
| 7 |
+
"""Parse a .txt file into a JSON dict structure."""
|
| 8 |
+
with open(txt_path, 'r', encoding='utf-8') as f:
|
| 9 |
+
lines = [line.rstrip('\n') for line in f]
|
| 10 |
+
|
| 11 |
+
sections = []
|
| 12 |
+
current_section = []
|
| 13 |
+
|
| 14 |
+
for line in lines:
|
| 15 |
+
if line:
|
| 16 |
+
current_section.append(line)
|
| 17 |
+
else:
|
| 18 |
+
if current_section:
|
| 19 |
+
sections.append(current_section)
|
| 20 |
+
current_section = []
|
| 21 |
+
|
| 22 |
+
if current_section:
|
| 23 |
+
sections.append(current_section)
|
| 24 |
+
|
| 25 |
+
result = {}
|
| 26 |
+
|
| 27 |
+
for section in sections:
|
| 28 |
+
if not section:
|
| 29 |
+
continue
|
| 30 |
+
|
| 31 |
+
tag_line = section[0]
|
| 32 |
+
tag = tag_line.rstrip(':')
|
| 33 |
+
content = section[1:]
|
| 34 |
+
|
| 35 |
+
result[tag] = content
|
| 36 |
+
|
| 37 |
+
return result
|
| 38 |
+
|
| 39 |
+
def organize_files(json_data, base_dir):
|
| 40 |
+
"""Organize files into directories based on JSON data."""
|
| 41 |
+
os.makedirs(base_dir, exist_ok=True)
|
| 42 |
+
|
| 43 |
+
for key in json_data:
|
| 44 |
+
if key == "train":
|
| 45 |
+
continue
|
| 46 |
+
|
| 47 |
+
dir_path = os.path.join(base_dir, key)
|
| 48 |
+
os.makedirs(dir_path, exist_ok=True)
|
| 49 |
+
|
| 50 |
+
for file_name in json_data[key]:
|
| 51 |
+
src = os.path.join(base_dir, file_name)
|
| 52 |
+
dst = os.path.join(dir_path, file_name)
|
| 53 |
+
|
| 54 |
+
if not os.path.exists(src):
|
| 55 |
+
print(f"⚠️ File not found: {src}. Skipping.")
|
| 56 |
+
continue
|
| 57 |
+
|
| 58 |
+
try:
|
| 59 |
+
shutil.move(src, dst)
|
| 60 |
+
print(f"✅ Moved: {src} → {dst}")
|
| 61 |
+
except Exception as e:
|
| 62 |
+
print(f"❌ Error moving {src}: {e}")
|
| 63 |
+
|
| 64 |
+
def main():
|
| 65 |
+
if len(sys.argv) != 2:
|
| 66 |
+
print("Usage: python organize_videos.py <input.txt>")
|
| 67 |
+
return
|
| 68 |
+
|
| 69 |
+
input_txt = sys.argv[1]
|
| 70 |
+
output_json = "structure.json"
|
| 71 |
+
base_dir = "./train"
|
| 72 |
+
|
| 73 |
+
# Step 1: Parse .txt into JSON
|
| 74 |
+
print("Parsing input file...")
|
| 75 |
+
json_data = parse_txt_to_json(input_txt)
|
| 76 |
+
|
| 77 |
+
print(f"Got {len(json_data.keys())} categories!")
|
| 78 |
+
|
| 79 |
+
# Step 2: Organize files
|
| 80 |
+
print("Organizing files into directories...")
|
| 81 |
+
organize_files(json_data, base_dir)
|
| 82 |
+
print("✅ Done!")
|
| 83 |
+
|
| 84 |
+
if __name__ == "__main__":
|
| 85 |
+
main()
|
k600/quality_check.py
ADDED
|
@@ -0,0 +1,279 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import subprocess
|
| 3 |
+
import json
|
| 4 |
+
from fractions import Fraction
|
| 5 |
+
import sys
|
| 6 |
+
import concurrent.futures
|
| 7 |
+
import time
|
| 8 |
+
import threading # Added for locking the log file
|
| 9 |
+
|
| 10 |
+
# --- (get_video_info function remains the same as the robust version) ---
|
| 11 |
+
def get_video_info(video_path):
|
| 12 |
+
# Reuse the robust get_video_info function from the previous version
|
| 13 |
+
cmd = [
|
| 14 |
+
"ffprobe", "-v", "error", "-show_entries",
|
| 15 |
+
"format=duration:stream=codec_type,r_frame_rate",
|
| 16 |
+
"-of", "json", "-i", video_path
|
| 17 |
+
]
|
| 18 |
+
# Increased timeout slightly, can be adjusted
|
| 19 |
+
try:
|
| 20 |
+
result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
| 21 |
+
text=True, timeout=45, check=False) # check=False to handle errors manually
|
| 22 |
+
except subprocess.TimeoutExpired:
|
| 23 |
+
print(f"⏰ Probe timed out: {os.path.basename(video_path)}", file=sys.stderr)
|
| 24 |
+
return None # Indicate error
|
| 25 |
+
|
| 26 |
+
if result.returncode != 0:
|
| 27 |
+
error_msg = result.stderr.strip()
|
| 28 |
+
print(f"❌ Probe error ({result.returncode}): {os.path.basename(video_path)} - {error_msg}", file=sys.stderr)
|
| 29 |
+
return None # Indicate error
|
| 30 |
+
|
| 31 |
+
try:
|
| 32 |
+
data = json.loads(result.stdout)
|
| 33 |
+
except json.JSONDecodeError:
|
| 34 |
+
print(f"❌ JSON decode error: {os.path.basename(video_path)}", file=sys.stderr)
|
| 35 |
+
return None # Indicate error
|
| 36 |
+
|
| 37 |
+
# --- Safely get duration ---
|
| 38 |
+
duration = None
|
| 39 |
+
if "format" in data and "duration" in data["format"]:
|
| 40 |
+
try:
|
| 41 |
+
duration = float(data["format"]["duration"])
|
| 42 |
+
except (ValueError, TypeError):
|
| 43 |
+
# Log error but return None as it's critical info
|
| 44 |
+
print(f"⚠️ Invalid duration format: {os.path.basename(video_path)}", file=sys.stderr)
|
| 45 |
+
return None
|
| 46 |
+
else:
|
| 47 |
+
# Log error but return None as it's critical info
|
| 48 |
+
print(f"⚠️ No duration found: {os.path.basename(video_path)}", file=sys.stderr)
|
| 49 |
+
return None
|
| 50 |
+
|
| 51 |
+
# --- Safely get FPS ---
|
| 52 |
+
fps = None
|
| 53 |
+
if "streams" in data:
|
| 54 |
+
for stream in data["streams"]:
|
| 55 |
+
if stream.get("codec_type") == "video" and "r_frame_rate" in stream:
|
| 56 |
+
fps_str = stream["r_frame_rate"]
|
| 57 |
+
if fps_str and fps_str != "0/0":
|
| 58 |
+
try:
|
| 59 |
+
fps = float(Fraction(*map(int, fps_str.split("/"))))
|
| 60 |
+
break # Found valid FPS
|
| 61 |
+
except (ValueError, ZeroDivisionError, TypeError):
|
| 62 |
+
print(f"⚠️ Invalid FPS format '{fps_str}': {os.path.basename(video_path)}", file=sys.stderr)
|
| 63 |
+
else:
|
| 64 |
+
print(f"⚠️ Invalid FPS value '{fps_str}': {os.path.basename(video_path)}", file=sys.stderr)
|
| 65 |
+
|
| 66 |
+
# --- Return results only if both duration and FPS are valid ---
|
| 67 |
+
if duration is not None and fps is not None:
|
| 68 |
+
return {
|
| 69 |
+
"duration": duration,
|
| 70 |
+
"fps": fps
|
| 71 |
+
}
|
| 72 |
+
elif duration is not None: # Duration found, but FPS wasn't
|
| 73 |
+
print(f"⚠️ No valid FPS found (duration was {duration:.2f}s): {os.path.basename(video_path)}", file=sys.stderr)
|
| 74 |
+
# Return None because FPS is required for filtering
|
| 75 |
+
return None
|
| 76 |
+
else: # Should be covered by earlier checks, but safety first
|
| 77 |
+
return None
|
| 78 |
+
# --- (End of get_video_info) ---
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
def process_video(video_path, log_file_path, log_lock):
|
| 82 |
+
"""
|
| 83 |
+
Worker function to process a single video file.
|
| 84 |
+
Checks criteria, removes if needed, and logs the processed path.
|
| 85 |
+
Returns: Tuple (status_string, video_path) e.g. ("kept", "/path/to/vid.mp4")
|
| 86 |
+
status_string can be "kept", "removed", "error"
|
| 87 |
+
"""
|
| 88 |
+
absolute_path = os.path.abspath(video_path)
|
| 89 |
+
base_name = os.path.basename(video_path)
|
| 90 |
+
status = "error" # Default status
|
| 91 |
+
|
| 92 |
+
try:
|
| 93 |
+
info = get_video_info(video_path)
|
| 94 |
+
|
| 95 |
+
if not info:
|
| 96 |
+
print(f"🚫 Skipping (probe error/missing info): {base_name}")
|
| 97 |
+
try:
|
| 98 |
+
os.remove(video_path)
|
| 99 |
+
print(f"🗑️ Removed (probe error/missing info): {base_name}")
|
| 100 |
+
status = "removed"
|
| 101 |
+
except OSError as e:
|
| 102 |
+
print(f"❌ Error removing {base_name}: {e}", file=sys.stderr)
|
| 103 |
+
status = "error"
|
| 104 |
+
else:
|
| 105 |
+
duration, fps = info["duration"], info["fps"]
|
| 106 |
+
remove_reason = None
|
| 107 |
+
if duration < 9.5 or duration > 10.5:
|
| 108 |
+
remove_reason = f"Duration {duration:.2f}s"
|
| 109 |
+
elif abs(fps-30) > 1:
|
| 110 |
+
remove_reason = f"FPS {fps:.2f}"
|
| 111 |
+
|
| 112 |
+
if remove_reason:
|
| 113 |
+
try:
|
| 114 |
+
os.remove(video_path)
|
| 115 |
+
print(f"🗑️ Removed ({remove_reason}): {base_name}")
|
| 116 |
+
status = "removed"
|
| 117 |
+
except OSError as e:
|
| 118 |
+
print(f"❌ Error removing {base_name}: {e}", file=sys.stderr)
|
| 119 |
+
status = "error" # Failed to remove, count as error
|
| 120 |
+
else:
|
| 121 |
+
# Keep print concise for valid files during parallel runs
|
| 122 |
+
status = "kept"
|
| 123 |
+
|
| 124 |
+
except subprocess.TimeoutExpired:
|
| 125 |
+
print(f"⏰ Timeout processing: {base_name}", file=sys.stderr)
|
| 126 |
+
try:
|
| 127 |
+
os.remove(video_path)
|
| 128 |
+
print(f"🗑️ Removed (timeout): {base_name}")
|
| 129 |
+
status = "removed"
|
| 130 |
+
except OSError as e:
|
| 131 |
+
print(f"❌ Error removing {base_name}: {e}", file=sys.stderr)
|
| 132 |
+
status = "error"
|
| 133 |
+
|
| 134 |
+
except Exception as e:
|
| 135 |
+
print(f"❌ Unexpected error processing {base_name}: {e}", file=sys.stderr)
|
| 136 |
+
try:
|
| 137 |
+
os.remove(video_path)
|
| 138 |
+
print(f"🗑️ Removed (unexpected error): {base_name}")
|
| 139 |
+
status = "removed"
|
| 140 |
+
except OSError as e:
|
| 141 |
+
print(f"❌ Error removing {base_name}: {e}", file=sys.stderr)
|
| 142 |
+
status = "error"
|
| 143 |
+
|
| 144 |
+
# --- Log regardless of status to prevent reprocessing ---
|
| 145 |
+
try:
|
| 146 |
+
with log_lock: # Ensure only one thread writes at a time
|
| 147 |
+
with open(log_file_path, 'a', encoding='utf-8') as log_f:
|
| 148 |
+
log_f.write(absolute_path + '\n')
|
| 149 |
+
except IOError as e:
|
| 150 |
+
print(f"❌ CRITICAL: Failed to write to log file {log_file_path}: {e}", file=sys.stderr)
|
| 151 |
+
|
| 152 |
+
return status, absolute_path
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
def load_processed_files(log_file_path):
|
| 156 |
+
"""Loads processed file paths from the log file into a set."""
|
| 157 |
+
processed = set()
|
| 158 |
+
if os.path.exists(log_file_path):
|
| 159 |
+
try:
|
| 160 |
+
with open(log_file_path, 'r', encoding='utf-8') as f:
|
| 161 |
+
for line in f:
|
| 162 |
+
processed.add(line.strip())
|
| 163 |
+
except IOError as e:
|
| 164 |
+
print(f"⚠️ Warning: Could not read log file {log_file_path}: {e}", file=sys.stderr)
|
| 165 |
+
# Continue with an empty set, processing might repeat
|
| 166 |
+
return processed
|
| 167 |
+
|
| 168 |
+
|
| 169 |
+
def filter_videos_parallel(root_dir, log_file_path=".processed_videos.log", max_workers=None):
|
| 170 |
+
"""
|
| 171 |
+
Filters videos in parallel using ThreadPoolExecutor, supporting resume and progress display.
|
| 172 |
+
"""
|
| 173 |
+
if max_workers is None:
|
| 174 |
+
max_workers = min(os.cpu_count() * 2, 16)
|
| 175 |
+
|
| 176 |
+
print(f"--- Starting resumable parallel video filtering in {root_dir} ---")
|
| 177 |
+
print(f"Using log file: {log_file_path}")
|
| 178 |
+
print(f"Max workers: {max_workers}")
|
| 179 |
+
start_time = time.time()
|
| 180 |
+
|
| 181 |
+
# 1. Load already processed files
|
| 182 |
+
processed_files_set = load_processed_files(log_file_path)
|
| 183 |
+
print(f"Loaded {len(processed_files_set)} paths from log file.")
|
| 184 |
+
|
| 185 |
+
# 2. Collect video file paths *not* in the processed set
|
| 186 |
+
video_paths_to_process = []
|
| 187 |
+
total_files_found = 0
|
| 188 |
+
for dirpath, _, files in os.walk(root_dir):
|
| 189 |
+
for file in files:
|
| 190 |
+
if file.lower().endswith(".mp4"):
|
| 191 |
+
total_files_found += 1
|
| 192 |
+
absolute_path = os.path.abspath(os.path.join(dirpath, file))
|
| 193 |
+
if absolute_path not in processed_files_set:
|
| 194 |
+
video_paths_to_process.append(absolute_path)
|
| 195 |
+
|
| 196 |
+
skipped_count = total_files_found - len(video_paths_to_process)
|
| 197 |
+
total_to_process_this_run = len(video_paths_to_process) # Get total for progress %
|
| 198 |
+
|
| 199 |
+
print(f"Found {total_files_found} total MP4 files.")
|
| 200 |
+
if skipped_count > 0:
|
| 201 |
+
print(f"Skipping {skipped_count} files already processed (found in log).")
|
| 202 |
+
|
| 203 |
+
if not video_paths_to_process:
|
| 204 |
+
print("No new videos to process.")
|
| 205 |
+
return
|
| 206 |
+
|
| 207 |
+
print(f"Processing {total_to_process_this_run} new files...")
|
| 208 |
+
|
| 209 |
+
# 3. Use ThreadPoolExecutor
|
| 210 |
+
results = {"kept": 0, "removed": 0, "error": 0}
|
| 211 |
+
log_lock = threading.Lock()
|
| 212 |
+
completed_count = 0 # <-- Initialize progress counter
|
| 213 |
+
progress_update_interval = 50 # <-- How often to update the progress line
|
| 214 |
+
|
| 215 |
+
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
|
| 216 |
+
future_to_path = {
|
| 217 |
+
executor.submit(process_video, path, log_file_path, log_lock): path
|
| 218 |
+
for path in video_paths_to_process
|
| 219 |
+
}
|
| 220 |
+
|
| 221 |
+
try:
|
| 222 |
+
for future in concurrent.futures.as_completed(future_to_path):
|
| 223 |
+
original_path = future_to_path[future]
|
| 224 |
+
try:
|
| 225 |
+
status, _ = future.result()
|
| 226 |
+
if status in results:
|
| 227 |
+
results[status] += 1
|
| 228 |
+
else:
|
| 229 |
+
print(f"⚠️ Unknown status '{status}' received for {os.path.basename(original_path)}", file=sys.stderr)
|
| 230 |
+
results["error"] += 1
|
| 231 |
+
|
| 232 |
+
# --- Progress Update Logic ---
|
| 233 |
+
completed_count += 1
|
| 234 |
+
# Update progress every N files or on the very last file
|
| 235 |
+
if completed_count % progress_update_interval == 0 or completed_count == total_to_process_this_run:
|
| 236 |
+
percent = (completed_count / total_to_process_this_run) * 100
|
| 237 |
+
# Use \r to return to beginning of line, pad with spaces to clear previous longer messages
|
| 238 |
+
progress_line = f"\rProgress: {completed_count} / {total_to_process_this_run} ({percent:.1f}%) completed. "
|
| 239 |
+
print(progress_line, end='', flush=True) # end='' prevents newline, flush forces output
|
| 240 |
+
|
| 241 |
+
except Exception as exc:
|
| 242 |
+
print(f"\n❌ Exception for {os.path.basename(original_path)} during result retrieval: {exc}", file=sys.stderr)
|
| 243 |
+
results["error"] += 1
|
| 244 |
+
completed_count += 1 # Still count this as completed for progress %
|
| 245 |
+
# Also log this path as processed
|
| 246 |
+
try:
|
| 247 |
+
with log_lock:
|
| 248 |
+
with open(log_file_path, 'a', encoding='utf-8') as log_f:
|
| 249 |
+
log_f.write(os.path.abspath(original_path) + '\n')
|
| 250 |
+
except IOError as e:
|
| 251 |
+
print(f"❌ CRITICAL: Failed to write to log file after exception for {original_path}: {e}", file=sys.stderr)
|
| 252 |
+
|
| 253 |
+
except KeyboardInterrupt:
|
| 254 |
+
print("\n🛑 User interrupted. Shutting down workers...")
|
| 255 |
+
sys.exit(1)
|
| 256 |
+
|
| 257 |
+
# --- Final Cleanup ---
|
| 258 |
+
print() # Print a newline to move cursor off the progress line before the summary
|
| 259 |
+
|
| 260 |
+
end_time = time.time()
|
| 261 |
+
print("\n--- Filtering Complete ---")
|
| 262 |
+
print(f"Files processed in this run: {total_to_process_this_run}")
|
| 263 |
+
print(f" Kept: {results['kept']}")
|
| 264 |
+
print(f" Removed: {results['removed']}")
|
| 265 |
+
print(f" Errors: {results['error']}")
|
| 266 |
+
print(f"Total files skipped (already processed): {skipped_count}")
|
| 267 |
+
print(f"Total time for this run: {end_time - start_time:.2f} seconds")
|
| 268 |
+
|
| 269 |
+
|
| 270 |
+
if __name__ == "__main__":
|
| 271 |
+
target_directory = "./train/train/"
|
| 272 |
+
script_dir = os.path.dirname(os.path.abspath(__file__))
|
| 273 |
+
log_file = os.path.join(script_dir, ".processed_videos.log")
|
| 274 |
+
|
| 275 |
+
if not os.path.isdir(target_directory):
|
| 276 |
+
print(f"❌ Error: Target directory not found: {target_directory}", file=sys.stderr)
|
| 277 |
+
sys.exit(1)
|
| 278 |
+
|
| 279 |
+
filter_videos_parallel(target_directory, log_file_path=log_file)
|
k600/readme.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Information regarding Kinetics 600:
|
| 2 |
+
- Videos and annotations have been uploaded to s3://kinetics/600/.
|
| 3 |
+
|
| 4 |
+
# Splits:
|
| 5 |
+
- Train and Val folders contain one tar file for each class, containing the specific class videos. The name of each tar is the same as the class name.
|
| 6 |
+
- Test videos have been tared in 60 files each containing around 1000 videos. They are not split according to the specific associated class.
|
| 7 |
+
|
k600/removed_actions.txt
ADDED
|
@@ -0,0 +1,321 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
adjusting glasses
|
| 2 |
+
answering questions
|
| 3 |
+
attending conference
|
| 4 |
+
calculating
|
| 5 |
+
chewing gum
|
| 6 |
+
cosplaying
|
| 7 |
+
counting money
|
| 8 |
+
crossing eyes
|
| 9 |
+
crying
|
| 10 |
+
dining
|
| 11 |
+
drawing
|
| 12 |
+
drooling
|
| 13 |
+
drumming fingers
|
| 14 |
+
eating burger
|
| 15 |
+
eating cake
|
| 16 |
+
eating carrots
|
| 17 |
+
eating chips
|
| 18 |
+
eating doughnuts
|
| 19 |
+
eating hotdog
|
| 20 |
+
eating ice cream
|
| 21 |
+
eating spaghetti
|
| 22 |
+
eating watermelon
|
| 23 |
+
getting a haircut
|
| 24 |
+
getting a piercing
|
| 25 |
+
getting a tattoo
|
| 26 |
+
gospel singing in church
|
| 27 |
+
head stand
|
| 28 |
+
holding snake
|
| 29 |
+
huddling
|
| 30 |
+
hugging
|
| 31 |
+
hugging baby
|
| 32 |
+
ice fishing
|
| 33 |
+
karaoke
|
| 34 |
+
kissing
|
| 35 |
+
laughing
|
| 36 |
+
licking
|
| 37 |
+
lifting hat
|
| 38 |
+
looking at phone
|
| 39 |
+
marriage proposal
|
| 40 |
+
massaging back
|
| 41 |
+
massaging feet
|
| 42 |
+
massaging legs
|
| 43 |
+
massaging neck
|
| 44 |
+
massaging person's head
|
| 45 |
+
news anchoring
|
| 46 |
+
opening bottle
|
| 47 |
+
opening door
|
| 48 |
+
opening present
|
| 49 |
+
opening refrigerator
|
| 50 |
+
opening wine bottle
|
| 51 |
+
packing
|
| 52 |
+
petting animal
|
| 53 |
+
petting cat
|
| 54 |
+
photocopying
|
| 55 |
+
pinching
|
| 56 |
+
poking bellybutton
|
| 57 |
+
presenting weather forecast
|
| 58 |
+
putting in contact lenses
|
| 59 |
+
putting on eyeliner
|
| 60 |
+
putting on foundation
|
| 61 |
+
putting on lipstick
|
| 62 |
+
putting on mascara
|
| 63 |
+
putting on shoes
|
| 64 |
+
reading book
|
| 65 |
+
reading newspaper
|
| 66 |
+
roasting marshmallows
|
| 67 |
+
shining flashlight
|
| 68 |
+
shopping
|
| 69 |
+
sign language interpreting
|
| 70 |
+
singing
|
| 71 |
+
sipping cup
|
| 72 |
+
sleeping
|
| 73 |
+
smelling feet
|
| 74 |
+
smoking
|
| 75 |
+
smoking hookah
|
| 76 |
+
smoking pipe
|
| 77 |
+
staring
|
| 78 |
+
sticking tongue out
|
| 79 |
+
stretching arm
|
| 80 |
+
stretching leg
|
| 81 |
+
sucking lolly
|
| 82 |
+
sword swallowing
|
| 83 |
+
talking on cell phone
|
| 84 |
+
tapping guitar
|
| 85 |
+
tapping pen
|
| 86 |
+
tasting beer
|
| 87 |
+
tasting food
|
| 88 |
+
tasting wine
|
| 89 |
+
testifying
|
| 90 |
+
texting
|
| 91 |
+
threading needle
|
| 92 |
+
tickling
|
| 93 |
+
tiptoeing
|
| 94 |
+
tossing coin
|
| 95 |
+
twiddling fingers
|
| 96 |
+
tying bow tie
|
| 97 |
+
tying knot
|
| 98 |
+
tying necktie
|
| 99 |
+
tying shoe laces
|
| 100 |
+
unboxing
|
| 101 |
+
using a microscope
|
| 102 |
+
using atm
|
| 103 |
+
using inhaler
|
| 104 |
+
using puppets
|
| 105 |
+
using remote controller
|
| 106 |
+
visiting the zoo
|
| 107 |
+
waiting in line
|
| 108 |
+
waking up
|
| 109 |
+
watching tv
|
| 110 |
+
whistling
|
| 111 |
+
writing
|
| 112 |
+
yawning
|
| 113 |
+
yoga
|
| 114 |
+
applying cream
|
| 115 |
+
arranging flowers
|
| 116 |
+
assembling bicycle
|
| 117 |
+
assembling computer
|
| 118 |
+
baking cookies
|
| 119 |
+
bandaging
|
| 120 |
+
barbequing
|
| 121 |
+
bathing dog
|
| 122 |
+
blowdrying hair
|
| 123 |
+
blowing nose
|
| 124 |
+
bookbinding
|
| 125 |
+
bottling
|
| 126 |
+
braiding hair
|
| 127 |
+
breading or breadcrumbing
|
| 128 |
+
brush painting
|
| 129 |
+
brushing hair
|
| 130 |
+
brushing teeth
|
| 131 |
+
building cabinet
|
| 132 |
+
building lego
|
| 133 |
+
building sandcastle
|
| 134 |
+
building shed
|
| 135 |
+
card stacking
|
| 136 |
+
carving ice
|
| 137 |
+
carving pumpkin
|
| 138 |
+
changing gear in car
|
| 139 |
+
changing oil
|
| 140 |
+
changing wheel
|
| 141 |
+
checking tires
|
| 142 |
+
clay pottery making
|
| 143 |
+
cleaning gutters
|
| 144 |
+
cleaning pool
|
| 145 |
+
cleaning shoes
|
| 146 |
+
cleaning toilet
|
| 147 |
+
cleaning windows
|
| 148 |
+
coloring in
|
| 149 |
+
combing hair
|
| 150 |
+
cooking egg
|
| 151 |
+
cooking on campfire
|
| 152 |
+
cooking sausages
|
| 153 |
+
cooking scallops
|
| 154 |
+
cracking back
|
| 155 |
+
cracking knuckles
|
| 156 |
+
cracking neck
|
| 157 |
+
curling hair
|
| 158 |
+
cutting apple
|
| 159 |
+
cutting nails
|
| 160 |
+
cutting orange
|
| 161 |
+
cutting pineapple
|
| 162 |
+
cutting watermelon
|
| 163 |
+
decorating the christmas tree
|
| 164 |
+
delivering mail
|
| 165 |
+
directing traffic
|
| 166 |
+
docking boat
|
| 167 |
+
doing jigsaw puzzle
|
| 168 |
+
doing laundry
|
| 169 |
+
doing nails
|
| 170 |
+
driving car
|
| 171 |
+
driving tractor
|
| 172 |
+
dyeing eyebrows
|
| 173 |
+
dyeing hair
|
| 174 |
+
egg hunting
|
| 175 |
+
embroidering
|
| 176 |
+
feeding birds
|
| 177 |
+
feeding fish
|
| 178 |
+
feeding goats
|
| 179 |
+
fixing bicycle
|
| 180 |
+
fixing hair
|
| 181 |
+
fly tying
|
| 182 |
+
folding clothes
|
| 183 |
+
folding napkins
|
| 184 |
+
folding paper
|
| 185 |
+
frying vegetables
|
| 186 |
+
geocaching
|
| 187 |
+
giving or receiving award
|
| 188 |
+
grinding meat
|
| 189 |
+
grooming dog
|
| 190 |
+
grooming horse
|
| 191 |
+
hand washing clothes
|
| 192 |
+
home roasting coffee
|
| 193 |
+
installing carpet
|
| 194 |
+
ironing
|
| 195 |
+
ironing hair
|
| 196 |
+
jaywalking
|
| 197 |
+
knitting
|
| 198 |
+
laying bricks
|
| 199 |
+
laying concrete
|
| 200 |
+
laying stone
|
| 201 |
+
laying tiles
|
| 202 |
+
leatherworking
|
| 203 |
+
lighting fire
|
| 204 |
+
lock picking
|
| 205 |
+
making a cake
|
| 206 |
+
making a sandwich
|
| 207 |
+
making balloon shapes
|
| 208 |
+
making bubbles
|
| 209 |
+
making cheese
|
| 210 |
+
making jewelry
|
| 211 |
+
making paper aeroplanes
|
| 212 |
+
making pizza
|
| 213 |
+
making snowman
|
| 214 |
+
making sushi
|
| 215 |
+
making tea
|
| 216 |
+
making the bed
|
| 217 |
+
milking cow
|
| 218 |
+
mopping floor
|
| 219 |
+
mushroom foraging
|
| 220 |
+
needle felting
|
| 221 |
+
peeling apples
|
| 222 |
+
peeling potatoes
|
| 223 |
+
picking fruit
|
| 224 |
+
plastering
|
| 225 |
+
playing blackjack
|
| 226 |
+
playing chess
|
| 227 |
+
playing controller
|
| 228 |
+
playing dominoes
|
| 229 |
+
playing marbles
|
| 230 |
+
playing monopoly
|
| 231 |
+
playing pinball
|
| 232 |
+
playing poker
|
| 233 |
+
playing rubiks cube
|
| 234 |
+
playing scrabble
|
| 235 |
+
playing with trains
|
| 236 |
+
polishing metal
|
| 237 |
+
pouring beer
|
| 238 |
+
preparing salad
|
| 239 |
+
pumping gas
|
| 240 |
+
recording music
|
| 241 |
+
repairing puncture
|
| 242 |
+
riding snow blower
|
| 243 |
+
ripping paper
|
| 244 |
+
roasting pig
|
| 245 |
+
rolling pastry
|
| 246 |
+
sanding floor
|
| 247 |
+
sausage making
|
| 248 |
+
scrambling eggs
|
| 249 |
+
scrapbooking
|
| 250 |
+
scrubbing face
|
| 251 |
+
separating eggs
|
| 252 |
+
setting table
|
| 253 |
+
sewing
|
| 254 |
+
shaping bread dough
|
| 255 |
+
sharpening knives
|
| 256 |
+
sharpening pencil
|
| 257 |
+
shaving head
|
| 258 |
+
shaving legs
|
| 259 |
+
shining shoes
|
| 260 |
+
shucking oysters
|
| 261 |
+
shuffling cards
|
| 262 |
+
shuffling feet
|
| 263 |
+
snowmobiling
|
| 264 |
+
sweeping floor
|
| 265 |
+
tie dying
|
| 266 |
+
training dog
|
| 267 |
+
trimming or shaving beard
|
| 268 |
+
trimming shrubs
|
| 269 |
+
trimming trees
|
| 270 |
+
using a paint roller
|
| 271 |
+
using a power drill
|
| 272 |
+
using a wrench
|
| 273 |
+
using bagging machine
|
| 274 |
+
using circular saw
|
| 275 |
+
vacuuming floor
|
| 276 |
+
walking the dog
|
| 277 |
+
washing dishes
|
| 278 |
+
washing feet
|
| 279 |
+
washing hair
|
| 280 |
+
washing hands
|
| 281 |
+
watering plants
|
| 282 |
+
waxing back
|
| 283 |
+
waxing chest
|
| 284 |
+
waxing eyebrows
|
| 285 |
+
waxing legs
|
| 286 |
+
weaving basket
|
| 287 |
+
weaving fabric
|
| 288 |
+
welding
|
| 289 |
+
wood burning
|
| 290 |
+
wrapping present
|
| 291 |
+
yarn spinning
|
| 292 |
+
acting in play
|
| 293 |
+
applauding
|
| 294 |
+
auctioning
|
| 295 |
+
blowing glass
|
| 296 |
+
busking
|
| 297 |
+
celebrating
|
| 298 |
+
historical reenactment
|
| 299 |
+
playing accordion
|
| 300 |
+
playing bagpipes
|
| 301 |
+
playing bass guitar
|
| 302 |
+
playing cello
|
| 303 |
+
playing clarinet
|
| 304 |
+
playing didgeridoo
|
| 305 |
+
playing flute
|
| 306 |
+
playing guitar
|
| 307 |
+
playing hand clapping games
|
| 308 |
+
playing harmonica
|
| 309 |
+
playing harp
|
| 310 |
+
playing keyboard
|
| 311 |
+
playing lute
|
| 312 |
+
playing ocarina
|
| 313 |
+
playing organ
|
| 314 |
+
playing pan pipes
|
| 315 |
+
playing piano
|
| 316 |
+
playing recorder
|
| 317 |
+
playing saxophone
|
| 318 |
+
playing trombone
|
| 319 |
+
playing trumpet
|
| 320 |
+
playing ukulele
|
| 321 |
+
playing violin
|
k600/test/.gitattributes
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.lz4 filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.mds filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
# Audio files - uncompressed
|
| 39 |
+
*.pcm filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
*.sam filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
*.raw filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
# Audio files - compressed
|
| 43 |
+
*.aac filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
*.flac filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
*.mp3 filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
*.ogg filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
*.wav filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
# Image files - uncompressed
|
| 49 |
+
*.bmp filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
*.gif filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
*.tiff filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
# Image files - compressed
|
| 54 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
*.webp filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
# Video files - compressed
|
| 58 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
*.webm filter=lfs diff=lfs merge=lfs -text
|
k600/test/.ipynb_checkpoints/kinetics-test-checkpoint.json
ADDED
|
@@ -0,0 +1,302 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"video": "1.mp4",
|
| 4 |
+
"caption": "A person makes a big splash in the pool."
|
| 5 |
+
},
|
| 6 |
+
{
|
| 7 |
+
"video": "2.mp4",
|
| 8 |
+
"caption": "A dog catches a frisbee midair."
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"video": "3.mp4",
|
| 12 |
+
"caption": "A whale jumps out of the water."
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"video": "4.mp4",
|
| 16 |
+
"caption": "A person falls off the bike."
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"video": "5.mp4",
|
| 20 |
+
"caption": "A person jumps over the hurdle."
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"video": "6.mp4",
|
| 24 |
+
"caption": "A person performs a backflip."
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"video": "7.mp4",
|
| 28 |
+
"caption": "A person jumps over the hurdle."
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"video": "8.mp4",
|
| 32 |
+
"caption": "A dog catching a frisbee midair."
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"video": "9.mp4",
|
| 36 |
+
"caption": "A dog jumps through a yellow hoop."
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"video": "10.mp4",
|
| 40 |
+
"caption": "A horse jumping over the hurdle."
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"video": "11.mp4",
|
| 44 |
+
"caption": "An eagle catching a fish from the water."
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"video": "12.mp4",
|
| 48 |
+
"caption": "A person performs a backflip."
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"video": "13.mp4",
|
| 52 |
+
"caption": "A person performs a backflip."
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"video": "14.mp4",
|
| 56 |
+
"caption": "A dog catches a frisbee midair."
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"video": "15.mp4",
|
| 60 |
+
"caption": "A cup shatters on the ground."
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"video": "16.mp4",
|
| 64 |
+
"caption": "A person performs a backflip."
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"video": "17.mp4",
|
| 68 |
+
"caption": "A person falls off the bike."
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"video": "18.mp4",
|
| 72 |
+
"caption": "A person performs a backflip."
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"video": "19.mp4",
|
| 76 |
+
"caption": "A person performs a backflip."
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"video": "20.mp4",
|
| 80 |
+
"caption": "A dog catches a frisbee midair."
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"video": "21.mp4",
|
| 84 |
+
"caption": "A basketball goes in the hoop."
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"video": "22.mp4",
|
| 88 |
+
"caption": "A balloon pops."
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"video": "23.mp4",
|
| 92 |
+
"caption": "A person falls off the bike."
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"video": "24.mp4",
|
| 96 |
+
"caption": "A person falls off the chair."
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"video": "25.mp4",
|
| 100 |
+
"caption": "A dog catches a red frisbee in mouth."
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"video": "26.mp4",
|
| 104 |
+
"caption": "A person falls off the bike."
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"video": "27.mp4",
|
| 108 |
+
"caption": "A person jumps over the hurdle."
|
| 109 |
+
},
|
| 110 |
+
{
|
| 111 |
+
"video": "28.mp4",
|
| 112 |
+
"caption": "A person jumps over the fence."
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"video": "29.mp4",
|
| 116 |
+
"caption": "A person performs a backflip."
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"video": "30.mp4",
|
| 120 |
+
"caption": "A person jumps over a hurdle."
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"video": "31.mp4",
|
| 124 |
+
"caption": "A person performs a backflip."
|
| 125 |
+
},
|
| 126 |
+
{
|
| 127 |
+
"video": "32.mp4",
|
| 128 |
+
"caption": "A horse jumps over the hurdle."
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"video": "33.mp4",
|
| 132 |
+
"caption": "A person jumps over the hurdle."
|
| 133 |
+
},
|
| 134 |
+
{
|
| 135 |
+
"video": "34.mp4",
|
| 136 |
+
"caption": "A person jumps over a hurdle."
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"video": "35.mp4",
|
| 140 |
+
"caption": "A person performs a backflip."
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"video": "36.mp4",
|
| 144 |
+
"caption": "A dog catches a frisbee midair."
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"video": "37.mp4",
|
| 148 |
+
"caption": "A person performs a backflip."
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"video": "38.mp4",
|
| 152 |
+
"caption": "A horse jumps over a hurdle."
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"video": "39.mp4",
|
| 156 |
+
"caption": "A basketball goes in the hoop."
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"video": "40.mp4",
|
| 160 |
+
"caption": "A person jumps over the hurdle."
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"video": "41.mp4",
|
| 164 |
+
"caption": "A cup shatters and spills coffee."
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"video": "42.mp4",
|
| 168 |
+
"caption": "A person dunks a basketball."
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"video": "43.mp4",
|
| 172 |
+
"caption": "A dog catches a frisbee in air."
|
| 173 |
+
},
|
| 174 |
+
{
|
| 175 |
+
"video": "44.mp4",
|
| 176 |
+
"caption": "A glass cup shatters."
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"video": "45.mp4",
|
| 180 |
+
"caption": "A whale jumps out of water."
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"video": "46.mp4",
|
| 184 |
+
"caption": "A person performs a backflip."
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"video": "47.mp4",
|
| 188 |
+
"caption": "A plate shatters on the ground."
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"video": "48.mp4",
|
| 192 |
+
"caption": "An eagle catches a fish from the water."
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"video": "49.mp4",
|
| 196 |
+
"caption": "A person falls off the bike."
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"video": "50.mp4",
|
| 200 |
+
"caption": "A horse jumps over the hurdle."
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"video": "51.mp4",
|
| 204 |
+
"caption": "A person falls off the bike."
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"video": "52.mp4",
|
| 208 |
+
"caption": "A person falls off the bike."
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"video": "53.mp4",
|
| 212 |
+
"caption": "A dog catches the frisbee midair."
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"video": "54.mp4",
|
| 216 |
+
"caption": "A person performs a backflip."
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"video": "55.mp4",
|
| 220 |
+
"caption": "A tennis racket hits the green ball."
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"video": "56.mp4",
|
| 224 |
+
"caption": "A person jumps over the hurdle."
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"video": "57.mp4",
|
| 228 |
+
"caption": "A person jumps over the hurdle."
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"video": "58.mp4",
|
| 232 |
+
"caption": "A person jumps over the hurdle."
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"video": "59.mp4",
|
| 236 |
+
"caption": "A kid falls down onto the ground."
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"video": "60.mp4",
|
| 240 |
+
"caption": "A dog jumping through the yellow hoop."
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"video": "61.mp4",
|
| 244 |
+
"caption": "A dog catches a frisbee midair."
|
| 245 |
+
},
|
| 246 |
+
{
|
| 247 |
+
"video": "62.mp4",
|
| 248 |
+
"caption": "A horse jumps over the hurdle."
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"video": "63.mp4",
|
| 252 |
+
"caption": "A whale jumps out of the water."
|
| 253 |
+
},
|
| 254 |
+
{
|
| 255 |
+
"video": "64.mp4",
|
| 256 |
+
"caption": "A person performs a backflip."
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"video": "65.mp4",
|
| 260 |
+
"caption": "A whale jumps out of water."
|
| 261 |
+
},
|
| 262 |
+
{
|
| 263 |
+
"video": "66.mp4",
|
| 264 |
+
"caption": "A man falls on the ground."
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"video": "67.mp4",
|
| 268 |
+
"caption": "A person falls off the bike."
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"video": "68.mp4",
|
| 272 |
+
"caption": "A person performs a backflip."
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"video": "69.mp4",
|
| 276 |
+
"caption": "A dog catches a frisbee midair."
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"video": "70.mp4",
|
| 280 |
+
"caption": "A person jumps over the hurdle."
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"video": "71.mp4",
|
| 284 |
+
"caption": "A glass cup shatters."
|
| 285 |
+
},
|
| 286 |
+
{
|
| 287 |
+
"video": "72.mp4",
|
| 288 |
+
"caption": "A person falls off the bike."
|
| 289 |
+
},
|
| 290 |
+
{
|
| 291 |
+
"video": "73.mp4",
|
| 292 |
+
"caption": "A whale jumps out of water."
|
| 293 |
+
},
|
| 294 |
+
{
|
| 295 |
+
"video": "74.mp4",
|
| 296 |
+
"caption": "A bird catches a fish from the water."
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"video": "75.mp4",
|
| 300 |
+
"caption": "A person falls off the bike."
|
| 301 |
+
}
|
| 302 |
+
]
|
k600/test/1.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:556d3ea06e303e4331ae189bd8b5e2e98da810be832bbd5fff66c25dbe978911
|
| 3 |
+
size 3487678
|
k600/test/10.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc7bd6c1086fb473714ef939dfb487c4f55d9cb8379d1da0e8531c755d0e90f3
|
| 3 |
+
size 530634
|
k600/test/11.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:70cad89e93072c1f454eb4208293a085d10950f1ee27e3718ef96727106c20db
|
| 3 |
+
size 1302854
|
k600/test/12.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddcd3e55d626756fc240b4f81b970256fdc2ed7e107ce39e9694e164719d16e2
|
| 3 |
+
size 308942
|
k600/test/13.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd36131b69895de4b6a89fa3abc6667414fe002d118bf20a0275a6e433bb7a39
|
| 3 |
+
size 1753026
|
k600/test/14.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0afaf6a7f88c238e17cbb42b4232ed4f533b6a77b26024a4b1d956f6fdf3f12
|
| 3 |
+
size 860720
|
k600/test/15.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b99db3ba85b477d30a0daa57f2731e90ae5fb01f5e6b9d1749e71397a91f8574
|
| 3 |
+
size 245577
|
k600/test/16.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12fd746d97ccd033536a2b940fc49b348dea82b20066d14f56f4539dfe35b2cb
|
| 3 |
+
size 1096722
|
k600/test/17.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:153ceb72ae1e9b82005d8d79bd6abafb07d5e9f9522b21ae3144481aa9ad666b
|
| 3 |
+
size 2503904
|
k600/test/18.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:432d56d96928efc3d3af8d1f3ce21fd8b2583e13659b5ea40b9170ae5a842104
|
| 3 |
+
size 2077345
|
k600/test/19.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f304e9a7175f7aae2d8c37001518999894c0379d0e27a5c7bbff9cd3c30af85
|
| 3 |
+
size 1351539
|
k600/test/2.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:662d013e3dac6d9bcc97aa46e38d942af64885571bbb571b6507b5e90a108566
|
| 3 |
+
size 670501
|
k600/test/20.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35af6f5a2227486c0b15edf662e84a58bd2d3591937b226ca92d16e29e815155
|
| 3 |
+
size 563751
|
k600/test/21.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e541bfeaf80518f72df1514b28378aedbb0eb584537093e722ab066e69bd4c8
|
| 3 |
+
size 983249
|
k600/test/22.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cde096f1e7e744d3f751552acd354c93167f41f9c2c25d7c17a3b0914e261ed6
|
| 3 |
+
size 402300
|
k600/test/23.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72b351347736da5f04439c4f3bdadd7ad741a42b1c0ae73eca27f8e3d1659f37
|
| 3 |
+
size 437824
|
k600/test/24.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1514d9b4465d95a2ba568873534155dd2a00ff72042fc7c31bb87f9e51fe9b96
|
| 3 |
+
size 771814
|
k600/test/25.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:385fac334e3a7cd364cf54025a0e7c8ff38c845fe6d397efd405cd1b930e8f7d
|
| 3 |
+
size 482728
|
k600/test/26.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7e7ad35887034ad16917b6a33bed123b377ca9f5bb8f0a4f81426f59082f69a
|
| 3 |
+
size 698853
|
k600/test/27.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:695b408dbeb7fa41921326057153b39b6d85d9ebe397470c6b778fe36471057e
|
| 3 |
+
size 2390398
|
k600/test/28.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f3c86edfb7005a78fc5d60d596517a8b42fec469478ef48cadb4d6fd795154f
|
| 3 |
+
size 251730
|
k600/test/29.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1a69d2f739811f15aa745180b9437c5254fe84933ba5845facc5b1375bf0e3c
|
| 3 |
+
size 2282985
|
k600/test/3.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7395f220b8681a776203a82ffd8ff5c877a40aced862b085bc561f5156542d1a
|
| 3 |
+
size 409466
|
k600/test/30.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:641458ed04cb777df0ccedb5899313cb2e1c8f647eeced4b802d076a9c10ff20
|
| 3 |
+
size 4589233
|
k600/test/31.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e14e04bc709554d22734689bac048f4a9e566bf088b08cb25f31c7fc5078be2
|
| 3 |
+
size 404640
|
k600/test/32.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:620b1c497f284719e46c069ebf2a57ed0f52e965e20882d04fc7de53b032efd7
|
| 3 |
+
size 127751
|
k600/test/33.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03c6e0ff606f5411981bbfe597ca40dfca84cb7f4454fba31720bbd13a495002
|
| 3 |
+
size 1978863
|
k600/test/34.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d29fafd2b4c33b64f50d5879b743f8000a6064bb571a26955a734c5a5c780ac
|
| 3 |
+
size 230648
|
k600/test/35.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da5df51a1029459ceb88ed547afe9c1a7ed9f8f2bdc0bff2be9b10d3909fef04
|
| 3 |
+
size 339591
|
k600/test/36.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fe5c0a2eeeacb3a0789400ba43951f4b85434263b8666bcccdd432c697570a2
|
| 3 |
+
size 131594
|
k600/test/37.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ad25888a3488f7c186cb3dd25419c0dcae3e1fa1fa91c62e1ced4509d40a3b2
|
| 3 |
+
size 1365683
|
k600/test/38.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c55878f1d94a64e397376ab59338a440576c1fcebe85f67ab0731a6719d59c9e
|
| 3 |
+
size 1487103
|
k600/test/39.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:927162bf25aeadee80d53112095668d913983ddb23965ae5ff45a4a21d3ea3eb
|
| 3 |
+
size 283420
|
k600/test/4.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7d4eb7ad173abea528fa8a5f8073518132224087b2d487510a7c6af592e0efc
|
| 3 |
+
size 481399
|
k600/test/40.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ab65ac1f8532dba12553bfd50a6504d4896a7bdc0f486a57ef9794124fcfe47
|
| 3 |
+
size 1584326
|
k600/test/41.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03020c9f03f5176b86ed8eee9c2c03af363166d1ff9c103e64bf1fea993d3c17
|
| 3 |
+
size 342665
|
k600/test/42.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b94f076726e41ffed16c512b094b7b481c138c4ecfb645c1aecf2259ee07b150
|
| 3 |
+
size 4118785
|
k600/test/43.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51343ddc04f8d5ee72369ae2a07cfd1d11e89cca2cb90df853c7c1c5daea4a21
|
| 3 |
+
size 162484
|
k600/test/44.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01153f6d80ef1abfc81d9386c120da00d087d559f5689dc501a093552192438a
|
| 3 |
+
size 738247
|