当我尝试在 Adobe Photoshop 中打开从 WhatsApp 下载的 jpeg 文件时,出现以下 Photoshop 错误:
无法完成您的请求,因为在 JPEG SOS 标记之前缺少 SOFn、DQT 或 DHT JPEG 标记
谷歌搜索建议在 MS Paint 中打开损坏的文件,然后再次保存。但是对于大量损坏的文件,我想这不是一种方便的方式。
我想转换这个文件:
https://gstatic.com/webp/gallery/1.sm.webp
使用 FFmpeg 转为 PNG 或 JPG。我试过这个:
ffmpeg -i 1.sm.webp a.png
但是产生了错误:
ffmpeg version git-2020-05-22-38490cb Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 9.3.1 (GCC) 20200513
configuration: --enable-gpl --enable-version3 --enable-sdl2
--enable-fontconfig --enable-gnutls --enable-iconv --enable-libass
--enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame
--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg
--enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr
--enable-libsrt --enable-libtheora --enable-libtwolame --enable-libvpx
--enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265
--enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp
--enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvo-amrwbenc
--enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom
--disable-w32threads --enable-libmfx --enable-ffnvcodec --enable-cuda-llvm
--enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2
--enable-avisynth --enable-libopenmpt --enable-amf
libavutil 56. 46.100 / 56. 46.100
libavcodec 58. 86.101 / 58. 86.101
libavformat 58. 43.100 / 58. 43.100
libavdevice 58. 9.103 / 58. 9.103
libavfilter 7. 82.100 / 7. 82.100
libswscale 5. 6.101 / 5. 6.101
libswresample 3. 6.100 / 3. 6.100
libpostproc 55. 6.100 / 55. 6.100
[webp @ 00000000005750c0] missing RIFF tag
[image2 @ 0000000000562540] decoding for stream 0 failed
[image2 @ 0000000000562540] Could not find codec parameters for stream 0
(Video: webp, none): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, image2, from '1.sm.webp':
Duration: 00:00:00.04, start: 0.000000, bitrate: 48 kb/s
Stream #0:0: Video: webp, none, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
Stream #0:0 -> #0:0 (webp (native) -> png (native))
Press [q] to stop, [?] for help
[webp @ 0000000000577fc0] missing RIFF tag
Error while decoding stream #0:0: Invalid data found when processing input
Cannot determine format of input stream 0:0 after EOF
Error marking filters as finished
Conversion failed!
我也试过这个:
ffmpeg -probesize 1000 -i 1.sm.webp a.png
但该文件只有 243 个字节,并且错误仍然存在。我也试过JPG。难道我做错了什么?我知道这个文件可以转换,因为我之前用 Go 程序做过:
我已使用cifs-utils
. 在 Linux 端查看一些图像时,它们会在视觉上显示失真/损坏,但在 Windows 端会很好。
示例 1(左:Linux,右:Windows)
示例 2(左:Linux,右:Windows)
在某些情况下,使用 Firefox (69.0),图像根本不会显示,只显示一个空白边框,文件位置位于左上角。在 Chrome (76.0.3809.132) 中,它会显示一个非常损坏的图像。
我已经尝试过一些故障排除:
有没有人经历过这种情况并知道是什么原因造成的?