Skip to content

Commit

Permalink
Add tips for compressing videos
Browse files Browse the repository at this point in the history
  • Loading branch information
healthonrails committed Dec 10, 2021
1 parent 6e2c022 commit e7aa054
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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
Expand Down

0 comments on commit e7aa054

Please sign in to comment.