Skip to content

Instantly share code, notes, and snippets.

View HJunyuan's full-sized avatar

Kyle Huang Junyuan HJunyuan

View GitHub Profile
@HJunyuan
HJunyuan / MergeVideoAudioFiles.md
Created April 26, 2020 16:08
How to merge video/audio files with FFmpeg

How to merge video/audio files with FFmpeg

0. Prerequisite

Download FFmpeg from www.ffmpeg.org/download.html

1. Prepare a .txt of all files to be merged

Example:

Keybase proof

I hereby claim:

  • I am hjunyuan on github.
  • I am hjunyuan (https://keybase.io/hjunyuan) on keybase.
  • I have a public key ASCzckNmMu81sOuzC3A24Y5GHef-eQJk0BdOPTa611Wp5go

To claim this, I am signing this object:

@HJunyuan
HJunyuan / README.md
Last active June 25, 2021 16:51
Modifying Git commit and author date

Modifying Git commit and author date

View Git log

# Pretty format
git log --pretty=fuller

# %ci: committer date, %ai: author date (e.g. "2021-06-09 01:18:55 +0800")
git log --graph --pretty=format:'%C(auto)%h%d (%ci) (%ai) <%ce> %s'