Collections functions
General functions
Render functions
Theme permission functions
User functions
Resource functions

get_video_info()

Parameters

ColumnTypeDefaultDescription
$file

Location

include/resource_functions.php lines 6776 to 6782

Definition

 
function get_video_info($file)
    {
    
$ffprobe_fullpath get_utility_path("ffprobe");
    
$ffprobe_output=run_command($ffprobe_fullpath " -v 0 " escapeshellarg($file) . " -show_streams -of json");
    
$ffprobe_array=json_decode($ffprobe_outputtrue);
    return (
$ffprobe_array);
    }

This article was last updated 7th December 2023 19:35 Europe/London time based on the source file dated 30th November 2023 17:05 Europe/London time.