'ogg', | 'extension'=>'ogv', | 'audio_codec'=>'vorbis', | 'audio_bit_rate'=>'128k', | 'audio_sampling_rate'=>44100, | 'audio_channels'=>2, | 'video_codec'=>'theora', | 'video_bit_rate'=>'768k', | 'video_frame_rate'=>25, | 'video_height'=>600 | ) | ); | | For a list of available containers and audio / video codecs see CIS | documentation. The video_height parameter is a desired height resolution. | It may be lower if the uploaded video has a lower resolution. | */ // $config['formats'] = array( array( 'container'=>'ogg', 'extension'=>'ogv', 'audio_codec'=>'vorbis', 'audio_bit_rate'=>'128k', 'audio_sampling_rate'=>44100, 'audio_channels'=>2, 'video_codec'=>'theora', 'video_bit_rate'=>'768k', 'video_frame_rate'=>25, 'video_height'=>600 ), array( 'container'=>'ogg', 'extension'=>'ogv', 'audio_codec'=>'vorbis', 'audio_bit_rate'=>'192k', 'audio_sampling_rate'=>44100, 'audio_channels'=>2, 'video_codec'=>'theora', 'video_bit_rate'=>'1536k', 'video_frame_rate'=>25, 'video_height'=>1080 ) ); /* |-------------------------------------------------------------------------- | Thumnail images count |-------------------------------------------------------------------------- | | Number of thumbnail images for a video asset. | */ $config['thumbs_count'] = 4; /* |-------------------------------------------------------------------------- | Eliminate Duplicate Resolutions (DISABLED) |-------------------------------------------------------------------------- | | Eliminate consecutive formats with the same resolution after processing | them. | | THIS FEATURE HAS BEEN DISABLED BECAUSE IS CAUSES THE CREATION OF A | MALFORMED CONTENT INGESTION JSON. | */ $config['elim_dupl_res'] = TRUE;