Contributors: Zhang Qian, Dan Jiang, Xiao Zhou
About two weeks ago, the Raspberry Pi 4 announced its latest upgrade: a new 8GB memory version priced at $75. Is this new Raspberry Pi worth it? To answer this question, a YouTuber named Jeff Geerling came up with a bold idea: on a workday, unplug his MacBook Pro and plug in the newly purchased 8GB Raspberry Pi 4 as his main work computer to see what it feels like after a day.
-
Using dedicated apps to browse Twitter;
-
Using Slack (Slack uses more memory than most other applications that Jeff Geerling runs combined at any given time);
-
Recording and editing audio and video;
-
Using Docker, Ansible, and Kubernetes for some infrastructure automation.
-
A Kensington 240 GB SSD in an Inateck USB 3.0 SATA enclosure.
-
Apple Magic Keyboard.
-
Apple Magic Trackpad.
-
Behringer U-Phoria USB 3.0 audio interface.
-
Logitech C920 webcam.
-
Reduce the burden on the Raspberry Pi’s GPU (therefore less tearing);
-
Allow the Raspberry Pi’s GPU to apply anti-aliasing;
-
Allow for a 60Hz refresh rate, which makes watching 60fps videos easier on the eyes.
$ arecord --list-devices
**** List of CAPTURE Hardware Devices ****
card 2: U192k [UMC202HD 192k], device 0: USB Audio [USB Audio]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 3: C920 [HD Pro Webcam C920], device 0: USB Audio [USB Audio]
Subdevices: 1/1
Subdevice #0: subdevice #0
# Gets sound and video from the webcam:
$ ffmpeg -ar 44100 -ac 2 -f alsa -i hw:3,0 -f v4l2 -codec:v h264 -framerate 30 -video_size 1920x1080 -itsoffset 0.5 -i /dev/video0 -copyinkf -codec:v copy -codec:a aac -ab 128k -g 10 -f mp4 test.mp4
# Sound from Behringer, video from webcam:
ffmpeg -ar 44100 -ac 2 -f alsa -acodec pcm_s32le -i hw:2,0 -f v4l2 -codec:v h264 -framerate 30 -video_size 1920x1080 -itsoffset 0.5 -i /dev/video0 -copyinkf -codec:v copy -codec:a aac -ab 128k -g 10 -f mp4 test-webcam-audio.mp4
Recommended Reading:
-
Code Runner for VS Code Breaks 10 Million Downloads! Supports Running Over 40 Languages
-
Breaking News! Microsoft Releases Visual Studio Online: Web Version of VS Code + Cloud Development Environment
-
Microsoft Loves Python Too! VS Code Python Newly Released! Native Support for Jupyter Notebook is Finally Here!
-
Microsoft Loves Java Too! Microsoft Announced Azure Spring Cloud Services at SpringOne Conference!
-
What Is It Like to Work at Microsoft? (Part Two)
-
Microsoft Internal Referrals, Long-Term Valid
-
VS Code Zhihu Live, Participation Exceeded 1000 People!
-
Code Editor Comparison: Why VS Code Can Take the Lead
-
Did You Know, VS Code Is More Than Just Open Source
-
Those Years, We Chased VS Code Together
VS Code · Programming Development · Industry News
Leave a Comment
Your email address will not be published. Required fields are marked *