1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Charlies content |
---|
4 | ** History ** |
---|
5 | |
---|
6 | 20150829 updated this file. Charlies go to html5 whereever it's possible. It should work for mp4 and mp3 in most if not all (html5 compatible) browsers. Options screen in piwigo disabled (never worked). The aspect is not very nice but it works, with very simple code. mp3 have no options. mp4 have size option. Change it by editing directly the charlie_html5.tpl. One can add image to the mp3 menu if he want in the usual way (like photos), but most of the time is should not be necessary. |
---|
7 | |
---|
8 | I much simplyfied flv player, it seems to work in most browsers. |
---|
9 | |
---|
10 | 20140721 fixed quicktime player (at least mov and mp4), with fixed height and width (640x360+controls. wmv works but with half the size (I don't know why) |
---|
11 | |
---|
12 | 20140719 change comments in mp3player.tpl, change plugin name in main.inc, comment out "adviser" limitation for saving changes in config.php (no use seen) |
---|
13 | |
---|
14 | 20140718 svn version almost identical to standard. Tests: |
---|
15 | |
---|
16 | flv read but it's not possible to use the slider to skip part of the video (old bug) |
---|
17 | avi do not read |
---|
18 | mov, mp4, wmv do not read, not even display |
---|
19 | gpx works |
---|
20 | zip works (do not display but ask for download wich is what is expected) |
---|
21 | pdf works |
---|
22 | mp3 works |
---|
23 | |
---|
24 | This page should be included in SVN |
---|
25 | |
---|
26 | Very important: if you have any problem with a file, try to send me an example I can test, thanks. |
---|
27 | |
---|
28 | As jdd, I try to maintain charlie's Contents plugin. But I'm not a real programmer, so I may do important mistakes. If you find one, do not hesitate to write to me at jdd@dodin.org, thanks. |
---|
29 | |
---|
30 | The fisrt unimportant change is to create this beta version, please use the other VDigital version for normal use. |
---|
31 | |
---|
32 | |
---|
33 | 2010-05-18 2.1.b ( The review ) |
---|
34 | Admin page design review mainly for the "clear" theme |
---|
35 | Code review |
---|
36 | 2010-05-18 2.1.a (The basic 2.1 version) |
---|
37 | Just support 2.1. |
---|
38 | 2010-02-08 2.0.f (The reset version) |
---|
39 | includes Reset ALL Charlies' configuration in second tab |
---|
40 | translation system (Thanks to ddtddt). |
---|
41 | minor language/plugin corrections. |
---|
42 | 2009-05-24 2.0.e (Called ngoc version) |
---|
43 | buffermessage correction for flv |
---|
44 | The lumenation bypass is maintain (but no longer needed with recent Piwigo versions) |
---|
45 | getID3 v2.0.0-b5 not tested => Still in v2.0.0-b4 |
---|
46 | 2009-05-24 2.0.d (Called lumenation bypass) |
---|
47 | some url were generated with https:// |
---|
48 | 2009-04-13 2.0.c |
---|
49 | Flipflip proposal to exclude GETID3 for some extends |
---|
50 | nolive proposal to support GPX extensions |
---|
51 | Forced width/height are supported by flvstreamer |
---|
52 | 2009-02-15 2.0.b |
---|
53 | Admin configuration menu |
---|
54 | And related changes (New version of GetID3) |
---|
55 | |
---|
56 | 2008-10-30 2.0.a (Not distributed) |
---|
57 | Smarty version for Piwigo (Don't use it with PhpWebGallery 1.7.x) |
---|
58 | 2008/03/26: error_reporting(E_ERROR | E_WARNING | E_PARSE); |
---|
59 | during getid3 call (Only one referenced case). |
---|
60 | 2008/02/22: |
---|
61 | * 3GP support : video streams from mobile phones. |
---|
62 | There are two different standards for this format: |
---|
63 | 3gp for GSM-based Phones, or 3g2 for CDMA-based Phones. |
---|
64 | * $page['slideshow'] active/inactive support for "Pause" enhancement |
---|
65 | so Charlies won't act on active slideshow but will act on Slideshow pause |
---|
66 | |
---|
67 | 2007-10-21 1.7.a First release for PhpWebGallery 1.7 |
---|
68 | 2006-01-06 Video Integrator and followed by Media Integrator |
---|
69 | and previously Kitof's Original MOD. |
---|
70 | **/ |
---|
71 | ?> |
---|