Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Author: Lijun Yu
Email: lijun@lj-y.com
A robust reader for AVI video files.
Originally designed for the MEVA dataset to replace OpenCV's cv2.VideoCapture
in the DIVA project.
pip install avi-r
A robust video loader that deals with missing frames in AVI files.
In AVI-R
, missing frames are automatically filled with the previous available frame, or the next available frame for the beginning of a video.
This ensures you are getting the correct frame ids and valid frame contents all the time.
In comparison, OpenCV's cv2.VideoCapture
would skip missing frames without warning, leading to wrong frame ids.
Pims would return empty frames also without warning.
And decord would crash.
from avi_r import AVIReader
video = AVIReader(video_path) # or AVIReader(video_name, parent_dir)
for frame in video:
# frame is a avi_r.frame.Frame object
image = frame.numpy()
# image is an uint8 array in a shape of (height, width, channel[BGR])
# ... Do something with the image
video.close() # Release internal buffers
cv2.VideoCapture
To replace the cv2.VideoCapture
objects in legacy codes, simply change from
import cv2
cap = cv2.VideoCapture(video_path)
to
from avi_r import AVIReader
cap = AVIReader(video_path)
AVIReader.read
follows the schema of cv2.VideoCapture.read
but automatically inserts the missing frames while reading the video.
AVIReader.release
also follows cv2.VideoCapture.release
.
Random access of a frame requires decoding from the nearest key frame (approximately every 60 frames for MEVA).
Averagely, this introduces a constant overhead of 0.1 seconds.
However, when the nearest key frame is missing, AVIReader
will try to search a valid one till the beginning.
start_frame_id = 1500
length = 100
video.seek(start_frame_id)
for frame in video.get_iter(length):
image = frame.numpy()
# ... Do something with the image
video.close()
video.num_frames # cap.get(cv2.CAP_PROP_FRAME_COUNT)
video.frame_rate # cap.get(cv2.CAP_PROP_FPS)
video.height # cap.get(cv2.CAP_PROP_FRAME_HEIGHT)
video.width # cap.get(cv2.CAP_PROP_FRAME_WIDTH)
For other usages, please see the comments in reader.py.
See speed.md.
See version.md.
FAQs
A robust reader for avi videos.
We found that avi-r demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.