diff --git a/day-1.md b/day-1.md new file mode 100644 index 0000000..25055be --- /dev/null +++ b/day-1.md @@ -0,0 +1,13 @@ +# Daily Learning +## Morning Planning +Cloudy morning + +- [ ] Check out the [github blog](https://github.blog/) for topic ideas. +- [ ] Learn about [GitHub Pages](https://skills.github.com/#first-day-on-github). +- [ ] Convert my first blog post into an actual webpage. +## Review +Convert an image or video from dark mode to light mode using [ffmpeg](https://www.ffmpeg.org) + +```bash +ffmpeg -i input.mp4 -vf "negate,hue=h=180,eq=contrast=1.2:saturation=1.1" output.mp4 +```