Escaped the * characters
authorChris Salisbury <Chris.Salisbury@gmail.com>
Sun, 16 Apr 2017 12:13:58 +0000 (21:13 +0900)
committer6by9 <6by9@users.noreply.github.com>
Tue, 18 Apr 2017 10:05:39 +0000 (11:05 +0100)
The example split command reads incorrectly due to *68* being interpreted as italics in markdown (i.e. it is the equivalent of <i>68</i> in html).

host_applications/linux/apps/raspicam/imv_examples/README.md

index ff75a392f4b8dd4b15901dba24e8eb3323182546..d85f3433c7ac5b52dfb62d91ab2b77ecb09a077b 100644 (file)
@@ -13,7 +13,7 @@ raspivid -x test.imv -o test.h264
 
 We need to split the buffer first using split:
 
-split -a 4 -d -b $(((120+1)*68*4)) test.imv frame-
+split -a 4 -d -b $(((120+1)\*68\*4)) test.imv frame-
 
 Play:
 -----