
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@atem-connection/camera-control
Advanced tools
Library for ATEM Camera control using atem-connection.
This library can be used with atem-connection NPM Github, to provide a friendly interface for camera control.
import { Atem, Commands } from 'atem-connection'
import { AtemCameraControlDirectCommandSender, AtemCameraControlStateBuilder } from '@atem-connection/camera-control'
// Create the class which tracks the current state from the atem
const cameraControlState = new AtemCameraControlStateBuilder(4)
const atem = new Atem({})
atem.connect('10.0.0.1')
// Create the command sender. Alternatively `AtemCameraControlBatchCommandSender` can be used to be able to batch multiple commands to be sent once
const cameraControlSender = new AtemCameraControlDirectCommandSender(atem)
atem.on('connected', () => {
console.log('connected')
// Perform an autofocus of camera 1 after a short timeout
setTimeout(() => {
cameraControlSender.lensTriggerAutoFocus(1)
}, 1000)
})
atem.on('disconnected', () => {
cameraControlState.reset()
})
atem.on('receivedCommands', (commands) => {
const cameraCommands = []
for (const command of commands) {
if (command instanceof Commands.CameraControlUpdateCommand) cameraCommands.push(command)
}
const changes = cameraControlState.applyCommands(cameraCommands)
// Do something based on the reported changes
console.log('camera changes', changes)
})
yarn buildYou can run yarn build:main --watch to rebuild the typescript code, which will re-run upon saving a file.
There are some unit tests, which can be run with yarn unit. This command calls into jest, so any jest arguments can also be used
FAQs
Library for ATEM Camera control using atem-connection.
The npm package @atem-connection/camera-control receives a total of 16 weekly downloads. As such, @atem-connection/camera-control popularity was classified as not popular.
We found that @atem-connection/camera-control demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.