扩展 FEH 功能以预览 RAW 文件

扩展 FEH 功能以预览 RAW 文件

我想在 FEH 中预览 RAW 文件。我现在可以执行以下操作

nufraw-batch --embedded-image DSC_0151.NEF --output=- | feh -

它在 feh 中打开图像,但一次只能处理一张图像。

我试过

 nufraw-batch --embedded-image * --output=- | feh -

但我收到错误。

我想实现一个与feh在目录中启动时完全相同的命令,打开第一个图像并让我滚动浏览所有图像。

答案1

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.

相关内容