Mac小技巧之彻底关闭摄像头

引言

最近看到一个有趣的话题[网络摄像头遮挡器Nope 2.0版上线众筹],Nope有什么功能呢,嗯就等同于我们之前拿一张纸片遮挡摄像头的作用.

抉择

应该是掏钱选择产品还是选择代码呢,作为国产的工程师,我必须骄傲的选择代码来搞定这个东东,至于说买产品之类的话,还是不要再说了,作为码农,太穷!
不调侃的说,从产品来说的话我还是第一选择代码来处理,理由是:
1.减少配件
2.能用代码搞定的东西绝对不用产品来弄
3.我不喜欢这个设计


Mac小技巧之彻底关闭摄像头_第1张图片
snipaste_20170601_090548.png

干货

关闭摄像头代码

sudo chmod a-r /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/VDC.plugin/Contents/MacOS/VDC
sudo chmod a-r /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/Resources/AVC.plugin/Contents/MacOS/AVC
sudo chmod a-r /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBVDCDigitizer
sudo chmod a-r /Library/CoreMediaIO/Plug-Ins/DAL/AppleCamera.plugin/Contents/MacOS/AppleCamera
sudo chmod a-r /Library/CoreMediaIO/Plug-Ins/FCP-DAL/AppleCamera.plugin/Contents/MacOS/AppleCamera

开启摄像头代码

sudo chmod a+r /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/VDC.plugin/Contents/MacOS/VDC
sudo chmod a+r /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/Resources/AVC.plugin/Contents/MacOS/AVC
sudo chmod a+r /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/QuickTimeUSBVDCDigitizer
sudo chmod a+r /Library/CoreMediaIO/Plug-Ins/DAL/AppleCamera.plugin/Contents/MacOS/AppleCamera
sudo chmod a+r /Library/CoreMediaIO/Plug-Ins/FCP-DAL/AppleCamera.plugin/Contents/MacOS/AppleCamera

本文来自于失眠的波妞网的Mac小技巧之彻底关闭摄像头

你可能感兴趣的:(Mac小技巧之彻底关闭摄像头)