File: filesave.js

package info (click to toggle)
freej 0.10git20100110-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 32,080 kB
  • ctags: 22,705
  • sloc: cpp: 156,254; ansic: 25,531; sh: 13,538; perl: 4,624; makefile: 3,278; python: 2,889; objc: 1,284; asm: 1,125; ruby: 126
file content (31 lines) | stat: -rw-r--r-- 795 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/// simple example script for saving to a file
/// do any action above here and then include the code below 



// you should connect the input manually using jack

// create a video encoder object
//    values 1-100         video quality  video bitrate  audio quality  audio_bitrate
encoder = new VideoEncoder(10,             120000,        5,             24000);

// create a jack audio input
have_audio = true;
try {
    //                     port name    buffer size  samlerate
    audio = new AudioJack("alsaplayer", 2048,        44100);
}

catch(e) {
	echo("audio not present: " + e);
	have_audio = false;
}

if(have_audio) {
    // add the audio channel in the video encoded
    encoder.add_audio(audio);
}


register_encoder(encoder);
encoder.start_filesave('/Users/xant/capture.ogg');