raviewer icon indicating copy to clipboard operation
raviewer copied to clipboard

Raw image/video data analyzer

Results 3 raviewer issues
Sort by recently updated
recently updated
newest added

As the title says, I wanted to ask if there is a way to run `Raviewer` on Windows.

Hi, I noticed that you used Dear PyGui as your GUI for Raviewer. Raviewer looks like it could make a nice example app on the Dear PyGui Showcase (https://github.com/hoffstadt/DearPyGui/wiki/Dear-PyGui-Showcase). Would...

This can be easily done with: /usr/share/thumbnailers/raw.thumbnailers ``` [Thumbnailer Entry] TryExec=raviewer-thumbnailer Exec=raviewer-thumbnailer %s %i %o MimeType=image/x-adobe-dng;image/x-canon-cr2;image/x-canon-cr3;image/x-canon-crw;image/x-nikon-nef;image/x-nikon-nrw;image/x-olympus-orf;image/x-pentax-pef;image/x-sony-arw;image/x-sony-sr2;image/x-epson-erf;image/x-minolta-mrw;image/x-fuji-raf;image/x-panasonic-rw;image/x-panasonic-rw2; ``` /usr/bin/raviewer-thumbnailer ``` #!/bin/bash SIZE="$1" INPUT="$2" OUTPUT="$3" raviewer -f "$INPUT" -e "$OUTPUT" --endianness auto...