• Welcome to TodayPlus Boards v2.
 

News:

No news is good news.

Main Menu

Recent posts

#31
SPGM-Vid / Re: Installation Disaster
Last post by jhollin1138 - December 13, 2007, 08:38:46 AM
I sent you a PM.
#32
SPGM-Vid / Installation Disaster
Last post by sfyffe - December 12, 2007, 11:51:05 PM
I have worked on this for some time and just can not get it to run correctly.  Here is my link.

http://www.lostmountainphotography.com/spgm/spgm-vid.php


For some reason I get the feeling I have mismatched versions of spgm, php, spgm-vid, or the helper files.  I have been over the installation instructions several times and all seems correct.  There are no movies in the samples folder just the quicktime video demo.

Any suggestions?

Stephen
#33
Developer's Corner Discussion / Re: Problems with tpfans.com -...
Last post by Morpheus - December 12, 2007, 05:29:46 PM
Quote from: nas on December 12, 2007, 04:21:10 AM
Quote from: Morpheus on December 11, 2007, 05:08:03 PM
Any news on a solution to this or an alternative plgin which can replace the functionality. I trued SOMPY Weather but it has the same problem.

Have a look here http://www.happyjackroad.net/pocketpc/weatherPlus/weather.asp

nas

Thanks, I have temporarily deleted the weather section from my modded HandyPlus basic skin and installed ADB Weather Plus. Its not as pretty as the weather options available in TP but it does provide a forecast.
#34
SPGM-Vid / Re: Sony MPEG Format Videos
Last post by sfyffe - December 12, 2007, 09:49:08 AM
Hi,

My link is:

http://www.lostmountainphotography.com/spgm/

I am not sure what you will see as far as the MOV file I want to play.  Clip was recorded from a Sony Video Cam.


Is this supposed to "stream" the video?  It seems like the video is being transferred down before it is played.  The videos take a very long time to load and play.


Thanks,

Stephen






#35
SPGM-Vid / Re: Sony MPEG Format Videos
Last post by jhollin1138 - December 12, 2007, 09:20:08 AM
Do you have a sample video or a link available?
#36
SPGM-Vid / Sony MPEG Format Videos
Last post by sfyffe - December 12, 2007, 08:16:14 AM
Hello Everyone,

How do I get SPGM-Vid to play my Sony MPEG movies?  I found a post using search which is about a year old and the php code looks a bit different than what I installed so I did not change anything.  Is there a newer version of spgm video which supports doing this?

Thanks!
#37
Developer's Corner Discussion / Re: Problems with tpfans.com -...
Last post by nas - December 12, 2007, 04:21:10 AM
Quote from: Morpheus on December 11, 2007, 05:08:03 PM
Any news on a solution to this or an alternative plgin which can replace the functionality. I trued SOMPY Weather but it has the same problem.

Have a look here http://www.happyjackroad.net/pocketpc/weatherPlus/weather.asp

nas
#38
Developer's Corner Discussion / Re: Problems with tpfans.com -...
Last post by Morpheus - December 11, 2007, 05:08:03 PM
Any news on a solution to this or an alternative plgin which can replace the functionality. I trued SOMPY Weather but it has the same problem.
#39
SPGM-Vid / Re: how to play divX converted...
Last post by jhollin1138 - October 15, 2007, 11:03:31 AM
Quote from: tikko on October 15, 2007, 05:01:18 AMhey jhollin1138 it works :)  :clap:
but with Mozilla Firefox only.  :-?

In IE i get the msg "divx player cannot play this file"
(find the screenshot attached)

and in k-meleon it doesn't always play. Sometimes the buffering account stays by 0% though the loading bar is complete ready.
This isn't an issue with SPGM-Vid but a problem with the other browsers and/or DivX.   SPGM-Vid just determines the correct "object/embed" html code to use, beyond that SPGM-Vid has no control of if the video play or not.

Quote from: tikko on October 15, 2007, 05:01:18 AMjhollin1138 where do i find this additional code to change to fully support DivX ?
As before, I haven't tried everything myself yet, but this should work.  To fully support DivX, you will need to do the following.

Open "flavors/default/spgm.thm" and find this:?>
Before, add:# image icon for DivX Player
$spgm_cfg['theme']['DXVideoImage'] = 'dx.gif';

# default thumbnail for DivX Player Videos
$spgm_cfg['theme']['DXVideoTHB'] = 'thb_dx.jpg';


Open "spgm-vid.lib.php" and find this:$spgm_cfg['global']['supportedVidExtensions']
= array('.asf', '.wmv', '.avi', '.mov', '.qt', '.rm', '.swf', '3gp');    // supported video file extensions

Replace it with this:$spgm_cfg['global']['supportedVidExtensions']
= array('.asf', '.wmv', '.avi', '.mov', '.qt', '.rm', '.swf', '.3gp', '.divx');    // supported video file extensions


Open "spgm-vid.php" and find this:$spgm_cfg['theme']['SWVideoTHB']          = '';
After add:$spgm_cfg['theme']['DXVideoImage'] = '';
$spgm_cfg['theme']['DXVideoTHB']          = '';

Find this: if ( ($arrVideoInfo[2] == 'asf' or $arrVideoInfo[2] == 'riff') ) {
$strThumbnailPath = $spgm_cfg['theme']['MPVideoTHB'];

Replace it with this: if ( $arrVideoInfo[2] == 'asf' ) {
$strThumbnailPath = $spgm_cfg['theme']['MPVideoTHB'];
} elseif ( $arrVideoInfo[2] == 'riff' ) {
$strThumbnailPath = $spgm_cfg['theme']['DXVideoTHB'];

Find this: array('RPVideoImage', 'Get Real Player!', CLASS_IMG_FOLDER, 'RP'),
After add: array('DXVideoImage', 'Get DivX Player!', CLASS_IMG_FOLDER, 'DX'),
Find this: // key in $spgm_cfg
array('MPVideoTHB'),

After add: array('DXVideoTHB'),
Find this: if ( ($arrVideoDim[2] == 'asf' or $arrVideoDim[2] == 'riff') ) {
print '<a href="http://www.microsoft.com/windows/windowsmedia/player/download/">'.$spgm_cfg['theme']['MPVideoImage'].'</a>';

Replace it with this: if ( $arrVideoDim[2] == 'asf' ) {
print '<a href="http://www.microsoft.com/windows/windowsmedia/player/download/">'.$spgm_cfg['theme']['MPVideoImage'].'</a>';
} elseif ( $arrVideoDim[2] == 'riff' ) {
print '<a href="http://go.divx.com/plugin/download/">'.$spgm_cfg['theme']['DXVideoImage'].'</a>';


In addition to all the above changes, copy the attached DivX icon and thumbnail to your "flavors/default/".
#40
SPGM-Vid / Re: how to play divX converted...
Last post by tikko - October 15, 2007, 05:01:18 AM

hey jhollin1138 it works :)  :clap:
but with Mozilla Firefox only.  :-?

In IE i get the msg "divx player cannot play this file"
(find the screenshot attached)

and in k-meleon it doesn't always play. Sometimes the buffering account stays by 0% though the loading bar is complete ready.


jhollin1138 where do i find this additional code to change to fully support DivX ?