Originally Posted by
pyrobug
My Palm Treo 700p records video in a .3g2 extension that vshare will not accept
Is this the same file type as the compatible .3gp extension? If so, would there be
an easy way to use these videos?
vshare use mencoder/ffmpeg for converting video into FLV format. If mencoder support the video format, it will work fine with vshare, if not it will not work.
To add .3gp2 extension, edit
Edit include/settings/upload.php
FIND
Code:
$file_types = array("flv","3gp","mp4","mov","asf","mpg","avi","mpeg","wmv","rm","dat");
Add .3gp2 in the list like
Code:
$file_types = array("flv","3gp","mp4","mov","asf","mpg","avi","mpeg","wmv","rm","dat","3gp2");
EDIT include/settings/video_conversion.php
FIND
Code:
$convert_3gp = $cmd_all;
Add below
Code:
$convert_3gp2 = $cmd_all;
If you need a different command to convert 2gp2 video, you can add it like
Code:
$convert_3gp2 = "ADD COMMAND TO CONVER 3GP2 VIDEO TO FLV FORMAT HERE";
Bookmarks