Annonce

  •  » Plugins
  •  » Video Integrator

#31 2004-08-31 23:53:59

bruno
Invité

Re: Video Integrator

jai testé le mod et ça marche vraiment bien !!

j'ai qq questions :

*peut regler le fait que la vidéo se repète en boucle ?


*peut-on mettre une mignature pour la vidéo plutot que l'icone ?
si oui avec quoi peut-on faire ces mignatures ?
(windows affiche des mignatures avec l'affichage pellicule ou mignature)

*et enfin pour le codec, il faut aller sur le site du constructeur pour savoir quel codec est utilisé par l'appareil photo et avoir le lien, non ?
ou bien c'est standart

merci

-----------------------------------------in english !!-------------------------------------
I've tried this mod and it work very well !
Few Questions:

*can we decide that the video is playing loop or not ?

*can we put a thundnail for the video instead of the movie.png icone
if yes, with wich tool ?

*at least, for the codec, maybe the constructor give the codec for the numeric ?

thanks a lot

#32 2004-08-31 23:54:05

bruno
Invité

Re: Video Integrator

jai testé le mod et ça marche vraiment bien !!

j'ai qq questions :

*peut regler le fait que la vidéo se repète en boucle ?


*peut-on mettre une mignature pour la vidéo plutot que l'icone ?
si oui avec quoi peut-on faire ces mignatures ?
(windows affiche des mignatures avec l'affichage pellicule ou mignature)

*et enfin pour le codec, il faut aller sur le site du constructeur pour savoir quel codec est utilisé par l'appareil photo et avoir le lien, non ?
ou bien c'est standart

merci

-----------------------------------------in english !!-------------------------------------
I've tried this mod and it work very well !
Few Questions:

*can we decide that the video is playing loop or not ?

*can we put a thundnail for the video instead of the movie.png icone
if yes, with wich tool ?

*at least, for the codec, maybe the constructor give the codec for the numeric ?

thanks a lot

#33 2004-09-01 01:24:55

Kitof
Membre
Villeurbanne
2004-03-04
21

Re: Video Integrator

bruno a écrit:

jai testé le mod et ça marche vraiment bien !!

j'ai qq questions :

*peut regler le fait que la vidéo se repète en boucle ?

Oui, ligne 42 de template\default\picture.vtp :

<EMBED SRC="{#movie_src}" TYPE="application/x-mplayer2" CONTROLS="false" LOOP="-1" AUTOSTART="true" BORDER="0">

Modifier le paramètre LOOP en LOOP=0.

bruno a écrit:


*peut-on mettre une mignature pour la vidéo plutot que l'icone ?
si oui avec quoi peut-on faire ces mignatures ?
(windows affiche des mignatures avec l'affichage pellicule ou mignature)

Non, ce n'est pas prévu dans le mod, et ce n'est pas une modif évidente.

bruno a écrit:


*et enfin pour le codec, il faut aller sur le site du constructeur pour savoir quel codec est utilisé par l'appareil photo et avoir le lien, non ?
ou bien c'est standart

La plupart des vidéos sont standard, mais il est possible qu'elles soient réencodées avec des codecs particuliers (DivX).

bruno a écrit:


merci

-----------------------------------------in english !!-------------------------------------
I've tried this mod and it work very well !
Few Questions:

*can we decide that the video is playing loop or not ?

Yes, line 42 of template\default\picture.vtp :

<EMBED SRC="{#movie_src}" TYPE="application/x-mplayer2" CONTROLS="false" LOOP="-1" AUTOSTART="true" BORDER="0">

Change parameter LOOP=-1 in LOOP=0.

bruno a écrit:


*can we put a thundnail for the video instead of the movie.png icone
if yes, with wich tool ?

No, sorry. It's not possible yet.

bruno a écrit:


*at least, for the codec, maybe the constructor give the codec for the numeric ?

Most codecs are generic, so you don't need specific codec, but if the movie is encoding with a particular codec (like Divx), it could be useful

bruno a écrit:


thanks a lot

Hors ligne

#34 2004-09-02 02:00:44

pilami
Membre
DIJON
2004-07-08
29

Re: Video Integrator

j'ai cette erreur qd je lance le create_listing_file.php pour generer le listing.xml : Parse error: parse error in /var/alternc/html/e/erreur404/photos/videos/create_listing_file.php on line 143

et vu que je suis une daube en php, je ne capte pas d'où vient l'erreur :(

=)


[ # ] [ ## ] [ ### ]

Hors ligne

#35 2004-09-02 02:09:52

pilami
Membre
DIJON
2004-07-08
29

Re: Video Integrator

oula apres l'install du MOD .. impossibilité d'acceder aux differentes categories ..

chui revenu a la version precedente du coup (ouf j'avais backupé) ;)

je prefere attendre la version 1.4 finalement .. j'ai peur de tout casser

Dernière modification par pilami (2004-09-02 02:10:32)


[ # ] [ ## ] [ ### ]

Hors ligne

#36 2004-09-05 00:00:15

laetilodie
Invité

Re: Video Integrator

Pour avoir une miniature a la place de l'icone rien de plus simple. Voici la modif

Dans category.php

a la place de

   // thumbnail url
    if(in_array(get_extension($row['file']),$conf['picture_ext']))
    {
        $thumbnail_url = $cat_directory;
        $thumbnail_url.= 'thumbnail/'.$conf['prefix_thumbnail'];
        $thumbnail_url.= $file.'.'.$row['tn_ext'];
    }
    elseif(in_array(get_extension($row['file']),$conf['movie_ext']))
    {
        $thumbnail_url = './template/'.$user['template'].'/images/movie.png';
    }

Mettre

  // thumbnail url
    if(in_array(get_extension($row['file']),$conf['picture_ext']))
    {
        $thumbnail_url = $cat_directory;
        $thumbnail_url.= 'thumbnail/'.$conf['prefix_thumbnail'];
        $thumbnail_url.= $file.'.'.$row['tn_ext'];
    }
    elseif(in_array(get_extension($row['file']),$conf['movie_ext']))
    {
        $thumbnail_url = $cat_directory;
        $thumbnail_url.= 'thumbnail/'.$conf['prefix_thumbnail'];
        $thumbnail_url.= $file.'.'.$row['tn_ext'];
    }

Puis a la place de

   // creating links for thumbnail and associated category
    if(in_array(get_extension($image_row['file']),$conf['picture_ext']))
    {
    $thumbnail_link = get_complete_dir( $image_row['storage_category_id'] );
    $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
    $thumbnail_link.= $file.'.'.$image_row['tn_ext'];
    }
    elseif(in_array(get_extension($image_row['file']),$conf['movie_ext']))
    {
    $thumbnail_link = './template/'.$user['template'].'/images/movie.png';
    }

Mettre

   // creating links for thumbnail and associated category
    if(in_array(get_extension($image_row['file']),$conf['picture_ext']))
    {
    $thumbnail_link = get_complete_dir( $image_row['storage_category_id'] );
    $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
    $thumbnail_link.= $file.'.'.$image_row['tn_ext'];
    }
    elseif(in_array(get_extension($image_row['file']),$conf['movie_ext']))
    {
    $thumbnail_link = get_complete_dir( $image_row['storage_category_id'] );
    $thumbnail_link.= 'thumbnail/'.$conf['prefix_thumbnail'];
    $thumbnail_link.= $file.'.'.$image_row['tn_ext'];
    }


La miniature se trouve dans dans le repertoire thumbnail de celui de ta video

Par exemple:
video1.avi
repertoire THUMBNAIL
               TN-video1.png


Sinon pour creer le fichier listing.xml, moi aussi je n'ai pas reussi a le faire avec le create_listing_file.php, je l'ai donc fait manuellement.

Voici a quoi ca ressemble.( fichier texte)

<url>http://URL de ton site/</url>
<dir0 name="repertoire des tes videos">
  <root>
      <picture file="video1.avi" tn_ext="png" filesize="1000" width="320" height="280" />
  </root>
</dir0>


Vous le mettez dans le repertoire admin de phpwebgallery puis vous mettez a jour les photos.

#37 2004-10-21 05:36:14

jOoL
Invité

Re: Video Integrator

**********
FRENCH
**********

Hello j'ai 2 problèmes après l'installation du MOD vidéo.

------------------
1
------------------
Le lien thumbnail vers unecatégories ne fonctionne pas comme il devrait...alors que le lien "texte" fonctionne:

Le lien se construit comme ceci:

vids/,5,6

au-lieu de:

vids/category.php?cat=6&expand=all

D'ou vient le problème????

---------------
2
---------------

Comment marche le fichier create_listing_file.php ??

Depuis ou je dois le lancer?? Quelles doivent être les authorisations? Ou doit se mettre le listing_xml??

Il me dit simplement que il ne peut pas écrire le fichier comme erreur...

**********
ENGLISH
**********

Hello I have 2 problems after installing the video MOD .

------------------
1
------------------
The "thumbnail link" to a category doesn't work as it should... the "text link" works perfect...

The link is like that:

vids/,5,6

and should be like that:

vids/category.php?cat=6&expand=all

Where does the problem come from????

---------------
2
---------------

How does the file create_listing_file.php work???

From where do I have to launch it? With which athorisations CHMOD? Where should be listing xml?

I only get an error saying "can't write listing"...


********


Thankyou
Merci
@+
jOoL

#38 2004-10-22 08:23:35

jOoL
Invité

Re: Video Integrator

Pour le post précédent, voilà les lignes qui me posent problême:

// we add the category to explore in the expand list
       if ( $page['expand'] != '' ) $url_link.= ',';
    $url_link.= $subcat_id;

#39 2004-11-13 11:53:01

Eric
Invité

Re: Video Integrator

Kitof a écrit:

Video Integrator MOD

Description : Play & handle Video file like picture

Downloads :
          · Wednesday August 25th, 2004 : release 0.1.0 beta (for PhpWebGallery 1.3.2) [zip]
          · Sunday May 16th, 2004 : release 0.0.2 (for PhpWebGallery 1.3.1) [zip]
          · Thursday March 4th, 2004 : release 0.0.1 (for PhpWebGallery 1.3) [zip]

Demo : [here]

Notes (for release 0.1.0 beta) :
          · Experimental Version
          · Works with local AND remote files
          · Multi language

Bonjour

je souhaiterai installer le mod video avec la version 1.4 de la galerie est-ce possible?
et comment utilise t'on les mod

Merci

#40 2004-11-13 12:04:34

Victor
Membre
Paris
2004-03-13
369

Re: Video Integrator

Je crois que la version 1.4 intégrera ce mod automatiquement...
I think branch 1.4 will include this MOD... (escuse me z0rglub...)

Dernière modification par Victor (2004-11-13 13:05:53)

Hors ligne

#41 2004-11-13 12:23:50

plg
Équipe Piwigo
Nantes, France, Europe
2002-04-05
12639

Re: Video Integrator

Victor a écrit:

I think branch 1.4 will include this MOD...

partly false. Branch 1.4 will support all file types (including .mpg files for example) but the only specific filetype is picture (display the image and not the corresponding icon, reading EXIF info, etc.) This MOD will be useful for video play integration inside the browser


Les historiens ont établi que Pierrick était le premier utilisateur connu de Piwigo.

Hors ligne

#42 2004-11-15 15:03:58

BeTtA SpLeNdEnS
Membre
Rennes
2002-04-15
51

Re: Video Integrator

Hi, is this MOD is working with 1.3.4 ?
I'm really interested with this one... ! playing video just like picture is so good !

Hors ligne

#43 2004-11-15 16:40:04

Victor
Membre
Paris
2004-03-13
369

Re: Video Integrator

I don't think so but ask the question to z0rglub ;-)

Hors ligne

#44 2004-11-15 18:04:30

BeTtA SpLeNdEnS
Membre
Rennes
2002-04-15
51

Re: Video Integrator

After some tests, it seems all is ok with 1.3.4, i don't see any problem ! good !

-- ohhh, registered 10 days after zOrglub and only 5 messages ?!?? :-( --

Hors ligne

#45 2004-12-06 13:29:39

BeTtA SpLeNdEnS
Membre
Rennes
2002-04-15
51

Re: Video Integrator

I confirm that after several weeks, the video integrator works greatfully with version 1.3.4

Hors ligne

  •  » Plugins
  •  » Video Integrator

Pied de page des forums

Propulsé par FluxBB

github twitter newsletter Faire un don Piwigo.org © 2002-2024 · Contact