(requires ffplay ffmpeg package)
A quick and super simple image sequence playback shell utility (bash script) that uses ffplay for quick and easy play back of image sequences that are saved to disk in the standard way used widely by the animation industry: imagename.#.ext
For example:
myimageseq.00.jpg
myimageseq.02.jpg
myimageseq.03.jpg
myimageseq.04.jpg
###Description:
Simple util to view full image sequences, like: img.000.png img.001.png [...] img.300.png
Play any image sequence filetype ffplay supports. I.e. jpg png (check your build of ffplay)
Supports relative paths. Pass in a directory path if that folder only contains one sequence.
Or just run seqplay
with no args in the current directory if it contains only a single sequence of images.
If there are multiple file types and image sequences in a directory you can easily use wildcards as shown below.
seqplay
seqplay *.png
seqplay imgname.*.png
seqplay /path/to/imgseq/
seqplay /path/to/imgseq/imgname.*.png
ffplay from ffmpeg
Install ffmpeg with:
sudo apt-get install ffmpeg
Written for bash on Linux (Ubuntu) Guessing it works in other bash environments but, untested.
-
Clone the repo to your home directory (in a shell):
cd ~
git clone https://github.com/erickmiller/seqplay.git
-
Open your .bashrc in a text editor:
gedit ~/.bashrc &
-
Source seqplay.sh from your .bashrc file, i.e. add this line to the end of the .bashrc you opened, then save:
source ~/seqplay/seqplay.sh
Launch a new shell to start using the seqplay
bash command line utility to play and view image sequences.