Gracias. Bueno tengo el siguiente problema.
siguiendo la documentación, hice el siguiente script:
- Código: Seleccionar todo
#!/usr/bin/perl
use warnings;
use strict;
use Gtk2 -init;
use Gtk2::Ex::MPlayerEmbed;
my $window = Gtk2::Window->new('toplevel');
my $embed = Gtk2::Ex::MPlayerEmbed->new;
$window->maximize;
$window->add($embed);
$embed->play('/home/bashman/toy.mpg');
$window->show_all;
Gtk2->main;
Todo funciona bien, pero no veo el video, la window, se pone de color negro.
Existirá alguna forma de tratar el widget "MPlayerEmbed" desde el glade o algo así?. Es decir como crear un nuevo widget?.
El mplayer está bién instalado.