https://www.fileformat.info/info/unicod ... /index.htm
Then I tried to place raspivid 640x480 preview window into bottom right corner of the console (from ssh session).
For 1024x768 console this command is needed:
Code: Select all
raspivid -md 7 -w 640 -h 480 -p 976,552,640,480 -t 0
552+480=1032
Fore 1366x768 console this command is needed:
Code: Select all
raspivid -md 7 -w 640 -h 480 -p 1196,552,640,480 -t 0
552+480=1032
Is there an explanation for 1616x1032 / 1836x1032 corrdinate system for raspivid preview on 1024x768 / 1366x768 console?
Code: Select all
[email protected]:~ $ cat 1024
#!/bin/bash
echo -n "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456█"
while (true)
do
sleep 1
done
[email protected]:~ $ cat 1366
#!/bin/bash
echo -n "01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789█"
while (true)
do
sleep 1
done
[email protected]:~ $