Skip to content

Commit 87bdcf9

Browse files
committed
.
1 parent 4fbff4d commit 87bdcf9

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

chai.md

+3
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ layout: default
8484

8585
.exist
8686

87+
expect(-> ...)
88+
.throw /not a function/
89+
8790
### Chai-jQuery
8891

8992
global.jQuery = ...;

ffmpeg.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,20 @@ layout: default
2424
-ac 1 # audio channels (1=mono, 2=stereo)
2525
-an # no audio
2626
-vol N # volume (256=normal)
27-
27+
28+
-acodec
29+
-vcodec
30+
2831
### Ringtone conversion using ffmpeg
2932

3033
ffmpeg -i foo.mp3 -ac 1 -ab 128000 -f mp4 -acodec libfaac -y target.m4r
3134

32-
### To webm
35+
### To web
3336

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
3539

40+
<video width="320" height="240" controls>
41+
<source src="movie.mp4"></source>
42+
<source src="movie.webm"></source>
43+
</video>

jscoverage.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ Set up the `coverage` task so you can do `npm run coverage` later.
1616
### test/setup.js
1717

1818
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.
2021

2122
var cov = (!! process.env.COVERAGE);
2223
global.Mylib = require(cov ? 'mylib' : 'mylib-cov');

0 commit comments

Comments
 (0)