1 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
4 * Content ingestion configuration; CIS interoperability configuration.
6 * Content ingestion is provided by a CIS (Content Ingestion Server).
7 * Communication is provided through web services directly or in a transparent
8 * manner through a CIS-LB (CIS - Load Balancer).
12 |--------------------------------------------------------------------------
14 |--------------------------------------------------------------------------
16 | CIS web service URL (ended with '/'). For example:
18 | http://cis.org:31500/
21 $config['cis_url'] = 'http://p2p-next-03.grid.pub.ro:31500/';
24 |--------------------------------------------------------------------------
26 |--------------------------------------------------------------------------
28 | Formats available for the ingested video. You need to provide an array
29 | of dictionaries as in the following example:
31 | $config['formats'] = array(
35 | 'audio_codec'=>'vorbis',
36 | 'audio_bit_rate'=>'128k',
37 | 'audio_sampling_rate'=>44100,
38 | 'audio_channels'=>2,
39 | 'video_codec'=>'theora',
40 | 'video_bit_rate'=>'768k',
41 | 'video_frame_rate'=>25,
46 | For a list of available containers and audio / video codecs see CIS
47 | documentation. The video_height parameter is a desired height resolution.
48 | It may be lower if the uploaded video has a lower resolution.
52 $config['formats'] = array(
56 'audio_codec'=>'vorbis',
57 'audio_bit_rate'=>'128k',
58 'audio_sampling_rate'=>44100,
60 'video_codec'=>'theora',
61 'video_bit_rate'=>'768k',
62 'video_frame_rate'=>25,
68 'audio_codec'=>'vorbis',
69 'audio_bit_rate'=>'192k',
70 'audio_sampling_rate'=>44100,
72 'video_codec'=>'theora',
73 'video_bit_rate'=>'1536k',
74 'video_frame_rate'=>25,
80 |--------------------------------------------------------------------------
81 | Thumnail images count
82 |--------------------------------------------------------------------------
84 | Number of thumbnail images for a video asset.
87 $config['thumbs_count'] = 4;
90 |--------------------------------------------------------------------------
91 | Eliminate Duplicate Resolutions
92 |--------------------------------------------------------------------------
94 | Eliminate consecutive formats with the same resolution after processing
98 $config['elim_dupl_res'] = TRUE;