After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 638567 - Totem shows 'videoplayback' instead of the video title
Totem shows 'videoplayback' instead of the video title
Status: RESOLVED FIXED
Product: totem
Classification: Core
Component: YouTube plugin
2.32.x
Other Linux
: Normal normal
: ---
Assigned To: General Totem maintainer(s)
General Totem maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2011-01-03 12:32 UTC by Omer Akram
Modified: 2011-01-29 13:59 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Omer Akram 2011-01-03 12:32:33 UTC
after playing a youtube video in totem. if you go to 'Movie' and see the recently played videos, the title for all youtube videos is 'videoplayback' which makes it quite hard to replay a video.

originally reported at: https://bugs.launchpad.net/ubuntu/+source/totem/+bug/647607
Comment 1 Philip Withnall 2011-01-03 13:47:25 UTC
This should just be a simple matter of using gtk_recent_manager_add_full() instead of gtk_recent_manager_add_item() in totem-object.c, and passing the playlist entry's display name in the GtkRecentData. However, this would affect all videos played by Totem, so now even local videos would appear in the recent menu by their title rather than their filename. Bastien, would we want this?
Comment 2 Bastien Nocera 2011-01-27 16:57:26 UTC
(In reply to comment #1)
> This should just be a simple matter of using gtk_recent_manager_add_full()
> instead of gtk_recent_manager_add_item() in totem-object.c, and passing the
> playlist entry's display name in the GtkRecentData. However, this would affect
> all videos played by Totem, so now even local videos would appear in the recent
> menu by their title rather than their filename. Bastien, would we want this?

Would be happy with that, yes.
Comment 3 Philip Withnall 2011-01-29 13:59:10 UTC
commit 3bbc968ce21b0af0f586169cec87e60493d4af7c
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Sat Jan 29 13:57:54 2011 +0000

    Bug 638567 — Totem shows 'videoplayback' instead of the video title
    
    Fix totem_object_add_to_playlist_and_play() to use totem_action_add_recent(
    so that adding recent items is handled uniformly. This ensures that YouTube
    videos never appear in the Movie menu's recently used items list, as they'r
    now correctly recognised as streams. It also ensures that they're stored in
    the recently used files list with the correct display name.
    
    Closes: bgo#638567

 src/totem-object.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)