Upload 24 files
Browse files- polly_vid/.DS_Store +0 -0
- polly_vid/prompts.txt +20 -0
- polly_vid/resize.py +57 -0
- polly_vid/videos.txt +20 -0
- polly_vid/videos/1.mp4 +3 -0
- polly_vid/videos/10.mp4 +3 -0
- polly_vid/videos/11.mp4 +3 -0
- polly_vid/videos/12.mp4 +3 -0
- polly_vid/videos/13.mp4 +3 -0
- polly_vid/videos/14.mp4 +3 -0
- polly_vid/videos/15.mp4 +3 -0
- polly_vid/videos/16.mp4 +3 -0
- polly_vid/videos/17.mp4 +3 -0
- polly_vid/videos/18.mp4 +3 -0
- polly_vid/videos/19.mp4 +3 -0
- polly_vid/videos/2.mp4 +3 -0
- polly_vid/videos/20.mp4 +3 -0
- polly_vid/videos/3.mp4 +3 -0
- polly_vid/videos/4.mp4 +3 -0
- polly_vid/videos/5.mp4 +3 -0
- polly_vid/videos/6.mp4 +3 -0
- polly_vid/videos/7.mp4 +3 -0
- polly_vid/videos/8.mp4 +3 -0
- polly_vid/videos/9.mp4 +3 -0
polly_vid/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
polly_vid/prompts.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Polly blowjob, close shot
|
2 |
+
Polly showing her tits, close shot, lips, cum
|
3 |
+
Polly gets cum on her belly after hot fucking
|
4 |
+
Polly showing her toungue, sitting on the ground
|
5 |
+
Polly gets fucked from the back, camera angle from the front
|
6 |
+
Polly gets fucked doggy style, camera angle from the side
|
7 |
+
Polly blowjob with glasses on, close shot
|
8 |
+
Polly blowjob
|
9 |
+
Polly gets her pussy fingered, camera angle from the side
|
10 |
+
Polly get fucked, cowgirl style, with her red bra on
|
11 |
+
Polly gets fucked, camera angle from the side, one leg up
|
12 |
+
Polly gets fucked, one leg up
|
13 |
+
Polly get fucked, cowgirl style, with her red bra off, both hands on tits
|
14 |
+
Polly gets fucked, cowgirl style, her hands on the floor
|
15 |
+
Polly gets fucked, reverse cowgirl style, nature on the background
|
16 |
+
Polly gets fucked, reverse cowgirl style, close shot
|
17 |
+
Polly gets fucked, cowgirl style, in the house, black underwear
|
18 |
+
Polly gets fucked, reverse cowgirl style, gamer headphones on
|
19 |
+
Polly gets fucked, cowgirl style, in the apartments
|
20 |
+
Polly gets fucked, reverse cowgirl style, cum on her belly
|
polly_vid/resize.py
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import cv2
|
2 |
+
import os
|
3 |
+
import numpy as np
|
4 |
+
from pathlib import Path
|
5 |
+
|
6 |
+
def resize_video(input_path, output_path, target_size=(768, 512), target_frames=129):
|
7 |
+
# Open the video
|
8 |
+
cap = cv2.VideoCapture(input_path)
|
9 |
+
|
10 |
+
# Get original video properties
|
11 |
+
original_fps = int(cap.get(cv2.CAP_PROP_FPS))
|
12 |
+
original_frame_count = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
|
13 |
+
|
14 |
+
# Create video writer (using 30 fps for output)
|
15 |
+
fourcc = cv2.VideoWriter_fourcc(*'mp4v')
|
16 |
+
out = cv2.VideoWriter(output_path, fourcc, 30, target_size)
|
17 |
+
|
18 |
+
# Read all frames
|
19 |
+
frames = []
|
20 |
+
while cap.isOpened():
|
21 |
+
ret, frame = cap.read()
|
22 |
+
if not ret:
|
23 |
+
break
|
24 |
+
resized_frame = cv2.resize(frame, target_size)
|
25 |
+
frames.append(resized_frame)
|
26 |
+
|
27 |
+
# If we have fewer frames than target, loop the video
|
28 |
+
if len(frames) < target_frames:
|
29 |
+
while len(frames) < target_frames:
|
30 |
+
frames.extend(frames[:target_frames - len(frames)])
|
31 |
+
# If we have more frames, cut to target length
|
32 |
+
elif len(frames) > target_frames:
|
33 |
+
frames = frames[:target_frames]
|
34 |
+
|
35 |
+
# Write exactly target_frames frames
|
36 |
+
for frame in frames:
|
37 |
+
out.write(frame)
|
38 |
+
|
39 |
+
# Release resources
|
40 |
+
cap.release()
|
41 |
+
out.release()
|
42 |
+
|
43 |
+
def process_directory(input_dir, output_dir):
|
44 |
+
# Create output directory if it doesn't exist
|
45 |
+
Path(output_dir).mkdir(parents=True, exist_ok=True)
|
46 |
+
|
47 |
+
# Process all videos in directory
|
48 |
+
for video_file in Path(input_dir).glob('*.mp4'):
|
49 |
+
input_path = str(video_file)
|
50 |
+
output_path = str(Path(output_dir) / video_file.name)
|
51 |
+
print(f"Processing: {video_file.name}")
|
52 |
+
resize_video(input_path, output_path)
|
53 |
+
|
54 |
+
# Example usage
|
55 |
+
input_directory = "orig_videos"
|
56 |
+
output_directory = "videos"
|
57 |
+
process_directory(input_directory, output_directory)
|
polly_vid/videos.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
videos/1.mp4
|
2 |
+
videos/2.mp4
|
3 |
+
videos/3.mp4
|
4 |
+
videos/4.mp4
|
5 |
+
videos/5.mp4
|
6 |
+
videos/6.mp4
|
7 |
+
videos/7.mp4
|
8 |
+
videos/8.mp4
|
9 |
+
videos/9.mp4
|
10 |
+
videos/10.mp4
|
11 |
+
videos/11.mp4
|
12 |
+
videos/12.mp4
|
13 |
+
videos/13.mp4
|
14 |
+
videos/14.mp4
|
15 |
+
videos/15.mp4
|
16 |
+
videos/16.mp4
|
17 |
+
videos/17.mp4
|
18 |
+
videos/18.mp4
|
19 |
+
videos/19.mp4
|
20 |
+
videos/20.mp4
|
polly_vid/videos/1.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a9c911e8ed04ecae47c830774cbc23774f510e2ad872c73d3071e3a15d6f440b
|
3 |
+
size 1136766
|
polly_vid/videos/10.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7170c430eef3151d60a8fbcc58b197a4eb5c3a914b154aa8ca20881e3e72b94
|
3 |
+
size 1296796
|
polly_vid/videos/11.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c28690f36d9d08a1be35db11a2e3693fd909acd81bdb1a10ce5b75be46d0ac06
|
3 |
+
size 1039751
|
polly_vid/videos/12.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b951be49c1c317b10e32c7d3d35a60ebb22ff8fc5175f7b56d4d32e749b236de
|
3 |
+
size 1672658
|
polly_vid/videos/13.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf84307a8a4a4fbde72fdd2dda24e2ae97cc2259010b6becec06539df4289865
|
3 |
+
size 1576168
|
polly_vid/videos/14.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e819a1e67321276d15b6fbfa9299bb39d0bd8937ccd9982a30da6550864b02d
|
3 |
+
size 1334465
|
polly_vid/videos/15.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7f4a5bdf5b0e1b70758f9e25249c49140315cd0fc32ba97a39b95ec9db5ef33
|
3 |
+
size 1839034
|
polly_vid/videos/16.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:78ee234d6d62ded2c79d4549d4da10a4deb43d3854222641f4b4a2418378dde2
|
3 |
+
size 1088689
|
polly_vid/videos/17.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c50b1310b72939ceb2ae0282a35c1272a914276fe5692c80f27c4280247e7ba3
|
3 |
+
size 2444461
|
polly_vid/videos/18.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cf58e4f2671fca650b605b36f68829ed31580194fc78ab5c6f98fbd60b3e8cc2
|
3 |
+
size 2714588
|
polly_vid/videos/19.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef5fc02bbec48d949eb78c637bf2a97fab8d8b2bc10cd5f19305f68efbb4ebaf
|
3 |
+
size 1721294
|
polly_vid/videos/2.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0cb0dc1f11a04f277765c41a5e0477e173b8170da0b9802f7550c23fbdacd848
|
3 |
+
size 657804
|
polly_vid/videos/20.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c61e18f432ad7a4500da8880f8acbb7def0ba1ccdc3d4c39e51f50b2006f7de0
|
3 |
+
size 1132714
|
polly_vid/videos/3.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4699de37b827d3bdb1c5ebae861b3bf000f9f425ec55f7f86a5840017c2a6a62
|
3 |
+
size 1530631
|
polly_vid/videos/4.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0a2bd8591bf947aa9757efe18376fb5cb81fa1928d38ca247f26f91ff64adce1
|
3 |
+
size 5385410
|
polly_vid/videos/5.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c9b9339061a606b43cb060df846fedf7378bd30f4ba4976dac3cd40ec6b95a32
|
3 |
+
size 1056926
|
polly_vid/videos/6.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4b54d9675c5ffaef1d8d7e155d768e3d1b1408158076e86d40d07011f2bca15
|
3 |
+
size 988292
|
polly_vid/videos/7.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9587d6f8877c02c982fbea0a5cbbf11ff433654eb029fdbf3931386b03fd99a3
|
3 |
+
size 1326361
|
polly_vid/videos/8.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3c08647f9f498d003806ec1659496ebd662f4559ea6f56c4d1fca9c215d1d0fc
|
3 |
+
size 945055
|
polly_vid/videos/9.mp4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6692c8572f79eac5906db03102ed8519f90fb0a38c0769911e7a598630fd9b1
|
3 |
+
size 779164
|