Increase video resolution without embedding

Increase video resolution without embedding

by Carlos Zurera Andrés -
Number of replies: 0

Hi guys!!

I need to increase the default video resolution in my platform but I don't know how to do it without a video embed. I have to use personal videos so it is not possible to upload in youtube or other platforms. I modified the following lines in /lib/medialib.php:


if (!defined('CORE_MEDIA_VIDEO_WIDTH')) {
    // Default video width if no width is specified; some players may do something
    // more intelligent such as use real video width.
    // May be defined in config.php if required.
    define('CORE_MEDIA_VIDEO_WIDTH', 600);
}
if (!defined('CORE_MEDIA_VIDEO_HEIGHT')) {
    // Default video height. May be defined in config.php if required.
    define('CORE_MEDIA_VIDEO_HEIGHT', 400);


but the video still in the same resolution, only changes the size of the frame, increasing with black.


Any suggest?


Thanks a lot!

Average of ratings: -