Hi everybody
I just installed Dolphin 7 yesterday and immediately realized that I have no sound, though video was uploaded successfully.
I was trying and researching for two days, and I think I finally found a workaround. I am not reallly an expert in video/audio processing, but I decided to make some tests and find out how it works. I uploaded several video files in various formats (mpg, avi, flv, mp4, mov) and none of them had sound.
After looking for ffmpeg commands in dolphin files, I found (may be it is not a big deal for you, but it was for me!) file functions.inc.php. located in /flash/modules/video/inc.
There is a function function getConverterTmpl, which i decided to alter.
I made two changes (I know, that this is not the best way of experimenting, but I did not have patience):
1. I diabled audio codec, and forced the program to copy original one
$sSound = $bRecorded ? " " : " -acodec copy "; instead of original
$sSound = $bRecorded ? " -ar 44100 " : " -acodec libmp3lame -ar 44100 ";
2. I disabled no audio option but I am not sure if did anything
Commented out
if(!$bSound) $sSound = " -an ";
I tested three different files, and conversion does not fail, and the sound is there!
Hope it will help somedy
Regards
Max