Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
FFMPEG-based tool for converting either two separate stereo videos or an existing 3D video into a wide range of 3D video formats.
A simple FFMPEG-based script for converting either two separate stereo videos or an existing 3D video into a wide range of 3D video formats.
3d-video-converter
From PyPI:
pip install 3d-video-converter
Or from the source on GitHub:
pip install "3d-video-converter @ git+https://github.com/evoth/3d-video-converter"
The package will be installed with the module name video_converter_3d
.
This package depends on ffmpeg-python, which means that FFmpeg must be installed and accessible via the $PATH
environment variable. Please follow appropriate installation instructions for your platform.
To check if FFmpeg is installed, run the ffmpeg
command from the terminal. If it is installed correctly, you should see version and build information.
Convert a full-width parallel view video to full color red/cyan anaglyph:
from video_converter_3d import convert_3d
convert_3d("video_parallel.mp4", "sbsl", "video_anaglyph.mp4", "arcc")
Combine two separate stereo videos into a full-width parallel view video, only keeping audio from the left video:
from video_converter_3d import convert_2d_to_3d
convert_2d_to_3d(
"video_left.mp4",
"video_right.mp4",
True,
False,
"video_parallel.mp4",
"sbsl"
)
FAQs
FFMPEG-based tool for converting either two separate stereo videos or an existing 3D video into a wide range of 3D video formats.
We found that 3d-video-converter 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.