Skip to content

Instantly share code, notes, and snippets.

View iWeslie's full-sized avatar
😄

Weslie iWeslie

😄
  • ByteDance Ltd.
  • Beijing, China
View GitHub Profile
@MarsMSJ
MarsMSJ / WebM_to_ProRes.md
Last active January 28, 2025 17:45
Convert your WebM (VP9) files to ProRes

Convert your WebM to ProRes

Like many of you lucky enough to purchase a PS5, I have been enjoying my time with the new console. One feature I started playing with is the video game capture feature via the "Create" button. I have been capturing my favorite clips here and there and selected the best ones to include a video I want to share. Unfortunately, I ran into trouble. None of my video editing applications (FCPX, DaVinci) support the WebM container. My favorite clips were all captured using WebM.

If you like me have all your favorite clips stuck in WebM then I have a solution for you. FFmpeg! This free software includes a ProRes encoder that simple enough to use works on Davinci Resolve (free version available) and Adobe Premiere! (FCPX of course supports ProRes.) See links below.

MacOS (and Linux)

On the MacOS, you can use the following command (Bash) to convert all WebM files in the current directory to ProRes.

@mag911
mag911 / Parallel_Tools_fix_for_Ubuntu_19.04.md
Last active May 19, 2025 16:10
Parallel Tools fix for Ubuntu 20.04, 19.04, 19.10, 18.04

Update 25 April 2020:

Many thanks to @KZL1992 @tomslominski @ptrofi @n-thumann for recent comments on their experiences with 20.04 and Parallels 13/14/15, especially the subsitution of the latest prl-tools-lin.iso for older Parallels to get it going.


First off, credit goes to github.com/rudolfratusinski for leading the way here.

https://gist.github.com/rudolfratusinski/a4d9e3caff11a4d9d81d2e84abc9afbf

@AveYo
AveYo / .. MediaCreationTool.bat ..md
Last active June 1, 2025 06:05
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@nlutsenko
nlutsenko / yolo.sh
Last active April 18, 2025 19:25
Fast Xcode builds
defaults write xcodebuild PBXNumberOfParallelBuildSubtasks 4
defaults write xcodebuild IDEBuildOperationMaxNumberOfConcurrentCompileTasks 4
defaults write com.apple.xcode PBXNumberOfParallelBuildSubtasks 4
defaults write com.apple.xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks 4
@laozhu
laozhu / git-tips.sh
Last active August 23, 2017 11:32
Git如何回滚本地和远程的代码库
git log
git reset --hard <commit-id>
git push <remote-repo> HEAD --force