mplayerplug-in-devel Mailing List for mplayerplug-in for mozilla (Page 5)
Brought to you by:
kdekorte
You can subscribe to this list here.
2003 |
Jan
(72) |
Feb
(110) |
Mar
(74) |
Apr
(34) |
May
(60) |
Jun
(37) |
Jul
(25) |
Aug
(22) |
Sep
(49) |
Oct
(72) |
Nov
(42) |
Dec
(26) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(108) |
Feb
(184) |
Mar
(361) |
Apr
(154) |
May
(59) |
Jun
(62) |
Jul
(32) |
Aug
(51) |
Sep
(54) |
Oct
(57) |
Nov
(51) |
Dec
(54) |
2005 |
Jan
(86) |
Feb
(28) |
Mar
(15) |
Apr
(22) |
May
(30) |
Jun
(65) |
Jul
(113) |
Aug
(92) |
Sep
(32) |
Oct
(138) |
Nov
(55) |
Dec
(62) |
2006 |
Jan
(104) |
Feb
(73) |
Mar
(71) |
Apr
(155) |
May
(64) |
Jun
(81) |
Jul
(42) |
Aug
(56) |
Sep
(61) |
Oct
(47) |
Nov
(69) |
Dec
(72) |
2007 |
Jan
(90) |
Feb
(65) |
Mar
(77) |
Apr
(40) |
May
(42) |
Jun
(4) |
Jul
(32) |
Aug
(51) |
Sep
(31) |
Oct
(45) |
Nov
(54) |
Dec
(37) |
2008 |
Jan
(12) |
Feb
(15) |
Mar
(14) |
Apr
(8) |
May
(18) |
Jun
(23) |
Jul
(14) |
Aug
(8) |
Sep
(7) |
Oct
(11) |
Nov
(16) |
Dec
(26) |
2009 |
Jan
(12) |
Feb
(2) |
Mar
|
Apr
(2) |
May
(17) |
Jun
|
Jul
|
Aug
(1) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
(1) |
2010 |
Jan
(16) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2011 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(1) |
Mar
|
Apr
(7) |
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kevin D. <kde...@gm...> - 2008-12-10 17:26:26
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > On Tue, 09 Dec 2008 15:06:53 -0700 > Kevin DeKorte <kde...@gm...> wrote: > >> Is the file nsISupports.idl in the /usr/local/share/idl/mozilla-1.7.7 >> directory? That file location was probably obtained from a .pc file from >> the mozilla install. So you will need to find that file and then post >> the entire output of configure. >> >> This type of problem is almost always related to bad .pc files. > > Ok, you're right. I had a bunch of old .pc files from previous > installations, including a mozilla install I don't use anymore. It was > my fault ;) I just removed them now. > > But, I noticed that Firefox 2 used to install those .pc files > and Firefox 3 don't do that anymore. So, I don't have any .pc > firefox files. > > The solution was to use: > > GECKO_LIBS="-L/usr/local/gecko-sdk/lib" GECKO_CFLAGS="-I/usr/local/gecko-sdk/include" ./configure > > It finds Gecko correctly, but generates this: > > /usr/local/bin/xpidl -w -m header -I -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl > > ** (process:31644): WARNING **: Parse of . failed: Is a directory > > Is there a way I can give it by hand what it wants? > > I have the following directory structure: > > fraga@tux ~/src$ ls /usr/local/gecko-sdk/ > bin@ idl@ include@ lib@ sdk/ xpcom-config.h > > Thanks again! ;) > I just made some patches to the gecko-mediaplayer configure script that should make the --with-xulrunner-sdk compile work better. I got it working here and it tested out ok and I committed those patches to SVN. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk/+7oACgkQ6w2kMH0L1dHckQCfUU6Sx+HWzouyzPuU4yvdwhjC 1WMAn0tGm1VwGfuSOyjeIqGhUuj9Ah7Q =iDyd -----END PGP SIGNATURE----- |
From: Kevin D. <kde...@gm...> - 2008-12-10 17:12:25
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > On Tue, 09 Dec 2008 20:44:19 -0700 > Kevin DeKorte <kde...@gm...> wrote: > >> You need a GECKO_IDLDIR setting like the GECKO_LIBS and it should point >> to the directory that contains nsISupports.idl > > Ok, I tried: > > GECKO_IDLDIR="/usr/local/gecko-sdk/idl" > GECKO_LIBS="-L/usr/local/gecko-sdk/lib" > GECKO_CFLAGS="-I/usr/local/gecko-sdk/include" ./configure > > but it return the same message: > > /usr/local/bin/xpidl -w -m header -I -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl > > ** (process:2210): WARNING **: Parse of . failed: Is a directory > >> You also might need to set GECKO_HOME that points to the directory that >> contains xpidl. > > xpidl is found correctly without help ;). > >> This would be much easier if you just installed libxul > > Yes, but since Firefox has all those headers and idl files, I > prefer to use those provided by Firefox. > > The only thing now is the GECKO_IDLDIR. It seems that it isn't being used. > > Interesting thing: if I do not use GECKO_CFLAGS it uses GECKO_IDLDIR correctly but can't find gecko. > If I use GECKO_CFLAGS, it finds gecko, but doesn't use GECKO_IDLDIR. The behaviour seems to be mutual exclusive... > That is because you don't have GECKO_HOME set Try this... and if you have trouble, please post the entire output... and don't set any of the GECKO_* flags. ./configure --with-xulrunner-sdk=/usr/local/gecko-sdk Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk/+HIACgkQ6w2kMH0L1dH/aQCfWHgCPHoEzSgE08juGu/7rVfs zAwAnj9yNu9MqvxUG7MNKVaBxuVboIRY =ThnC -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-10 16:50:59
|
On Tue, 09 Dec 2008 20:44:19 -0700 Kevin DeKorte <kde...@gm...> wrote: > You need a GECKO_IDLDIR setting like the GECKO_LIBS and it should point > to the directory that contains nsISupports.idl Ok, I tried: GECKO_IDLDIR="/usr/local/gecko-sdk/idl" GECKO_LIBS="-L/usr/local/gecko-sdk/lib" GECKO_CFLAGS="-I/usr/local/gecko-sdk/include" ./configure but it return the same message: /usr/local/bin/xpidl -w -m header -I -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl ** (process:2210): WARNING **: Parse of . failed: Is a directory > You also might need to set GECKO_HOME that points to the directory that > contains xpidl. xpidl is found correctly without help ;). > This would be much easier if you just installed libxul Yes, but since Firefox has all those headers and idl files, I prefer to use those provided by Firefox. The only thing now is the GECKO_IDLDIR. It seems that it isn't being used. Interesting thing: if I do not use GECKO_CFLAGS it uses GECKO_IDLDIR correctly but can't find gecko. If I use GECKO_CFLAGS, it finds gecko, but doesn't use GECKO_IDLDIR. The behaviour seems to be mutual exclusive... -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-10 03:44:34
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > On Tue, 09 Dec 2008 15:06:53 -0700 > Kevin DeKorte <kde...@gm...> wrote: > >> Is the file nsISupports.idl in the /usr/local/share/idl/mozilla-1.7.7 >> directory? That file location was probably obtained from a .pc file from >> the mozilla install. So you will need to find that file and then post >> the entire output of configure. >> >> This type of problem is almost always related to bad .pc files. > > Ok, you're right. I had a bunch of old .pc files from previous > installations, including a mozilla install I don't use anymore. It was > my fault ;) I just removed them now. > > But, I noticed that Firefox 2 used to install those .pc files > and Firefox 3 don't do that anymore. So, I don't have any .pc > firefox files. > > The solution was to use: > > GECKO_LIBS="-L/usr/local/gecko-sdk/lib" GECKO_CFLAGS="-I/usr/local/gecko-sdk/include" ./configure > > It finds Gecko correctly, but generates this: > > /usr/local/bin/xpidl -w -m header -I -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl You need a GECKO_IDLDIR setting like the GECKO_LIBS and it should point to the directory that contains nsISupports.idl You also might need to set GECKO_HOME that points to the directory that contains xpidl. This would be much easier if you just installed libxul Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk/OxMACgkQ6w2kMH0L1dEaoQCgh07ICjG9bpG4axTMmS1Zk/WZ vaoAnA0QE2JR4VodXJ19tRjtuk7wJ2On =NAkF -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-10 01:54:07
|
On Tue, 09 Dec 2008 15:06:53 -0700 Kevin DeKorte <kde...@gm...> wrote: > Is the file nsISupports.idl in the /usr/local/share/idl/mozilla-1.7.7 > directory? That file location was probably obtained from a .pc file from > the mozilla install. So you will need to find that file and then post > the entire output of configure. > > This type of problem is almost always related to bad .pc files. Ok, you're right. I had a bunch of old .pc files from previous installations, including a mozilla install I don't use anymore. It was my fault ;) I just removed them now. But, I noticed that Firefox 2 used to install those .pc files and Firefox 3 don't do that anymore. So, I don't have any .pc firefox files. The solution was to use: GECKO_LIBS="-L/usr/local/gecko-sdk/lib" GECKO_CFLAGS="-I/usr/local/gecko-sdk/include" ./configure It finds Gecko correctly, but generates this: /usr/local/bin/xpidl -w -m header -I -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl ** (process:31644): WARNING **: Parse of . failed: Is a directory Is there a way I can give it by hand what it wants? I have the following directory structure: fraga@tux ~/src$ ls /usr/local/gecko-sdk/ bin@ idl@ include@ lib@ sdk/ xpcom-config.h Thanks again! ;) -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-09 22:07:01
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > > I tried to configure it and had this problem: > > /usr/local/bin/xpidl -w -m header -I /usr/local/share/idl/mozilla-1.7.7 -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl > ./src/nsIScriptableGeckoMediaPlayer.idl:2: can't open included file nsISupports.idl for reading Is the file nsISupports.idl in the /usr/local/share/idl/mozilla-1.7.7 directory? That file location was probably obtained from a .pc file from the mozilla install. So you will need to find that file and then post the entire output of configure. This type of problem is almost always related to bad .pc files. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk+6/0ACgkQ6w2kMH0L1dG9CQCfSczsl5ESgRP/BfoD41TpiRWT QhYAnRlrXhf9jdvD4POXp+2cRemfXXY8 =JAxC -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-09 21:52:44
|
On Tue, 09 Dec 2008 10:05:20 -0700 Kevin DeKorte <kde...@gm...> wrote: > Ok, well that is why you are not using a package. Have you thought about > using the newer version of mplayerplug-in? There is gecko-mediaplayer > that I have written to replace mplayerplug-in. It requires that you have > gnome-mplayer (which has no gnome dependencies, just follows the HIG for > the most part) and dbus active. It should be more stable than > mplayerplug-in. > > You can read about them here: > > http://kdekorte.googlepages.com/ It's a pleasure to test new and better software ;) In fact, before posting to this mailing-list, I saw gecko-mediaplayer, but I didn't know that it was written by you too ;). Very good to know. I tried to configure it and had this problem: /usr/local/bin/xpidl -w -m header -I /usr/local/share/idl/mozilla-1.7.7 -I . -e src/nsIScriptableGeckoMediaPlayer.h src/nsIScriptableGeckoMediaPlayer.idl ./src/nsIScriptableGeckoMediaPlayer.idl:2: can't open included file nsISupports.idl for reading input callback returned failure Maybe because of the /usr/local/share/idl/mozilla-1.7.7 path, right? I tried to play with the environment variables provided by configure, but I couldn't sort how to do it. Thank you! -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-09 17:05:29
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > Perfect! CVS is fine. Thanks! > Good to hear... >> Also, any reason why you are not using a package? Also, I notices you >> are enabling the gmp option. There is really no need for that option >> anymore. > > I use Linux from scratch and I like to compile everything by > myself. ;) Ok, well that is why you are not using a package. Have you thought about using the newer version of mplayerplug-in? There is gecko-mediaplayer that I have written to replace mplayerplug-in. It requires that you have gnome-mplayer (which has no gnome dependencies, just follows the HIG for the most part) and dbus active. It should be more stable than mplayerplug-in. You can read about them here: http://kdekorte.googlepages.com/ Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk+pVAACgkQ6w2kMH0L1dEE0gCeMtxoxc92DAAWikdM26CFSBZF ESoAn1PL7P8q6ymm5Bi9pfXGxRrdD1cu =JtM+ -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-09 16:49:56
|
On Tue, 09 Dec 2008 07:02:08 -0700 Kevin DeKorte <kde...@gm...> wrote: Hi Kevin! > Hum.... that should look like this... > > /usr/lib64/xulrunner-1.9/xpidl -w -m header -I > /usr/share/idl/xulrunner-sdk-1.9/stable -I Source -e > Source/nsIScriptableMplayerPlugin.h Source/nsIScriptableMplayerPlugin.idl > > That is because the variable GECKO_IDLDIR is not set. I made a fix to > CVS that should work around this problem. Perfect! CVS is fine. Thanks! > Also, any reason why you are not using a package? Also, I notices you > are enabling the gmp option. There is really no need for that option > anymore. I use Linux from scratch and I like to compile everything by myself. ;) Ok, thanks for the advice regarding gmp... I left it for a long time activated. Now I won't use it anymore (do you plan to remove this option from configure?). Anyway, sometimes Firefox crashes after seeing some sites like vreel, etc... But I'm afraid it is a X or firefox issue, something related to windows management... not mplayerplug-in. I tried to ruin firefox -g -d gdb but I got no backtrace: (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e7 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e2 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e1 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e0 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e3 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090df unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e4 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x1208609 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x12090e6 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x1208607 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x1208606 unexpectedly destroyed (firefox-bin:15467): Gdk-WARNING **: GdkWindow 0x1208603 unexpectedly destroyed (firefox-bin:15467): GLib-GObject-WARNING **: invalid uninstantiatable type `<invalid>' in cast to `GtkWidget' (firefox-bin:15467): Gtk-CRITICAL **: gtk_widget_show: assertion `GTK_IS_WIDGET (widget)' failed (firefox-bin:15467): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWidget' (firefox-bin:15467): Gtk-CRITICAL **: gtk_widget_show: assertion `GTK_IS_WIDGET (widget)' failed (firefox-bin:15467): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWidget' (firefox-bin:15467): Gtk-CRITICAL **: gtk_widget_show: assertion `GTK_IS_WIDGET (widget)' failed (firefox-bin:15467): GLib-GObject-WARNING **: invalid uninstantiatable type `(null)' in cast to `GtkWidget' (firefox-bin:15467): Gtk-CRITICAL **: gtk_widget_show: assertion `GTK_IS_WIDGET (widget)' failed The program 'firefox-bin' received an X Window System error. This probably reflects a bug in the program. The error was 'BadWindow (invalid Window parameter)'. (Details: serial 612603 error_code 3 request_code 10 minor_code 0) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) *** I'll try to contact Firefox developers to see what's happening. Thank you! -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-09 14:02:18
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > On Mon, 08 Dec 2008 13:31:58 -0700 > Kevin DeKorte <kde...@gm...> wrote: > >> Hum... that is new... >> >> just do... touch install.sh >> >> And then it should work. > > Ok. It worked, but I got this one at the end of configure: > > /usr/local/bin/xpidl -w -m header -I -I Source -e Source/nsIScriptableMplayerPlugin.h Source/nsIScriptableMplayerPlugin.idl > > ** (process:6197): WARNING **: Parse of Source failed: Is a directory > Hum.... that should look like this... /usr/lib64/xulrunner-1.9/xpidl -w -m header -I /usr/share/idl/xulrunner-sdk-1.9/stable -I Source -e Source/nsIScriptableMplayerPlugin.h Source/nsIScriptableMplayerPlugin.idl That is because the variable GECKO_IDLDIR is not set. I made a fix to CVS that should work around this problem. Also, any reason why you are not using a package? Also, I notices you are enabling the gmp option. There is really no need for that option anymore. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk+emAACgkQ6w2kMH0L1dHbewCeOVjgNOYbF5ELTD9MEgCNH3+z 3nMAoItbmwnBmIkUh6kACF32091HKY8N =CchH -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-09 13:44:35
|
On Mon, 08 Dec 2008 13:31:58 -0700 Kevin DeKorte <kde...@gm...> wrote: > Hum... that is new... > > just do... touch install.sh > > And then it should work. Ok. It worked, but I got this one at the end of configure: /usr/local/bin/xpidl -w -m header -I -I Source -e Source/nsIScriptableMplayerPlugin.h Source/nsIScriptableMplayerPlugin.idl ** (process:6197): WARNING **: Parse of Source failed: Is a directory -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-08 20:32:07
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > On Mon, 08 Dec 2008 10:31:54 -0700 > Kevin DeKorte <kde...@gm...> wrote: > >> When I see this, I find that a make distclean is usually required to fix it. > > Hi Kevin. > > I tried make distclean, but then I got: > > fraga@tux ~/src/mplayerplug-in-3.55$ ./configure --with-gecko-sdk=/usr/local/gecko-sdk/ --enable-gmp > checking for g++... g++ > checking for C++ compiler default output file name... a.out > checking whether the C++ compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C++ compiler... yes > checking whether g++ accepts -g... yes > checking for gcc... gcc > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ISO C89... none needed > configure: error: cannot find install-sh or install.sh in "." "./.." > "./../.." > Hum... that is new... just do... touch install.sh And then it should work. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk9hD0ACgkQ6w2kMH0L1dFSVQCfR6lhHR2oOIbzIhMJ1XELkToN OfUAoIhRemDtvjGiIfkain8Ej18apXvU =na9N -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-08 20:27:00
|
On Mon, 08 Dec 2008 10:31:54 -0700 Kevin DeKorte <kde...@gm...> wrote: > When I see this, I find that a make distclean is usually required to fix it. Hi Kevin. I tried make distclean, but then I got: fraga@tux ~/src/mplayerplug-in-3.55$ ./configure --with-gecko-sdk=/usr/local/gecko-sdk/ --enable-gmp checking for g++... g++ checking for C++ compiler default output file name... a.out checking whether the C++ compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking for gcc... gcc checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed configure: error: cannot find install-sh or install.sh in "." "./.." "./../.." -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-08 17:32:02
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dâniel Fraga wrote: > Any hints? > -DGTK_ENABLED Source/plugin.cpp In file included from > Source/nsScriptablePeer.h:48, from Source/plugin.h:54, from > Source/plugin.cpp:37: Source/nsIScriptableMplayerPlugin.h:28:60: error: > macro "NS_DEFINE_STATIC_IID_ACCESSOR" requires 2 arguments, but only 1 > given Source/nsIScriptableMplayerPlugin.h:123:64: error: macro > "NS_DEFINE_STATIC_IID_ACCESSOR" requires 2 arguments, but only 1 given When I see this, I find that a make distclean is usually required to fix it. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk9WgoACgkQ6w2kMH0L1dF7+QCgh0s97yZqBZRuw6WHrrKGvcGU nZoAoJOzWl1AVoznbLqXGTqFyApoVS/3 =sAYg -----END PGP SIGNATURE----- |
From: Dâniel F. <fr...@gm...> - 2008-12-08 16:10:24
|
Any hints? g++ -c -o plugin.o -Wall -DXP_UNIX -DMOZ_X11 -I/usr/local/gecko-sdk/ -I/usr/local/gecko-sdk//include -I/usr/local/gecko-sdk//include/plugin -I/usr/local/gecko-sdk//include/xpcom -I/usr/local/gecko-sdk//include/nspr -I/usr/local/gecko-sdk//include/string -I/usr/local/gecko-sdk//include/java -O3 -march=native -pipe -I/usr/X11/include -I/usr/X11/include -O3 -march=native -pipe -Iinclude -fPIC -DXPCOM_GLUE -DMOZILLA_STRICT_API -I/usr/X11R6/include -I/usr/X11/include -I/usr/local/include/gtk-2.0 -I/usr/local/lib/gtk-2.0/include -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pango-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/libpng12 -I/usr/X11R6/include -I/usr/X11/include -I/usr/local/include/gtk-2.0 -I/usr/local/lib/gtk-2.0/include -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pango-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/local/include/pixman-1 -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/libpng12 -pthread -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DGTK_ENABLED Source/plugin.cpp In file included from Source/nsScriptablePeer.h:48, from Source/plugin.h:54, from Source/plugin.cpp:37: Source/nsIScriptableMplayerPlugin.h:28:60: error: macro "NS_DEFINE_STATIC_IID_ACCESSOR" requires 2 arguments, but only 1 given Source/nsIScriptableMplayerPlugin.h:123:64: error: macro "NS_DEFINE_STATIC_IID_ACCESSOR" requires 2 arguments, but only 1 given In file included from Source/nsScriptablePeer.h:48, from Source/plugin.h:54, from Source/plugin.cpp:37: Source/nsIScriptableMplayerPlugin.h:28: error: ISO C++ forbids declaration of 'NS_DEFINE_STATIC_IID_ACCESSOR' with no type Source/nsIScriptableMplayerPlugin.h:31: error: expected ';' before 'virtual' Source/nsIScriptableMplayerPlugin.h:123: error: ISO C++ forbids declaration of 'NS_DEFINE_STATIC_IID_ACCESSOR' with no type Source/nsIScriptableMplayerPlugin.h:126: error: expected ';' before 'virtual' Source/plugin.cpp: In member function 'void nsPluginInstance::shutdown()': Source/plugin.cpp:437: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:440: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Play()': Source/plugin.cpp:2241: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Pause()': Source/plugin.cpp:2271: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Stop()': Source/plugin.cpp:2291: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2293: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2303: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Quit()': Source/plugin.cpp:2321: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2322: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::FastForward()': Source/plugin.cpp:2348: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2349: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2351: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::FastReverse()': Source/plugin.cpp:2375: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2376: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2378: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Seek(double)': Source/plugin.cpp:2391: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2395: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::VolumeUp()': Source/plugin.cpp:2409: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::VolumeDown()': Source/plugin.cpp:2423: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::SetShowlogo(PRBool)': Source/plugin.cpp:3151: warning: suggest explicit braces to avoid ambiguous 'else' make: *** [plugin.o] Error 1 -- Linux 2.6.28-rc6: Killer Bat of Doom http://u-br.net |
From: Kevin D. <kde...@gm...> - 2008-12-08 13:30:01
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 honghui wang wrote: > hello everybody, I had a problem to complie mplayer -plugin from > source code , my system is ubuntu version 8, and I'm using xulrunner > 1.9.0.4 <http://1.9.0.4>, firefox 3.0.4. <http://3.0.4.> > used below command to configure > ./configure --with-gecko-sdk=/home/honghui/xpcomdir/xulrunner-sdk/sdk > output: Any reason why you are not using the one that is packaged in Ubuntu it it is known as mozilla-mplayer I believe. Also, you might need to run 'make distclean' and then rerun configure. the X11/Intrinsic.h issus are caused by missing X11 development packages. I would recommend that you install the libxul-dev package rather than using the xulrunner sdk, as the packages have be tested. And you can run mplayerplug-in compiled for libxul 1.8 on libxul 1.9 with no issues. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkk9IVIACgkQ6w2kMH0L1dFpCQCdGgfEVTExCrE5hbSZHrhI3+1U 0ggAn0+SEvaLWpY+XRCU4joqrQZjrijL =7INJ -----END PGP SIGNATURE----- |
From: honghui w. <hon...@gm...> - 2008-12-08 08:44:37
|
hello everybody, I had a problem to complie mplayer -plugin from source code , my system is ubuntu version 8, and I'm using xulrunner 1.9.0.4, firefox 3.0.4. used below command to configure ./configure --with-gecko-sdk=/home/honghui/xpcomdir/xulrunner-sdk/sdk output: checking for g++... g++ checking for C++ compiler default output file name... a.out checking whether the C++ compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking for gcc... gcc checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for a BSD-compatible install... /usr/bin/install -c checking for gawk... gawk checking whether make sets $(MAKE)... yes Using new (v1.7+) gecko-sdk checking for pkg-config... /usr/bin/pkg-config checking for gtk+-2.0... yes checking GTK_CFLAGS... -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 checking GTK_LIBS... -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 checking for gtk+-2.0 >= 2.4.0... yes checking GTK24_CFLAGS... -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 checking GTK24_LIBS... -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 checking for gthread-2.0... yes checking GTHREAD_CFLAGS... -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include checking GTHREAD_LIBS... -pthread -lgthread-2.0 -lrt -lglib-2.0 checking how to run the C preprocessor... gcc -E checking for x11... yes checking X_CFLAGS... checking X_LIBS... -lX11 checking for xt... checking whether -R must be followed by a space... neither works checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for xpm... yes checking XPM_CFLAGS... checking XPM_LIBS... -lXpm -lX11 checking for ANSI C header files... (cached) yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/stat.h... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking for an ANSI C-conforming const... yes checking whether time.h and sys/time.h may both be included... yes checking for pid_t... yes checking for size_t... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking for memset... yes checking for strcasecmp... yes checking for strchr... yes checking for strdup... yes checking for strncasecmp... yes checking for strstr... yes checking for strrchr... yes checking for snprintf... yes checking for mkfifo... yes checking for dup2... yes checking for gettimeofday... yes checking for strerror... yes checking for strtol... yes checking for mkdir... yes checking for setlocale... yes checking for memmem... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking return type of signal handlers... void checking for DPMSQueryExtension in -lXdpms... no checking for X11/extensions/dpms.h... yes configure: creating ./config.status config.status: creating Makefile config.status: WARNING: Makefile.in seems to ignore the --datarootdir setting config.status: creating po/Makefile config.status: WARNING: po/Makefile.in seems to ignore the --datarootdir setting config.status: creating install.sh config.status: WARNING: install.sh.in seems to ignore the --datarootdir setting config.status: creating uninstall.sh config.status: creating config.h config.status: config.h is unchanged and then make: g++ -c -o plugin.o -Wall -DXP_UNIX -DMOZ_X11 -I/home/honghui/xpcomdir/xulrunner-sdk/sdk -I/home/honghui/xpcomdir/xulrunner-sdk/sdk/include -g -O2 -INONE -g -O2 -Iinclude -fPIC -DXPCOM_GLUE -DMOZILLA_STRICT_API -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DGTK_ENABLED Source/plugin.cpp In file included from Source/nsScriptablePeer.h:48, from Source/plugin.h:54, from Source/plugin.cpp:37: Source/nsIScriptableMplayerPlugin.h:28:60: error: macro "NS_DEFINE_STATIC_IID_ACCESSOR" requires 2 arguments, but only 1 given Source/nsIScriptableMplayerPlugin.h:123:64: error: macro "NS_DEFINE_STATIC_IID_ACCESSOR" requires 2 arguments, but only 1 given In file included from Source/plugin.h:55, from Source/plugin.cpp:37: Source/plugin-setup.h:4:27: error: X11/Intrinsic.h: No such file or directory Source/plugin-setup.h:5:28: error: X11/StringDefs.h: No such file or directory In file included from Source/nsScriptablePeer.h:48, from Source/plugin.h:54, from Source/plugin.cpp:37: Source/nsIScriptableMplayerPlugin.h:28: error: ISO C++ forbids declaration of 'NS_DEFINE_STATIC_IID_ACCESSOR' with no type Source/nsIScriptableMplayerPlugin.h:31: error: expected ';' before 'virtual' Source/nsIScriptableMplayerPlugin.h:123: error: ISO C++ forbids declaration of 'NS_DEFINE_STATIC_IID_ACCESSOR' with no type Source/nsIScriptableMplayerPlugin.h:126: error: expected ';' before 'virtual' In file included from Source/plugin.h:54, from Source/plugin.cpp:37: Source/nsScriptablePeer.h: In member function 'virtual nsresult nsClassInfoMixin::GetImplementationLanguage(PRUint32*)': Source/nsScriptablePeer.h:64: error: 'nsIProgrammingLanguage' has not been declared In file included from Source/plugin.h:55, from Source/plugin.cpp:37: Source/plugin-setup.h: At global scope: Source/plugin-setup.h:134: error: 'Widget' does not name a type Source/plugin-setup.h:205: error: variable or field 'DrawUI' declared void Source/plugin-setup.h:205: error: 'Widget' was not declared in this scope Source/plugin-setup.h:205: error: expected primary-expression before '*' token Source/plugin-setup.h:205: error: 'instance' was not declared in this scope Source/plugin-setup.h:205: error: expected primary-expression before 'char' Source/plugin-setup.h:206: error: expected primary-expression before 'int' Source/plugin-setup.h:206: error: expected primary-expression before 'int' Source/plugin-setup.h:208: warning: 'RedrawCB' initialized and declared 'extern' Source/plugin-setup.h:208: error: variable or field 'RedrawCB' declared void Source/plugin-setup.h:208: error: 'Widget' was not declared in this scope Source/plugin-setup.h:208: error: 'XtPointer' was not declared in this scope Source/plugin-setup.h:209: error: 'XtPointer' was not declared in this scope In file included from Source/plugin.cpp:37: Source/plugin.h:176: error: 'Widget' does not name a type Source/plugin.cpp: In function 'NPError NS_PluginInitialize()': Source/plugin.cpp:101: warning: dereferencing type-punned pointer will break strict-aliasing rules Source/plugin.cpp: In constructor 'nsPluginInstance::nsPluginInstance(NPP_t*)': Source/plugin.cpp:208: error: 'widget' was not declared in this scope Source/plugin.cpp: In member function 'void nsPluginInstance::shutdown()': Source/plugin.cpp:437: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:440: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Play()': Source/plugin.cpp:2241: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Pause()': Source/plugin.cpp:2271: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Stop()': Source/plugin.cpp:2291: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2293: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2303: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Quit()': Source/plugin.cpp:2321: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2322: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::FastForward()': Source/plugin.cpp:2348: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2349: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2351: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::FastReverse()': Source/plugin.cpp:2375: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2376: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2378: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::Seek(double)': Source/plugin.cpp:2391: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp:2395: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::VolumeUp()': Source/plugin.cpp:2409: warning: deprecated conversion from string constant to 'char*' Source/plugin.cpp: In member function 'void nsPluginInstance::VolumeDown()': Source/plugin.cpp:2423: warning: deprecated conversion from string constant to 'char*' make: *** [plugin.o] Error 1 That get wrong ,and whish is the right way to complie mplayer-plugin ? Thinks |
From: Kevin D. <kde...@gm...> - 2008-11-30 13:35:12
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Salvatore De Paolis wrote: > On Sat, 29 Nov 2008 20:18:49 -0700 > Kevin DeKorte <kde...@gm...> wrote: > >> After it completes playing the second RAI.TV splash page, mplayer just >> quits, so it appears to be using DRM or something else that mplayer >> cannot handle. >> >> Sorry. >> >> Kevin > Thanks for debugging it, i was afraid of similar problems could arise in this > website because is not the first time of software restrictions: before was even > uglier and one could not even access the media content apart from proprietary > software and only a public complaint fixed the issue. > Since this one is a public TV, the problem is still more annoying. > > Regards > Salvatore Salvatore, Mattfly says that gecko-mediaplayer works for him. I'm wondering if the actual content is limited to specific ip addresses like for only people in or around Italy. I'm in the US and this would not be the first time I have seen a site restrict content by location. I believe the BBC site does it as well. gecko-mediaplayer has an ASX parser which is something that mplayerplug-in does not have. So that might be a reason why it works better. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkkyloYACgkQ6w2kMH0L1dEsIQCfRtv7wov9979p6MKcy9XEn3WB 1joAn0JgFdVaJeuhzxemrPPApSvN6Zej =k7kX -----END PGP SIGNATURE----- |
From: Salvatore De P. <iw...@cl...> - 2008-11-30 09:34:09
|
On Sat, 29 Nov 2008 20:18:49 -0700 Kevin DeKorte <kde...@gm...> wrote: > After it completes playing the second RAI.TV splash page, mplayer just > quits, so it appears to be using DRM or something else that mplayer > cannot handle. > > Sorry. > > Kevin Thanks for debugging it, i was afraid of similar problems could arise in this website because is not the first time of software restrictions: before was even uglier and one could not even access the media content apart from proprietary software and only a public complaint fixed the issue. Since this one is a public TV, the problem is still more annoying. Regards Salvatore |
From: Kevin D. <kde...@gm...> - 2008-11-30 03:18:59
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Kevin DeKorte wrote: >> Sorry i forgot to leave a link: >> http://www.rai.tv/mplivetv/0,,LiveTv%5E16,00.html > Well I did take a look at this and appears something is wrong with the site... All mplayer gets is an ASX file that looks something like this <ASX version="3.0"> <TITLE>MEDIA.RAI.IT</TITLE> <ENTRYREF HREF="http://www.banneradmin.rai.it/html.ng/sezione_RAI=rtvstreaming&subsezione_RAI=rtvliverai1streaming"/> <ENTRY> <COPYRIGHT>RAI</COPYRIGHT> <REF HREF="http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=983"/> </ENTRY> </ASX> After it completes playing the second RAI.TV splash page, mplayer just quits, so it appears to be using DRM or something else that mplayer cannot handle. Sorry. Kevin - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkkyBhkACgkQ6w2kMH0L1dEgQACfTcDnD8EdHcQe9F61nP4wCMWR oakAn0JEjmdpESj6+POoMg1j7C9ujDsb =6lFv -----END PGP SIGNATURE----- |
From: Kevin D. <kde...@gm...> - 2008-11-30 02:57:11
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Salvatore De Paolis wrote: > On Sat, 29 Nov 2008 12:17:34 +0100 > Salvatore De Paolis <iw...@cl...> wrote: > >> hi all, i'm using mozilla-mplayer with some web content and actually it >> can't see the whole stream since the video seems to be separated in two parts: >> ads and the real video. mplayer plugin stops after the ads and won't show the >> following video. >> This doesn't happens with the vlc plugin that automatically >> move on the second part. is this configurable to work also with the mplayer >> plugin? >> >> Any hints are appreciated >> >> -- >> iwkse > > Sorry i forgot to leave a link: > http://www.rai.tv/mplivetv/0,,LiveTv%5E16,00.html > > Here you can test it. > > -- > iwkse Funny how you both had problems with the same site in a matter of hours. Anyway I did look at this site with gecko-mediaplayer (the replacement of mplayerplug-in) and the site seems to have a few issues. I have not had time to even start debugging it. It may very well be an issue with the way the site works and it might not be able to be fixed since it appears that multiple streams are getting played back in order. If I am able to fix it, the will probably only end up in gecko-mediaplayer as I have not been actively developing mplayerplug-in for about 18 months now. Kevin Project page for gecko-mediaplayer: http://kdekorte.googlepages.com/gecko-mediaplayer - -- Get my public GnuPG key from http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iEYEARECAAYFAkkyAP4ACgkQ6w2kMH0L1dHivgCfX8BVU0H/h1x604fD1kUbDLGn nrUAnjbt/s0A5Fn/1eFqWLQ2Eue/s2Jy =frtp -----END PGP SIGNATURE----- |
From: Salvatore De P. <iw...@cl...> - 2008-11-29 11:24:23
|
On Sat, 29 Nov 2008 12:17:34 +0100 Salvatore De Paolis <iw...@cl...> wrote: > hi all, i'm using mozilla-mplayer with some web content and actually it > can't see the whole stream since the video seems to be separated in two parts: > ads and the real video. mplayer plugin stops after the ads and won't show the > following video. > This doesn't happens with the vlc plugin that automatically > move on the second part. is this configurable to work also with the mplayer > plugin? > > Any hints are appreciated > > -- > iwkse Sorry i forgot to leave a link: http://www.rai.tv/mplivetv/0,,LiveTv%5E16,00.html Here you can test it. -- iwkse |
From: Salvatore De P. <iw...@cl...> - 2008-11-29 11:17:52
|
hi all, i'm using mozilla-mplayer with some web content and actually it can't see the whole stream since the video seems to be separated in two parts: ads and the real video. mplayer plugin stops after the ads and won't show the following video. This doesn't happens with the vlc plugin that automatically move on the second part. is this configurable to work also with the mplayer plugin? Any hints are appreciated -- iwkse |
From: Eric Joseph-A. <er...@sl...> - 2008-11-17 00:59:50
|
Le Sun, 16 Nov 2008 12:07:04 -0700 Kevin DeKorte <kde...@gm...> à écrit: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Eric Joseph-Alexandre wrote: > > Le Sun, 16 Nov 2008 06:48:47 -0700 > > Kevin DeKorte <kde...@gm...> à écrit: > > > > Hi, > > > > Thanx for your answer. > > Following your indication i switch my old gecko-sdk to 1.8. > > But xpidl still complain with the same previous error. > > Looking in the Makefile i saw that GECKO_IDLDIR wasn't set. > > I 've set GECKO_IDLDIR and GECKO_XPIDL accordingly to my conf and everything goes well. > > > > --- cut --- > > GECKO_XPIDL=/home/slitaz/build/gecko-sdk/bin/xpidl > > GECKO_IDLDIR=/home/slitaz/build/gecko-sdk/idl > > --- cut --- > > > > May be some thing is going wrong with configure ? > > > > Thanks a lot. > > > > +Eric. > > > Depending on your setup you should only use the gecko-sdk as a last > resort.. If you have proper development packages installed > Yes. I used the --with-gecko-sdk and --with-firefox-home options. But as you mentioned here my setup is not really complete. I juste have gecko-sdk, libIDL, but no *.pc files for pkgconfig. I'll try to package all build dependencies too. +Erjo. > ./configure > > should fine everything you need, if it does not that usually you are > missing firefox or xul development packages. > > Kevin > > > - -- > Get my public GnuPG key from > http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x7D0BD5D1 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.9 (GNU/Linux) > Comment: Using GnuPG with Remi - http://enigmail.mozdev.org > > iEYEARECAAYFAkkgb1gACgkQ6w2kMH0L1dHPmACdEuOhNArvV1rgfOi1Xi9Se0ey > foMAnArixoHqqqfKUj9BLClWoyFAqToQ > =wRNj > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Mplayerplug-in-devel mailing list > Mpl...@li... > https://lists.sourceforge.net/lists/listinfo/mplayerplug-in-devel |
From: Gustavo H. <gu...@an...> - 2008-11-16 21:59:23
|
On Sun, Nov 16, 2008 at 02:22:21PM -0700, Kevin DeKorte wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Gustavo Homem wrote: > > Hi, > > > > The Apple trailers website used to work with mplayer plugin. It then stopped > > working so I just compiled mplayerplug-in-3.55.tar.gz. > > > > However, although the plugin works ok on some other sites it fails on this > > one. The windows opens, flashes for a second and stays black. If an mplayer > > process is started it quickly dies before it can be detectead. > > > > Is this a known problem? > > There is no known issues with the apple.com sites that I am aware of. do you mean that it works ok for you as of today? or used to work? > Have you tried the replacement for mplayerplug-in, gecko-mediaplayer? I > have discontinued development of mplayerplug-in for over 18months. > oh... I wasn't aware of that. Will try and report how it goes. Thanks Gustavo -- Angulo Sólido - Tecnologias de Informação http://angulosolido.pt |