aboutsummaryrefslogtreecommitdiff
path: root/transcoders/video_phpvideotoolkit.inc
diff options
context:
space:
mode:
Diffstat (limited to 'transcoders/video_phpvideotoolkit.inc')
-rw-r--r--transcoders/video_phpvideotoolkit.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/transcoders/video_phpvideotoolkit.inc b/transcoders/video_phpvideotoolkit.inc
index b4bc96e..5306fed 100644
--- a/transcoders/video_phpvideotoolkit.inc
+++ b/transcoders/video_phpvideotoolkit.inc
@@ -166,7 +166,7 @@ class video_phpvideotoolkit implements transcoder_interface {
&& variable_get('video_use_preset_wxh', FALSE)) {
$video->dimensions = $settings['width'] . 'x' . $settings['height'];
}
- $converted_filename = file_munge_filename(str_replace(' ', '_', pathinfo($original_video_path, PATHINFO_FILENAME)) . '.' . $settings['video_extension'], $settings['video_extension']);
+ $converted_filename = file_munge_filename(str_replace(' ', '_', pathinfo($original_video_path, PATHINFO_FILENAME)) . '_' . strtolower($name) . '.' . $settings['video_extension'], $settings['video_extension']);
$converted = $converted_base_dir . '/' . $converted_filename;
//get the actual video file path from the stream wrappers
$converted_video_path = drupal_realpath($converted);