Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
mobile-emulator-screencapture
Advanced tools
Ruby wrapper for take screenshot and screenrecord on ios/android emulators.
Using adb screencap
and adb screenrecord
see: https://developer.android.com/studio/command-line/adb.html
adb screenrcord
is only supported: Android >= 4.4(API Level 19)
Not supported yet
Using xcrun simctl io screenshot
and xcrun simctl io recordVideo
see: xcrun simctl io --help
xcrun simctl io screenshot
is only supported: Xcode >= 8.2
gem 'mobile-emulator-screencapture'
require 'mobile/emulator/screencapture'
android = Mobile::Emulator::Screencapture.create(
platform: "android",
screenshot_dir: "./screenshot",
screenrecord_dir: "./screenrecord",
# options for adb screenrecord
width: 720,
height: 360
bit_rate: 6_000_000,
time_limit: 180
)
android.screenshot("test")
# > ./screenshot/test.png
android.start_screenrecord("test")
sleep 30
android.stop_screenrecord
# > ./screenrecord/test.mp4
Bug reports and pull requests are welcome on GitHub at https://github.com/Kesin11/mobile-emulator-screencapture.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that mobile-emulator-screencapture demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.