Page 4 of 13 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 121

Thread: Howto: Movie covers as video thumbnails (hack) (it works for books too)

  1. #31
    Join Date
    Oct 2006
    Location
    Argentina
    Beans
    584
    Distro
    Ubuntu

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    That is a bug but you must type some arguments. Try this:
    Code:
    imdb-thumbnailer --help

  2. #32
    QwUo173Hy is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Feb 2006
    Location
    Ireland
    Beans
    867
    Distro
    Ubuntu

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    Oh, ok Yuzem. I thought it would work automatically like Avatar Factory did. I'll try that

    Thanks for your work!

  3. #33
    Join Date
    Jul 2006
    Beans
    50

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    The --unset-nautilus option doesn't remove it.

    1: It appears the test "[[ $1 = "-r" ]] && ..." is failing, so $thumbnailer isn't changed.
    2: Even if that worked, the call to gconftool ignores $thumbnailer.

  4. #34
    Join Date
    Oct 2006
    Location
    Argentina
    Beans
    584
    Distro
    Ubuntu

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    What a strange thing...
    Could it be a bug in bash? Are you using Intrepid? I'm using hardy and I think it is working correctly here.

    Can you test this:
    Code:
    test=-r
    [[ $test = "-r" ]] && echo yes
    Does it say yes?

    Maybe replacing line 221 with:
    Code:
    		[[ $1 ]] && thumbnailer='/usr/bin/gnome-video-thumbnailer -s %s %u %o'
    Thanks for reporting.

  5. #35
    Join Date
    Jun 2006
    Beans
    76

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    2 question:

    this work on ArchLinux?
    if yes, in what format should be the film name?

    I've tried with "the truman show (1998).avi" but nothing...

  6. #36
    Join Date
    Oct 2006
    Location
    Argentina
    Beans
    584
    Distro
    Ubuntu

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    It works on nautilus and thunar (gnome or xfce).
    I think that it should work also in kde but I don't know how to set the thumbnailer.

    It uses google to search, the first result is taken. From your example:

    site:imdb.com/title the truman show (1998)


    In that case it should work also without the year, it is very flexible.
    Maybe you haven't set the thumbnailer. Read the instructions:
    Code:
    imdb-thumbnailer --help
    If you are using nautilus, nautilus does not update the thumbnail when the file is renamed, you have to update it manually:
    Code:
    imdb-thumbnailer -u video1.avi video2.avi etc...
    Last edited by Yuzem; February 1st, 2009 at 05:34 PM.

  7. #37
    Join Date
    Jun 2006
    Beans
    76

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    mmm this is not the right cover...
    Attached Images Attached Images

  8. #38
    Join Date
    Oct 2006
    Location
    Argentina
    Beans
    584
    Distro
    Ubuntu

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    That is very strange, I just created a text file named "The Truman Show (1998).avi" and I get the right cover.

    Are you using thunar or nautilus?

    Try this at the command line:
    (Replace /films/path and be sure that those files don't exist or they will be overwrite)
    Code:
    > "/films/path/The  Truman Show (1998) 1.avi"
    and/or:
    Code:
    > "/films/path/The  Truman Show.avi"
    Do they get the right cover?

  9. #39
    Join Date
    Jun 2006
    Beans
    76

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    what kind of command is this?

  10. #40
    Join Date
    Oct 2006
    Location
    Argentina
    Beans
    584
    Distro
    Ubuntu

    Re: Howto: Movie covers as video thumbnails (hack) (it works for books too)

    It creates those files, you can use "touch" instead:

    Code:
    touch "/films/path/The  Truman Show.avi"
    "touch" is better since it doesn't overwrite any file.

    ">" is used normally like this:

    Code:
    echo "testing" > ~/Desktop/test
    It creates a file named test in your desktop containing the text: "testing"

Page 4 of 13 FirstFirst ... 23456 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •