Filter
Exclude
Time range
-
Near
Gonna make tomorrow a videocapture i think. Dunno If i get a shot or Something. But gonna make a Video editing on a picture or two tomorrow since the modes are really cool. Cradles settings but the Filters and editability are really cool
1
7
CVE-2026-12033 Out of Bounds Read in VideoCapture in Google Chrome Prior to 149.0.7827.115 vulmon.com/vulnerabilitydeta…

45
Replying to @MixtrixFix
Ahh thank you! I really like that videocapture
1
13
$HPNN #Digitalage NFA With regard to "Frame Zero" Frame Zero Stuff: Literally cv2.VideoCapture().read() in OpenCV (Python, free since ~2010) to grab the first frame attach metadata via FFmpeg, ExifTool, or a simple Node/FFmpeg pipeline. Hash it, sign it with a private key, and store it in SQLite/Postgres or IPFS. Add a basic blockchain-style ledger for provenance if you want. Tutorials are everywhere.
81
🪟 IngeSTore 2.0 going 8-channel (SDI/ST2110/NDI) is basically Windows 11 saying “we’re not just for browsing.” This matters: broadcast capture’s becoming software-defined, not magic boxes. windowsforum.com/threads/ing… #Windows11 #VideoCapture #BroadcastIngest #Bluefish444
1
11
OpenCVで、cap = cv2.VideoCapture(0) で開いていたところ、いつの間にか余計な引数"cv2.CAP_DSHOW"を追加してくれて、フレームレートがガタ落ち。 あちこちデバッグ検証して、やっと原因を見つけて解決しましたが、今日は無駄な時間を過ごしました。😴
30
Αυτή η ώρα η πρωινή όπως και η πολύ απογευματινή σε αποζημιώνουν! 🙏🙏🙏 #travel #lovelyplaces #videocapture #moments #memories #greekislands #greekbeauty #greece #space #σπεις #escapingroutine #lovetraveling #crystal_clear_sea #Melon_wanderlust
6
19
673
Code 👇 """""""" import cv2 from ultralytics import solutions def count_objects_in_region(video_path, output_video_path, model_path): """Count objects in a specific region within a video.""" cap = cv2.VideoCapture(video_path) assert cap.isOpened(), "Error reading video file" w, h, fps = (int(cap.get(x)) for x in (cv2.CAP_PROP_FRAME_WIDTH, cv2.CAP_PROP_FRAME_HEIGHT, cv2.CAP_PROP_FPS)) video_writer = cv2.VideoWriter(output_video_path, cv2.VideoWriter_fourcc(*"mp4v"), fps, (w, h)) region_points = [(20, 400), (1080, 400), (1080, 360), (20, 360)] counter = solutions.ObjectCounter(show=True, region=region_points, model=model_path) while cap.isOpened(): success, im0 = cap.read() if not success: print("Video frame is empty or processing is complete.") break results = counter(im0) video_writer.write(results.plot_im) cap.release() video_writer.release() cv2.destroyAllWindows() count_objects_in_region("path/to/video.mp4", "output_video.avi", "yolo26n.pt") """"""""

4
513
ಹಾಸನದಲ್ಲಿ ಪುಂಡ ಯುವಕರ ರಂಪಾಟ, ಗಾಂ*ಜಾ ನಶೆಯಲ್ಲಿ ಪ್ರಪಂಚ ಮರೆತ ಯುವಕರು, ಸಾರ್ವಜನಿಕರಿಗೆ ಅವಾಚ್ಯ ಶಬ್ದಗಳಿಂದ ನಿಂದನೆ.. #PoliceBribe #bribery #policecollection #karnatakastatepolice #videocapture #poorpeople #trendingvideo #viralvideoシ #SocialMediaTrends #mysore #amogghmahesh #amogghakarnataka #amogghatv #amoggha #amogghmysore #amoggh #BreakingNews #NewsUpdate #Karnatakanews #newsupdate2026
2
14
121
11,096
Code 👇 """""""" import cv2 from ultralytics import solutions cap = cv2.VideoCapture("path/to/video.mp4") # Initialize object blurrer blurrer = solutions.ObjectBlurrer( show=True, # display the output model="yolo26n.pt", # model for object blurring, e.g., yolo26m.pt # line_width=2, # width of bounding box. # classes=[0, 2], # blur specific classes, e.g., person and car with the COCO pretrained model. # blur_ratio=0.5, # adjust percentage of blur intensity, value in range 0.1 - 1.0 ) # Process video while cap.isOpened(): success, im0 = cap.read() if not success: print("Video frame is empty or processing is complete.") break results = blurrer(im0) # print(results) # access the output cap.release() cv2.destroyAllWindows() # destroy all opened windows """"""""

1
5
387
Looking to capture high-quality video from your SDI camera? This USB 3.0 Capture Box lets you record, edit, and stream uncompressed footage without any driver hassle! Check it out: unicun.com/product/full-hd-c… #videocapture #streaming #SDI #USB3.0 #broadcast
60
Code 👇 """"""" import cv2 from ultralytics import solutions cap = cv2.VideoCapture("path/to/video.mp4") assert cap.isOpened(), "Error reading video file" # Video writer w, h, fps = (int(cap.get(x)) for x in (cv2.CAP_PROP_FRAME_WIDTH, cv2.CAP_PROP_FRAME_HEIGHT, cv2.CAP_PROP_FPS)) video_writer = cv2.VideoWriter("distance_output.avi", cv2.VideoWriter_fourcc(*"mp4v"), fps, (w, h)) # Initialize distance calculation object distancecalculator = solutions.DistanceCalculation( model="yolo26n.pt", # path to the YOLO26 model file. show=True, # display the output ) # Process video while cap.isOpened(): success, im0 = cap.read() if not success: print("Video frame is empty or processing is complete.") break results = distancecalculator(im0) print(results) # access the output video_writer.write(results.plot_im) # write the processed frame. cap.release() video_writer.release() cv2.destroyAllWindows() # destroy all opened windows """""""

5
353
Code 👇 """""""" import cv2 from ultralytics import solutions cap = cv2.VideoCapture("path/to/video.mp4") # Initialize parking management object parkingmanager = solutions.ParkingManagement( model="yolo26n.pt", json_file="bounding_boxes.json", # path to parking annotations file ) while cap.isOpened(): ret, im0 = cap.read() if not ret: break results = parkingmanager(im0) # print(results) # access the output cap.release() cv2.destroyAllWindows() # destroy all opened windows """"""""

8
397
That's the first thing I literally tested out when they so-called released. The first update worked perfectly fine, and then they add the 60fps and then it's gone. Super weird the switch 2 is way more than powerful enough to handle videocapture. It does with everything else.
2
60
Replying to @UiSavior
Did I really watched a videocapture of a video from twitter/X on twitter/X?
5
2,249
Code 👇 """""" import cv2 from ultralytics import solutions cap = cv2.VideoCapture("path/to/video.mp4") # Initialize analytics object analytics = solutions.Analytics( show=True, analytics_type="line", # "bar", "area", "line" model="yolo26n.pt", # classes=[0, 2], # specific class analytics ) # Process video frame_count = 0 while cap.isOpened(): success, im0 = cap.read() if not success: break frame_count = 1 results = analytics(im0, frame_count) # print(results) # access the output cap.release() cv2.destroyAllWindows() # destroy all opened windows """"""

3
373
Our Live Streamer app is simple and pairs with the Elite Go and X'tra Go capture cards for a PC-free streaming experience! Plug in, launch the app, and stream to Twitch or YouTube directly from your iPad! Watch the video to learn how! More Details Here🔗 hubs.la/Q047P9kP0 #capturecard #pcie #pcbuild #videocapture #gamingpc
2
5
807
Code 👇 """""""""" import cv2 from ultralytics import solutions cap = cv2.VideoCapture("path/to/video.mp4") # Initialize heatmap object heatmap = solutions.Heatmap(show=True, model="yolo26n.pt", # colormap of heatmap colormap=cv2.COLORMAP_PARULA) # Process video while cap.isOpened(): success, im0 = cap.read() if not success: break results = heatmap(im0) # print(results) # access the output cap.release() cv2.destroyAllWindows() """"""""""

4
283