blog.jeremyfiel.comffmpeg: download streams, trim video, concat filesDownload individual stream files ffmpeg -i <input-file> -c <codec> <output-file> Start with the ffmpeg command -i = input file <input-file> either a stream url or local file -c = codec to be used <codec>\= I always use copy to use the same codec as ...Jan 7, 2023·3 min read
blog.jeremyfiel.comBitbucket: Pull PR and commit local changes to remote forksAs a maintainer of a very large repo, we ask our developers to use the Forking Workflow This has some challenges, especially when reviewing PRs and committing changes to those PRs on the respective, remote forks. After many months and lots of blog re...Dec 13, 2022·5 min read
blog.jeremyfiel.comFind all commits related to a specific file pathEvery now and then a bug is introduced with a new file added to the repo. How do we track down when this file was first committed and any additional commits to this file along the way? There are many, many ways of doing this in git. One of those way...Jun 6, 2022·2 min read
blog.jeremyfiel.comSearch and Replace Quoted Strings in YAMLRegex capture groups and bash positional arguments to replace text in VS Code I've been knee deep in OpenAPI specs in my current role as an API Product Manager. While the work is fulfilling, there are some very mundane aspects to onboarding a develop...Jan 6, 2022·4 min read