From cb2704d43b9c3070d78b60193cbcaef33d1b525a Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 2 Nov 2014 02:39:31 +0300 Subject: [PATCH] Use expr instead of python --- video/calc_bitrate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/calc_bitrate b/video/calc_bitrate index e680ac9..e5091fd 100755 --- a/video/calc_bitrate +++ b/video/calc_bitrate @@ -18,4 +18,4 @@ else bpp="$4" fi -echo bitrate = "$width * $height * $fps * $bpp / 1000" = `python -c "print $width * $height * $fps * $bpp / 1000"` +echo bitrate = "$width * $height * $fps * $bpp / 1000" = `expr $width * $height * $fps * $bpp / 1000` -- 2.39.2