aboutsummaryrefslogtreecommitdiff
path: root/plugins/video_ffmpeg_helper/video_ffmpeg_helper.module
diff options
context:
space:
mode:
authorFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-12 19:54:41 +0000
committerFabio Varesano <fax8@13637.no-reply.drupal.org>2007-01-12 19:54:41 +0000
commit1cabdaa865adb6a03589908cedc00de9c93d7448 (patch)
tree5ab582e7f2e8a8cedd0a2e242549bc19968e74b3 /plugins/video_ffmpeg_helper/video_ffmpeg_helper.module
parentfdfc4d875d446dc6d1bce368bc30be03915e1695 (diff)
downloadvideo-1cabdaa865adb6a03589908cedc00de9c93d7448.tar.gz
video-1cabdaa865adb6a03589908cedc00de9c93d7448.tar.bz2
Some progress on video conversion. Now works! Just schedule video_render.php
to be executed every XX seconds... and your videos will be converted!!! Lot of work is still needed however.
Diffstat (limited to 'plugins/video_ffmpeg_helper/video_ffmpeg_helper.module')
-rw-r--r--plugins/video_ffmpeg_helper/video_ffmpeg_helper.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/video_ffmpeg_helper/video_ffmpeg_helper.module b/plugins/video_ffmpeg_helper/video_ffmpeg_helper.module
index 16db8f4..b765538 100644
--- a/plugins/video_ffmpeg_helper/video_ffmpeg_helper.module
+++ b/plugins/video_ffmpeg_helper/video_ffmpeg_helper.module
@@ -157,7 +157,7 @@ function video_ffmpeg_helper_admin_settings() {
'#type' => 'textfield',
'#title' => t('Video thumbnailer options'),
'#description' => t('Provide the ffmpeg options to configure the video conversion. Available argument values are: ').'<ol><li>'.t('%videofile (the video file to convert)').'<li>'.t('%convertfile (a newly created file to store the converted file)').'</ol>',
- '#default_value' => variable_get('video_ffmpeg_helper_auto_converter_options', '-y -i %videofile -f flv %convertfile'),
+ '#default_value' => variable_get('video_ffmpeg_helper_auto_converter_options', '-y -i %videofile -f flv -ar 22050 %convertfile'),
);
$form['autoconv']['video_ffmpeg_helper_auto_converter_busy_video_path'] = array(
'#type' => 'textfield',