不带图腾的 Nautilus 视频缩略图

不带图腾的 Nautilus 视频缩略图

我已删除 totem 并安装了 VLC。现在视频文件缩略图不见了。有没有办法在不重新安装 totem 的情况下恢复缩略图?

我知道我可以同时拥有 totem 和 VLC,但我真的不想拥有超出我需要的软件 :)

答案1

我在 11.10 和 12.04 版的 gconf-editor 中没有桌面/gnome/tumbnailers 下的密钥。所有缩略图均正常生成,但电影除外,因为我卸载了 totem。

为了使用 ffmpegthumbnailer,我按照上面的帖子安装它:

sudo apt-get install ffmpeg ffmpegthumbnailer gstreamer0.10-ffmpeg

然后像上面的帖子一样删除缩略图缓存:

rm ~/.thumbnails/fail/gnome-thumbnail-factory/*
rm ~/.thumbnails/normal/*

然后我对 /usr/share/thumbnailers/totem.thumbnailer 进行了更改

由此:

[Thumbnailer Entry]
TryExec=/usr/bin/totem-video-thumbnailer
Exec=/usr/bin/totem-video-thumbnailer -s %s %u %o

更改为:

[Thumbnailer Entry]
TryExec=ffmpegthumbnailer
Exec=ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10

然后鹦鹉螺退出了:

nautilus -q

现在一切运行良好。希望对您有帮助!

如果缩略图仍然无法生成,您可能需要将以下内容添加到 /usr/share/thumbnailers/totem.thumbnailer:

MimeType=application/mxf;application/ogg;application/ram;application/sdp;application/vnd.ms-wpl;application/vnd.rn-realmedia;application/x-extension-m4a;application/x-extension-mp4;application/x-flash-video;application/x-matroska;application/x-netshow-channel;application/x-ogg;application/x-quicktimeplayer;application/x-shorten;image/vnd.rn-realpix;image/x-pict;misc/ultravox;text/x-google-video-pointer;video/3gpp;video/dv;video/fli;video/flv;video/mp2t;video/mp4;video/mp4v-es;video/mpeg;video/msvideo;video/ogg;video/quicktime;video/vivo;video/vnd.divx;video/vnd.rn-realvideo;video/vnd.vivo;video/webm;video/x-anim;video/x-avi;video/x-flc;video/x-fli;video/x-flic;video/x-flv;video/x-m4v;video/x-matroska;video/x-mpeg;video/x-ms-asf;video/x-ms-asx;video/x-msvideo;video/x-ms-wm;video/x-ms-wmv;video/x-ms-wmx;video/x-ms-wvx;video/x-nsv;video/x-ogm+ogg;video/x-theora+ogg;video/x-totem-stream;audio/x-pn-realaudio;audio/3gpp;audio/ac3;audio/AMR;audio/AMR-WB;audio/basic;audio/midi;audio/mp2;audio/mp4;audio/mpeg;audio/ogg;audio/prs.sid;audio/vnd.rn-realaudio;audio/x-aiff;audio/x-ape;audio/x-flac;audio/x-gsm;audio/x-it;audio/x-m4a;audio/x-matroska;audio/x-mod;audio/x-mp3;audio/x-mpeg;audio/x-ms-asf;audio/x-ms-asx;audio/x-ms-wax;audio/x-ms-wma;audio/x-musepack;audio/x-pn-aiff;audio/x-pn-au;audio/x-pn-wav;audio/x-pn-windows-acm;audio/x-realaudio;audio/x-real-audio;audio/x-sbc;audio/x-speex;audio/x-tta;audio/x-wav;audio/x-wavpack;audio/x-vorbis;audio/x-vorbis+ogg;audio/x-xm;application/x-flac;

然后再次nautilus -q在终端运行。

答案2

打开文件管理器,进入编辑 -> 首选项 -> 预览。根据需要更改首选项。然后关闭文件管理器并打开终端。运行以下命令安装必要的软件包。

sudo apt-get install ffmpeg ffmpegthumbnailer gstreamer0.10-ffmpeg

然后删除旧缩略图

rm ~/.thumbnails/fail/gnome-thumbnail-factory/*
rm ~/.thumbnails/normal/*

打开文件管理器并欣赏您的新缩略图!

相关内容