Home Private Messages Search
CPG Dragonfly™ CMS Dedicated Server & Bandwidth Sponsored by DedicatedNOW
Toggle Content
 
Forums ⇒ DragonflyCMS ⇒ Add-Ons & Blocks ⇒ mClip - Movie Module


mClip - Movie Module
Need help creating a block or add-on, or you have created or modified a block/add-on that works in Dragonfly CMS and it meets the CPG Security Requirements? Do you have feedback about a specific add-on? Here is the place to post. Read the announcements here first!.
Go to page Previous  1, 2, 3 ... 9, 10, 11
Post new topic    Reply to topic    Printer Friendly Page     Forum Index ⇒  Add-Ons & Blocks

View previous topic :: View next topic  
Author Message
Kendle
500+ Posts Club
500+ Posts Club

Offline Offline
Joined: Dec 16, 2004
Posts: 552

PostPosted: Thu Jun 19, 2008 7:59 pm
Post subject: Re: mClip - Movie Module

IgorMM wrote:
i have the version 2.1.3 and i have a problem with comments, when you klick submit, the site doesent refresh, and stands still.

Comments work fine for me, I can't replicate this fault. Have you made any amendments to the theme / mClip teamplates?

_________________
Gaming League / Cup - www.leaguecms.co.uk :: Other DragonFly modules - www.cmsdreams.co.uk

Kendle's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website
Klas
Newbie
Newbie

Offline Offline
Joined: Apr 27, 2004
Posts: 38
Location: Oldenburg/Germany
PostPosted: Tue Jul 08, 2008 2:35 pm
Post subject: mClip - with H.264 Video

A quick test with h.264 encoded flv:
www.terralights.de/ter...id=11.html
to see the h.264 encoded video javyscript must be enabled and the flash player plugin 9.115 or higher must be installed.
Or, if you want to see the Flash encoded video disable javascript. Both videos are encoded with 85kbps, filesize is 1,69 MB.


my mkh264.bat to cobvert a video into Flash and H.264 with ffmpeg:
Code::
@echo off
rem Convert avi to flv and h.264 flv
rem the directory hq must exist!

set SourceFile=test2.avi
set DestFile=test2

set AudioCodec=libmp3lame -ab 56000 -ar 22050 -ac 1
rem set AudioCodec=copy
set Audio=-acodec %AudioCodec%
rem set Audio=-an

set VideoBitrate=85k
set FrameRate=15
set VideoSize=-s 384x288 -sws_flags lanczos
set VideoDst=%VideoSize% -b %VideoBitrate% -bt %VideoBitrate% -r %FrameRate%

echo flv pass1 -----------------------------------
ffmpeg.exe -y -i %SourceFile% -an -f flv -vcodec flv %VideoDst% -me_method full -me_range 16 -mbd 1  -bt %VideoBitrate% -b %VideoBitrate% -bf 0 -pass 1 -umv -4mv NUL
echo flv pass2 -----------------------------------
ffmpeg.exe -y -i %SourceFile% %Audio% -vcodec flv %VideoDst% -me_method full -me_range 16 -mbd 1  -bt %VideoBitrate% -b %VideoBitrate% -bf 0 -pass 2 -umv -4mv %DestFile%.flv

echo h.264 pass1 -----------------------------------
ffmpeg -y -i %SourceFile% -an -f flv -pass 1 -vcodec libx264 %VideoDst% -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -me_method full -subq 1 -trellis 0 -refs 1 -bf 16 -b_strategy 1 -coder 1 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq "blurCplx^(1-qComp)" -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 NUL

echo h.264 pass2 -----------------------------------
ffmpeg -y -i %SourceFile% %Audio% -pass 2 -vcodec libx264 %VideoDst% -cmp +chroma -partitions +parti8x8+parti4x4+partp8x8+partp4x4+partb8x8 -flags2 +brdo+dct8x8+wpred+bpyramid+mixed_refs -me_method full -subq 7 -trellis 1 -refs 6 -bf 16 -directpred 3 -b_strategy 1 -bidir_refine 1 -coder 1 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq "blurCplx^(1-qComp)" -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 hq\%DestFile%.flv
echo Done. -----------------------------------

upload the first flv to modules/Movie/movies/ and the hq/flv to modules/Movie/movies/hq/ , in mclip create a new type h264 and use
Code::
<script  type="text/javascript" src="modules/Movie/libs/flashembed.min.js"></script>
<script  type="text/javascript">
window.onload = function() {
	flashembed("player", {
		src: 'modules/Movie/players/FlowPlayerDark.swf',
		width:{width},
		height:{height},
		version: [9,115],
		onFail: function(version, params) {
			this.version = [8,0];
			this.onFail = null;
			params.config.videoFile = '{movies}{link}';
			flashembed("player", this, params);
		}
	},
	{config: {
		videoFile:'{movies}hq/{link}',initialScale: 'orig'
	}});
	$("#myVersion").html(flashembed.getVersion().toString());
}
</script>
<script  type="text/javascript">
document.write("<div id=\"player\" style=\"width:{width}px;height:{height}px;cursor:pointer;border:0;background-color:#000\"><\/div>")
</script>
<noscript>
<object type="application/x-shockwave-flash" data="modules/Movie/players/FlowPlayerDark.swf" width="{width}" height="{height}" id="FlowPlayer"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="modules/Movie/players/FlowPlayerDark.swf" /><param name="quality" value="high" /><param name="scale" value="noScale" /><param name="wmode" value="transparent" /><param name="flashvars" value="config={videoFile: '{movies}{link}'}" /></object>
</noscript>
for the HTML field.

ffmpeg can be found here: sourceforge.net/projec..._id=205275

Have fun.

_________________
Klas
.
My mice Terri & Tracy

Klas's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website Photo Gallery
Klas
Newbie
Newbie

Offline Offline
Joined: Apr 27, 2004
Posts: 38
Location: Oldenburg/Germany
PostPosted: Sat Jul 26, 2008 11:32 am
Post subject: Re: mClip - Movie Module

Flowplayer relase 2.2.2 is out...
flowplayer.org/blog.ht...lease2_2_2

_________________
Klas
.
My mice Terri & Tracy

Klas's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website Photo Gallery
macuserau
Nice poster
Nice poster

Offline Offline
Joined: May 18, 2006
Posts: 124
Location: South Coast Australia
PostPosted: Tue Nov 15, 2011 12:05 pm
Post subject: Re: mClip - Movie Module

does any one know if this module is still available or where i can get a copy from.
I have looked on Kendle website but no of the links appear to be working?

Any assistance is appreciated


macuserau's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
unix / Apache 2.2.15 / MySQL 5.0.92 / PHP 5.3.8/ CMS 9.3.3.0
Back to top
View user's profile Visit poster's website
Kendle
500+ Posts Club
500+ Posts Club

Offline Offline
Joined: Dec 16, 2004
Posts: 552

PostPosted: Tue Nov 15, 2011 1:26 pm
Post subject: Re: mClip - Movie Module

I'll have a look to see if I've got a copy lying around, but I've long since stopped developing this module, it's all now wrapped up in a custom Content module which I've never got round to releasing.

_________________
Gaming League / Cup - www.leaguecms.co.uk :: Other DragonFly modules - www.cmsdreams.co.uk

Kendle's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website
greenday2k
Forum Admin
Forum Admin

Offline Offline
Joined: Aug 11, 2005
Posts: 489
Location: CO
PostPosted: Wed Nov 16, 2011 12:37 am
Post subject: Re: mClip - Movie Module

mclip-v2.1.4. The Attachment is too big for this forum.

Code::
http://aker.tk/mclip-v2.1.4.zip


Great Module.

_________________
www.greenday2k.net


greenday2k's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website MSN Messenger Yahoo Messenger
macuserau
Nice poster
Nice poster

Offline Offline
Joined: May 18, 2006
Posts: 124
Location: South Coast Australia
PostPosted: Wed Nov 16, 2011 10:20 am
Post subject: Re: mClip - Movie Module

Thanks greenday


macuserau's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
unix / Apache 2.2.15 / MySQL 5.0.92 / PHP 5.3.8/ CMS 9.3.3.0
Back to top
View user's profile Visit poster's website
Display posts from previous:   
Post new topic    Reply to topic    Printer Friendly Page    Forum Index ⇒  Add-Ons & Blocks
Page 11 of 11
All times are GMT
Go to page Previous  1, 2, 3 ... 9, 10, 11



Jump to:  


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum


 
   Toggle Content User Info

Welcome Anonymous

Nickname
Password
(Register)

   Toggle Content Last CVS commits
· Fixed .ico Expires header.
· Removed domain name from cookies so subdomains wont access them anymore.
· CSS and JS, case insensitives.
· CSS and JS, send correct HTTP 1.1 headers and fixed issues where themes and...
· Further security class improvements.
· 301 redirects on LEO changes
· Option to force 3xx http status codes
· Validate googlebot.com and google.com crawlers.
· CCBot
· Rss with etag and atom.

read more...

   Toggle Content Community

Support for DragonflyCMS in a other languages:

Deutsch
Español

   Toggle Content X-links
UltraEdit Browse Happy logo Firefox MySQL PostgreSQL Valid CSS! Valid XHTML 1.0! Unicode Encoded Badge NukeBiz Resources Raven DragonflyCMS Dedicated Now InsideSupport Lampe Berger

You are seeing squares or questionmarks on this page?

All content of this website is copyrighted by the Creative Commons NC-SA
The logos and trademarks used on this site are the property of their respective owners
We are not responsible for comments posted by our users, as they are the property of the poster.
Our server runs on a P3 1.2GHz with 512MB RAM with no accelerators
Support GoPHP5.org
Interactive software released under GNU GPL, Code Credits, Privacy Policy