Quel est le plugin mozilla qui lit les BA de allocine.fr ?

Quel est le plugin mozilla qui lit les BA de allocine.fr ? - Logiciels - Linux et OS Alternatifs

Marsh Posté le 26-06-2003 à 23:20:41    

un plugin mozilla ou bien une appli
PS : j'ai installé le plugin-mplayer pour mozilla ainsi que l'appli realplayer ... la je dl le java runtime

Reply

Marsh Posté le 26-06-2003 à 23:20:41   

Reply

Marsh Posté le 27-06-2003 à 12:05:25    

Marche pas  :sweat:  
Ca marche chez vous ?  :??:

Reply

Marsh Posté le 27-06-2003 à 12:06:02    

je dirais aucun

Reply

Marsh Posté le 27-06-2003 à 12:06:47    

j'ai résolu le problême en allant sur d'autre site

Reply

Marsh Posté le 27-06-2003 à 12:10:57    

J'y arrive avec le mplayerplug-in apparement.
 
Par contre j'ai tjs pas réussi sur www.cinebel.be

Reply

Marsh Posté le 27-06-2003 à 12:30:36    

Comment ca apparemment ?
Ca marche ou pas ?
Si oui comment as-tu fait ?

Reply

Marsh Posté le 27-06-2003 à 12:45:52    

ben j'ai essaier 2 BA et j'ai su les lire.
 
J'utilise une version CVS d'ya qq temps de mplayer  (pour le support du stream (www.live.com)).
 

Reply

Marsh Posté le 27-06-2003 à 13:16:28    

moi là dessus je les lis  
http://www.commeaucinema.com/index.php3

Reply

Marsh Posté le 27-06-2003 à 13:40:06    

bof, moi je chop l'url du streaming dans le source de la page et je le balance à mplayer ! :o :D

Reply

Marsh Posté le 27-06-2003 à 14:22:04    

minusplus a écrit :

bof, moi je chop l'url du streaming dans le source de la page et je le balance à mplayer ! :o :D


 
Marche pas avec allocine ... (Du moins à ma connaissance)

Reply

Marsh Posté le 27-06-2003 à 14:22:04   

Reply

Marsh Posté le 27-06-2003 à 14:35:30    

souvent, les BA sont des MOV, un format assez bien supporté par mplayer donc ...
Sinon, il y a le http://www.apple.com/trailers qui a tout les BA que tu veux (et meme en français ...)
Ensuite, il y a un script perl qui télécharge le BA à partir de l'URL:
 

Code :
  1. #!/usr/bin/perl -w
  2. #
  3. # (C) 2002 Draco D.
  4. # email: draco_d@gmx.net
  5. #
  6. # script to download Trailers from www.apple.com/trailers
  7. #
  8. # pass the URL of the HTML File which contains the embedded QT Mov file as
  9. # argument to this skript.
  10. # example:
  11. #     getMov.pl http://www.apple.com/trailers/mgm/ [...] r3_lg.html
  12. #
  13. #
  14. # I wrote this script by analysing some sample-trailer-pages; if it doesn't
  15. # work with one you're trying, you can send me the link, *maybe* I can and want to fix it...
  16. #
  17. # Or, even better, you fix it and send me a patch ;-)
  18. #
  19. # How this works:
  20. # 1. the script uses 'wget' to download the HTML file
  21. # 2. the HTML File is parsed for appearance of an <EMBED> tag. the first one is taken
  22. # 3. the embedded filename in the HREF is extracted
  23. # 4. if it ends in \d*.mov (some digits, then ".mov" ) insert the "m" and download. done!
  24. # if it doesn't end with digits+.mov then use second strategy, described below, where it starts...
  25. #
  26. # NO WARRANTY! I can't guarantee that this script always works... It shouldn't delete some of your
  27. # files either, since it doesn't use any command which may overwrite files. Even wget creates new ones
  28. # if the target already exists!
  29. #
  30. # You need Perl, wget and strings installed for this script to work!
  31. #
  32. if ($#ARGV != 0) {
  33. print "Start with one argument, which is the URL to the HTML file containing the embedded mov\n";
  34. die;
  35. }
  36. # 1. get HTML File
  37. open HTMLFILE, "wget -q -O - $ARGV[0] |" or die "can't read output from wget";
  38. @html=<HTMLFILE>;
  39. # 2. parse file, search for EMBED tag... Break out if found
  40. $embed="";
  41. foreach $line (@html) {
  42.   if (($line=~/embed/) || ($line=~/EMBED/)) {
  43.     $embed=$line;
  44.     last;
  45.   }
  46. }
  47. if ($embed eq "" ) {
  48.   die "didn't find any EMBED";
  49. }
  50. # 3. Extract movie filename
  51. $embed=~s/.*HREF//i;
  52. $embed=~s/\.mov.*/.mov/;
  53. $embed=~s/.*http/http/i;
  54. if ($embed=~/\d*.mov/) {
  55.   $filen=$embed;
  56.   $filen=~s/(\d*).mov/m$1.mov/;
  57.   chomp $filen;
  58.   system "wget $filen";
  59.   $fn=$filen;
  60.   $fn=~s|.*/||g;
  61.   $size= -s $fn;
  62.   if ($size > "1000000" ) {
  63. print "Done!\n";
  64. exit 0;
  65.   }
  66. }
  67. # this didn't work, so let's take the SECOND STRATEGY....
  68. # a1. download the .mov file. this isn't the movie, but contains the URL of it...
  69. # a2. use 'strings' to get filenames, the ones which end with .mov and don't have http://
  70. # a3. there may be different sizes. this script only uses the 480 ones...
  71. # a4. get the file which was referenced in the first mov
  72. # a5. if it's smaller than 1MB then it's another file which contains URLs, so "goto a2"
  73. #     the file is already downloaded...
  74. # save url of directory (without filename, but with http://) for later use
  75. $dir=$embed;
  76. $dir=~s|(.*/).*|$1|g; #remove filename
  77. chomp $dir;
  78. # a1 get .mov file
  79. $tmpfilename="tmp.mov";
  80. system "wget -q -O $tmpfilename $embed";
  81. $done="0";
  82. while ($done < "10" ) { # < 10 to prevent infinite loop
  83. # a2. use strings to extract the filenames out of the .mov
  84. open MOVFILE1, "strings $tmpfilename |" or die "can't read from strings";
  85. @mov1=<MOVFILE1>;
  86. @movienames = ();
  87. foreach $something (@mov1) {
  88.   if (($something=~/.mov/) && (not($something=~/http/i))) {
  89.     @movienames = (@movienames, $something);
  90.   }
  91. }
  92. # this isn't very efficient, it could be done in one loop only.
  93. # but I wanted to write it so that it can be changed easily later, eg
  94. # if someone wants to download a smaller size *if* the 480 doesn't exist
  95. $movie="";
  96. #try to find the movie with 480 in its name. it's the large one...
  97. foreach $m (@movienames) {
  98.   if ($m=~/480/ || (@movienames == "1" )) {
  99.     # if there's only 1 movie, take this!
  100.     $movie=$m;
  101.     last;
  102.   }
  103. }
  104. die "No link to Movie found " if ($movie eq "" );
  105. $movie=~s/(^\W)|(^\d)//;
  106. $completename=$dir.$movie;
  107. print "Downloading $completename\n";
  108. # 7: download the file
  109. $fn=$completename;
  110. $fn=~s|.*/||g;
  111. chomp $fn;
  112. system "wget $completename";
  113. # 8. if it's too small it isn't the movie but yet another "link"...
  114. $size = -s $fn;
  115. $done="100" if ($size > "1000000" );
  116. $done++; #to prevent infinite loop
  117. $tmpfilename=$fn;
  118. }
  119. if ($done < "100" ) {
  120. print "Downloading probably failed :( Sorry.\n";
  121. } else {
  122. print "Done!\n";
  123. }

 
Par exemple:
 


getmov http://www.apple.com/trailers/columbia/charliesangelsfullthrottle/trailer_large.html

telecharge la BA de Droles des dames2 ...

Reply

Marsh Posté le 27-06-2003 à 14:49:27    

minusplus a écrit :

bof, moi je chop l'url du streaming dans le source de la page et je le balance à mplayer ! :o :D


 
Où tu chopes l'URL ?  :??: (par exemple dans "seul au monde" j'affiche les sources mais pour trouver l'URL jvois pas où elle est :/)


Message édité par Giz le 27-06-2003 à 14:50:22
Reply

Marsh Posté le 27-06-2003 à 14:54:26    

Quand je veux lancer une video a partir d'un link ca me fait dans le cadre d'affichage de la video :
mplayerplug-in - Loading movie ...
 
...j'attends longtemps et kedalle (pour allocine.fr, sur apple ca marche mais c en anglais les video :/)
sur allocine j'ai le son par contre mais pas l'image (pour hulk) et des fois j'ai rien du tout (seul au monde,  Terreur.point.com,...)


Message édité par Giz le 27-06-2003 à 15:04:07
Reply

Marsh Posté le 27-06-2003 à 15:33:56    

Ca y est j'ai mailé à allocine.fr :
"
Bonjour,
 
Je suis sous Linux Mandrake 9.1. Après avoir installé le "mplayerplug-in" pour mon navigateur mozilla 1.3, lorsque je clique sur la bande annonce (du film "seul au monde" par exemple), la video ne s'affiche jamais ; rien ne se passe même après avoir attendu longtemps. Pour le film "Hulk" par contre j'ai seulement le son ; pas la video.
Or la lecture des bandes annonces, sur des sites tels que www.apple.com/trailers ou bien www.cinemovies.org où je suis contrains d'aller, ne pose aucun problème avec tous les films ("seul au monde", etc...).
Votre site a-t-il un problème ?
 
Merci"
 
:D

Reply

Marsh Posté le 27-06-2003 à 15:59:28    

pour la ba d'hulk sur allocine j'ai rien (à part 99% d'occupation du cpu) :fou:  
 
Pourtant j'ai bien compilé mplayer avec les librairies live.com

Reply

Marsh Posté le 27-06-2003 à 16:09:46    

En attaquant directement la vrai url du stream ca marche pas non plus  :sweat:
 

mplayer -nocache  mms://a341.v09806.c980.g.vm.akamaistream.net/7/341/980/v1/video-ak.allocine.net/nmedia/00/02/54/34/18352409_fa_vf_h.wmv
 
MPlayer 0.90-3.2.3 (C) 2000-2003 Arpad Gereoffy (see DOCS)
 
Playing mms://a341.v09806.c980.g.vm.akamaistream.net/7/341/980/v1/video-ak.allocine.net/nmedia/00/02/54/34/18352409_fa_vf_h.wmv
Resolving a341.v09806.c980.g.vm.akamaistream.net ...
Connecting to server a341.v09806.c980.g.vm.akamaistream.net[194.98.93.226]:80 ...
Stream bitrate properties object
Max bandwidth set to 0
Resolving a341.v09806.c980.g.vm.akamaistream.net ...
Connecting to server a341.v09806.c980.g.vm.akamaistream.net[194.98.93.226]:80 ...
Cache size set to 0 KBytes
Connected to server: a341.v09806.c980.g.vm.akamaistream.net
Stream not seekable!
ASF file format detected.
============ ASF Stream group == START ===
 object size = 50
 stream count=[0x4][4]
   stream id=[0x1][1]
   max bitrate=[0x57ea][22506]
   stream id=[0x2][2]
   max bitrate=[0x1ac33][109619]
   stream id=[0x3][3]
   max bitrate=[0x27505][161029]
   stream id=[0x4][4]
   max bitrate=[0x4cf7b][315259]
============ ASF Stream group == END ===
Stream not seekable!
ASF: No video stream found.
ASF: No audio stream found -> no sound.
No stream found.
 
 
Exiting... (End of file)


 
Ca marche chez quelqu'un?

Reply

Marsh Posté le 27-06-2003 à 16:16:10    

D'ailleurs mon mplayer n'arrive pas non plus à lire le stream en real, alors que ca marche avec realone
 
rtsp://a342.v0980d.c980.g.vr.akamaistream.net/ondemand/7/342/980/v1/video-ak.allocine.net/nmedia/00/02/54/34/18352409_fa_vf_b.rm

Reply

Marsh Posté le 27-06-2003 à 21:36:22    

fl0ups a écrit :

D'ailleurs mon mplayer n'arrive pas non plus à lire le stream en real, alors que ca marche avec realone
 
rtsp://a342.v0980d.c980.g.vr.akamaistream.net/ondemand/7/342/980/v1/video-ak.allocine.net/nmedia/00/02/54/34/18352409_fa_vf_b.rm


 
Chez moi ca marche.
Tu dois pas avoir compilé avec le support real et/ou du stream.

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed