Commit 87bdcf9 1 parent 4fbff4d commit 87bdcf9 Copy full SHA for 87bdcf9
File tree 3 files changed +16
-4
lines changed
3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,9 @@ layout: default
84
84
85
85
.exist
86
86
87
+ expect(-> ...)
88
+ .throw /not a function/
89
+
87
90
### Chai-jQuery
88
91
89
92
global.jQuery = ...;
Original file line number Diff line number Diff line change @@ -24,12 +24,20 @@ layout: default
24
24
-ac 1 # audio channels (1=mono, 2=stereo)
25
25
-an # no audio
26
26
-vol N # volume (256=normal)
27
-
27
+
28
+ -acodec
29
+ -vcodec
30
+
28
31
### Ringtone conversion using ffmpeg
29
32
30
33
ffmpeg -i foo.mp3 -ac 1 -ab 128000 -f mp4 -acodec libfaac -y target.m4r
31
34
32
- ### To webm
35
+ ### To web
33
36
34
- ffmpeg -i input.mp4 -vcodec libvpx -acoder libvorbis output.webm
37
+ ffmpeg -i input.mov -vcodec h264 -acodec aac -strict -2 output.mp4
38
+ ffmpeg -i input.mov -vcodec libvpx -acodec libvorbis output.webm
35
39
40
+ <video width="320" height="240" controls>
41
+ <source src="movie.mp4"></source>
42
+ <source src="movie.webm"></source>
43
+ </video>
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ Set up the `coverage` task so you can do `npm run coverage` later.
16
16
### test/setup.js
17
17
18
18
Instead of requiring ` YOURFILE.js ` , use ` -cov.js ` when it's necessary. It's
19
- preferred to do this in the test files (rather than the main entry points).
19
+ preferred to do this in the test files (rather than the main entry points) so
20
+ not to mess with browserify.
20
21
21
22
var cov = (!! process.env.COVERAGE);
22
23
global.Mylib = require(cov ? 'mylib' : 'mylib-cov');
You can’t perform that action at this time.
0 commit comments