#Users
- User object
{
id: integer
username: string
email: string
created_at: datetime(iso 8601)
updated_at: datetime(iso 8601)
}
| # v4l2-ctl is a command inside the package named v4l-utils. | |
| sudo apt-get install v4l-utils | |
| # find the device name of the webcam (e.g., /dev/video0) | |
| v4l2-ctl --list-devices | |
| # replacing /dev/video0 with your device name and 128 with your desired brightness level (0-255) |
| git --no-pager diff --shortstat master | |
| // result | |
| 38 files changed, 704 insertions(+), 683 deletions(-) |
#Users
{
id: integer
username: string
email: string
created_at: datetime(iso 8601)
updated_at: datetime(iso 8601)
}
| #First install the webp converter by this | |
| sudo apt-get install webp | |
| #go inside the directory where all images are there | |
| #make sure all images are in RGB color mode, otherwise you will get error for CMYK images. | |
| #Convert all images to RGB by this command (you should install ImageMagik to do that) | |
| for f in *.jpg; do convert -colorspace RGB "$f" "${f}"; done | |
| #finally convert all images to Webp format |