File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,23 +4,23 @@ const Promise = require('bluebird');
44const Bitmovin = require ( 'bitmovin-javascript' ) . default ;
55
66
7- const BITMOVIN_API_KEY = '' ;
7+ const BITMOVIN_API_KEY = '<INSERT_YOUR_API_KEY> ' ;
88const bitmovin = new Bitmovin ( { apiKey : BITMOVIN_API_KEY , debug : true } ) ;
99
1010const ENCODING_NAME = 'TEST_ENCODING_' + new Date ( ) . toISOString ( ) ;
1111
12- const INPUT_S3_ACCESS_KEY = '' ;
13- const INPUT_S3_SECRET_KEY = '' ;
14- const INPUT_S3_BUCKET_NAME = '' ;
12+ const INPUT_S3_ACCESS_KEY = '<YOUR_S3_ACCESS_KEY> ' ;
13+ const INPUT_S3_SECRET_KEY = '<YOUR_S3_SECRET_KEY> ' ;
14+ const INPUT_S3_BUCKET_NAME = '<YOUR_S3_BUCKET> ' ;
1515const INPUT_S3_PATH = '/path/to/your/input/file.mp4' ;
1616
17- const OUTPUT_S3_ACCESS_KEY = '' ;
18- const OUTPUT_S3_SECRET_KEY = '' ;
19- const OUTPUT_S3_BUCKET_NAME = '' ;
17+ const OUTPUT_S3_ACCESS_KEY = '<YOUR_S3_ACCESS_KEY> ' ;
18+ const OUTPUT_S3_SECRET_KEY = '<YOUR_S3_SECRET_KEY> ' ;
19+ const OUTPUT_S3_BUCKET_NAME = '<YOUR_S3_BUCKET> ' ;
2020const OUTPUT_S3_BASE_PATH = '/path/to/your/output/destination' ;
2121
22- const DRM_AES_KEY = '' ;
23- const DRM_AES_IV = '' ;
22+ const DRM_AES_KEY = '<YOUR_AES_KEY> ' ;
23+ const DRM_AES_IV = '<YOUR_AES_IV> ' ;
2424
2525
2626const main = ( ) => {
You can’t perform that action at this time.
0 commit comments