我想预览FEH中的原始文件。我现在可以做以下几件事
nufraw-batch --embedded-image DSC_0151.NEF --output=- | feh -它以feh打开图像,但一次只能处理一个图像。
我试过了
nufraw-batch --embedded-image * --output=- | feh -但我犯了个错误。
当在目录中启动时,我想实现一个与feh完全类似的命令,打开第一个图像并让我滚动所有这些图像。
发布于 2019-06-21 15:15:15
feh有处理原始文件的内置方式。该特性是通过外部dcraw工具实现的。确保它安装在您的系统中,并遵循man feh的指示:
SUPPORTED FORMATS
<..>
If dcraw is available, feh also supports RAW files provided by cameras and will
display the embedded thumbnails. Use --conversion-timeout timeout with a
non-negative value to enable support for these formats.https://unix.stackexchange.com/questions/526249
复制相似问题