• 𝒍𝒆𝒎𝒂𝒏𝒏
    link
    fedilink
    105 months ago

    Roughly how big are these files, and are they stored locally on your machine or mounted over the network (using FUSE, GVFS, or a kernel-based one like NFS?)

    I’ve noticed a few linux file managers are quite cautious loading multimedia thumbnails for networked filesystems mounted with GVFS, not sure of a fix for that aside from looking for a command line utility to mount using FUSE instead

    • Kickass WomenOP
      link
      45 months ago

      These files are anywhere between 600 MB to 1.5 GB in size and thet are stored locally on my PC.

      • Yer Ma
        link
        fedilink
        105 months ago

        Make sure you have all the free and non-free video codecs installed

          • @[email protected]
            link
            fedilink
            English
            15 months ago

            Which one are your files encoded with?

            (You can check this by running ffprobe on the file.)

            • Kickass WomenOP
              link
              15 months ago

              Shoot can’t install it because it’s probably in a repository that is not listed in my sources

              • @[email protected]
                link
                fedilink
                English
                2
                edit-2
                5 months ago

                ffprobe is included in the ffmpeg package. For future reference you can find what package contains a file by doing dpkg-query -S /bin/ffprobe (note that the path you give it is relative to /usr)

                • @superbirra
                  link
                  45 months ago

                  lol, no :)

                  first of all, it only searches for occurrences in already installed packages and is more or less a grep -l xxx /var/lib/dpkg/info/*.list. So you can’t use it in order to determine which package to install, for that you use https://packages.debian.org or apt-file instead.

                  Secondly, what you search for isn’t relative to anything (wtf):

                  $ dpkg-query -S /etc/grub.d/                                  
                  fwupd, grub-common: /etc/grub.d
                  
                • Kickass WomenOP
                  link
                  3
                  edit-2
                  5 months ago

                  Got the command to work. Here’s the info for one of the files for which a preview thumbnail/icon isn’t available:

                  • @[email protected]
                    link
                    fedilink
                    English
                    2
                    edit-2
                    5 months ago

                    Looks like that video is encoded H.264, which according to Google is one of the codecs that Debian only makes available via third party repository.

                    Here are instructions from debian.org for installing the codec by manually downloading and installing a single package file:

                    https://wiki.debian.org/MultimediaCodecs

                    And here are instructions from a third party explaining how to tell apt how to install them so they can be kept up to date (be sure you read the warning on the debian.org page about why they don’t tell you to do that before you do it):

                    https://www.debiantutorials.com/how-to-install-ffmpeg-with-h-264mpeg-4-avc/

                    Depending on how exactly your file manager works, installing the codec may or may not be sufficient to display thumbnails. If not, there are probably instructions specific to your file manager for installing the appropriate plugin.