From e7aa054d0cebede45fe71d44299f05c6ca38a6fb Mon Sep 17 00:00:00 2001 From: Chen Yang Date: Fri, 10 Dec 2021 18:07:08 -0500 Subject: [PATCH] Add tips for compressing videos --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f1f944e..cbe00c2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,6 @@ An annotation and instance segmentation-based multiple animal tracking and behav A basic user guide with installation instructions and recent documentation can be found at [](https://healthonrails.github.io/annolid/) https://healthonrails.github.io/annolid/. - ## Examples ![Multiple Animal Tracking](docs/imgs/mutiple_animal_tracking.png) @@ -50,6 +49,11 @@ ERROR: Could not find a version that satisfies the requirement decord>=0.4.0 ``` , please try to install [ffmpeg](https://ffmpeg.org/) or you can install it in conda `conda install -c conda-forge ffmpeg`. +FYI: it is helpful to compress videos to reduce diskspace using ffmpeg. +```bash +ffmpeg -i my_video.mp4 -vcodec libx264 my_video_compressed.mp4 +``` + ## Launch annolid user interface based on labelme ```bash source activate your_env_name