FAQ: How do I increase the maximum size of files that can be uploaded to my website?
You need to adjust your php.ini settings as follows (for 100 MB):
upload_max_filesize 100M
post_max_size 200M
For more information, check out this page.
You need to adjust your php.ini settings as follows (for 100 MB):
upload_max_filesize 100M
post_max_size 200M
For more information, check out this page.
Hi,
Thank you for your module. I downloaded it and after modifying a few "require '') stuff (wasn't friendly on my setup) within some of the op_video module files I finally got it to work. But, on an avi upload from my digital camera, there is no sound. I have not tried any other video. We are using our own ffmpeg stuff. Does something else on the server need to be installed to get the audio working? Thanks.
What require() stuff did you need to modify?
You need to get the latest version of ffmpeg from http://ffmpeg.mplayerhq.hu/ and compile it with all codecs. Alternatively you can use the transcoder at openpackage.biz.
Jonny
Thank you for answering quickly.
The require stuff I changed from
require ('xyz')
to
include(drupal_get_path('module', 'op_video') . '/xyz');
I will see if the server admin can download the new version and recompile it.
I am curious, on a 30mb file the cron job ran for about 2.5 minutes. Have you seen any benchmarks on how much resources your module uses (or the ffmpeg for that matter) on multiple file conversions? We are on a vps and I fear the worst once the site goes live.
Thanks
Cool - the improved include robustness will be in the next version.
Your transcoding duration is typical. You can always outsource transcoding to us if it gets too much.
Yes, I like this option. Although, the use of your module is not for myself, but another company. Which, might end up using this service if it is cheaper than going dedicated.
I do have some other suggestions for your module. Should I email them?
Thanks
Great! The best thing to do is make a posting in the support forum, so others can comment.
Hi again,
I wanted to see if you can tell me what codecs you have installed? I looked at your info.php file and it seems you must be running ffmpeg stuff on another server. Supposedly the server admin did a recompiliation with all codecs but the sound is still not working. Is it possible the op_video settings on stereo should be on mono?
My info.php file mentions this only about ffmpeg:
ffmpeg support (ffmpeg-php) enabled
ffmpeg-php version 0.5.1
libavcodec version Lavc51.40.4
libavformat version Lavf51.12.1
Directive Local Value Master Value
ffmpeg.allow_persistent 0 0
Thanks for your help.
OpenPackage Video does not use ffmpeg-php, it uses the standalone ffmpeg program. A correctly configured ffmpeg will work on both mono and stereo.
I found the problem. There were multiple installs of ffmpeg and the openpackage module was reading from the wrong install. All is well now. Very beautiful package. But, I could not get the newest version, 2.1?, to work.
After going through your files, I did see that the code is not up to drupal strandard. You have time to do that but for this module to be appreciated for what it is worth, it needs to be listed on drupal. Which, I know they can be strict if the code is not up to their standard. If I was a coder I would join your efforts but I am not. Sorry...
Keep up the good work.
Post new comment