mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-10-14 09:49:56 +02:00
Compare commits
51 Commits
v2018-04-0
...
v2018-09-0
Author | SHA1 | Date | |
---|---|---|---|
|
d6ab2d63bb | ||
|
c3ff180189 | ||
|
ac22e3e361 | ||
|
963e0591e5 | ||
|
1bf462820e | ||
|
98fe0c5b67 | ||
|
8ee96228bc | ||
|
738ceabfe6 | ||
|
52dd44778f | ||
|
2f7b390f9b | ||
|
d5e13458eb | ||
|
493489517f | ||
|
71ae32541f | ||
|
e7b18b8fd4 | ||
|
dde92c2b4e | ||
|
05eb182352 | ||
|
c9660d3c7b | ||
|
7398b7f25e | ||
|
a6bb255817 | ||
|
67b34592e4 | ||
|
04037bda1e | ||
|
dc633dfa8d | ||
|
1b890fd630 | ||
|
0d12f57720 | ||
|
0e2e90e72b | ||
|
6e9d9c9a29 | ||
|
8810d40523 | ||
|
1ebea5cf19 | ||
|
ec3829d1b6 | ||
|
468b7b3a09 | ||
|
7ecd3214d5 | ||
|
50166200b9 | ||
|
f2ec08fd59 | ||
|
32004553a6 | ||
|
a67b7cc879 | ||
|
b9da657b19 | ||
|
91e929dab4 | ||
|
21e5561dc9 | ||
|
36deb1ea62 | ||
|
89139311f4 | ||
|
fb6581a50e | ||
|
5bdd6f8d8a | ||
|
3b7ce0e79f | ||
|
b9b7e0fef9 | ||
|
95e90bb26b | ||
|
d70a1de6e1 | ||
|
8417883004 | ||
|
937b9ae525 | ||
|
d46138a81b | ||
|
e6317731c9 | ||
|
0849bd29e4 |
@@ -43,8 +43,8 @@ incident.
|
|||||||
|
|
||||||
|
|
||||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
||||||
version 1.3.0, available at
|
version 1.4.1, available at
|
||||||
[http://contributor-covenant.org/version/1/3/0/][version]
|
[https://www.contributor-covenant.org/version/1/4/code-of-conduct.html][version]
|
||||||
|
|
||||||
[homepage]: http://contributor-covenant.org
|
[homepage]: https://www.contributor-covenant.org/
|
||||||
[version]: http://contributor-covenant.org/version/1/3/0/
|
[version]: https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
html, body {
|
html, body {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-size: 16px;
|
font-size: 18px;
|
||||||
|
font-family: sans-serif;
|
||||||
color: #888888;
|
color: #888888;
|
||||||
background-color: #060606;
|
background-color: #060606;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -88,9 +89,6 @@ a:visited {
|
|||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
font-family: 'Montserrat', sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
letter-spacing: 0.1em;
|
letter-spacing: 0.1em;
|
||||||
@@ -116,7 +114,6 @@ h4 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.intro-lead {
|
.intro-lead {
|
||||||
font-family: 'Montserrat', sans-serif;
|
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,7 +162,6 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div {
|
div {
|
||||||
font-family: 'Merriweather', serif;
|
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,7 +173,6 @@ div {
|
|||||||
color: white;
|
color: white;
|
||||||
background-color: #383838;
|
background-color: #383838;
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
font-family: "Montserrat";
|
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
949
index.html
949
index.html
File diff suppressed because it is too large
Load Diff
6
js/js.js
6
js/js.js
@@ -18,4 +18,10 @@ $(document).ready(function() {
|
|||||||
$('#' + id).closest('div').find('.link').append("<small>Link to this command: <a href='https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"'>https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"</a></small>");
|
$('#' + id).closest('div').find('.link').append("<small>Link to this command: <a href='https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"'>https://amiaopensource.github.io/ffmprovisr/index.html"+window.location.hash+"</a></small>");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#open-all').on("click", function(){
|
||||||
|
$('input[type=checkbox]').each(function(){
|
||||||
|
this.checked = !this.checked;
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
27
readme.md
27
readme.md
@@ -44,15 +44,18 @@ You can read our contributor code of conduct [here](https://github.com/amiaopens
|
|||||||
|
|
||||||
## Maintainers
|
## Maintainers
|
||||||
|
|
||||||
[Ashley Blewer](https://github.com/ablwr), [Katherine Frances Nagels](https://github.com/kfrn), [Kieran O'Leary](https://github.com/kieranjol), [Reto Kromer](https://github.com/retokromer) and [Andrew Weaver](https://github.com/privatezero)
|
[Ashley Blewer](https://github.com/ablwr), [Katherine Frances Nagels](https://github.com/kfrn), [Kieran O'Leary](https://github.com/kieranjol) and [Andrew Weaver](https://github.com/privatezero)
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
* Gathered using [octohatrack](https://github.com/LABHR/octohatrack)
|
* Gathered using [octohatrack](https://github.com/LABHR/octohatrack)
|
||||||
|
|
||||||
*GitHub Contributors*:
|
*Code Contributors*:
|
||||||
ablwr (Ashley)
|
ablwr (Ashley)
|
||||||
|
bastibeckr (Basti Becker)
|
||||||
|
bturkus
|
||||||
dericed (Dave Rice)
|
dericed (Dave Rice)
|
||||||
edsu (Ed Summers)
|
edsu (Ed Summers)
|
||||||
|
jamessam (Jim Sam)
|
||||||
jfarbowitz (Jonathan Farbowitz)
|
jfarbowitz (Jonathan Farbowitz)
|
||||||
kfrn (Katherine Frances Nagels)
|
kfrn (Katherine Frances Nagels)
|
||||||
kgrons (Kathryn Gronsbell)
|
kgrons (Kathryn Gronsbell)
|
||||||
@@ -62,17 +65,23 @@ pjotrek-b (Peter B.)
|
|||||||
privatezero (Andrew Weaver)
|
privatezero (Andrew Weaver)
|
||||||
retokromer (Reto Kromer)
|
retokromer (Reto Kromer)
|
||||||
rfraimow
|
rfraimow
|
||||||
|
|
||||||
*All Contributors*:
|
*All Contributors*:
|
||||||
ablwr (Ashley)
|
ablwr (Ashley)
|
||||||
audiovisualopen
|
audiovisualopen
|
||||||
|
bastibeckr (Basti Becker)
|
||||||
brainwane (Sumana Harihareswara)
|
brainwane (Sumana Harihareswara)
|
||||||
bturkus
|
bturkus
|
||||||
dericed (Dave Rice)
|
dericed (Dave Rice)
|
||||||
|
drodz11 (Dave Rodriguez)
|
||||||
edsu (Ed Summers)
|
edsu (Ed Summers)
|
||||||
|
EG-tech (Ethan Gates)
|
||||||
|
federicomenaquintero (Federico Mena Quintero)
|
||||||
Fizz24
|
Fizz24
|
||||||
|
GregH18
|
||||||
jamessam (Jim Sam)
|
jamessam (Jim Sam)
|
||||||
jfarbowitz (Jonathan Farbowitz)
|
jfarbowitz (Jonathan Farbowitz)
|
||||||
|
JonnyTech
|
||||||
jronallo (Jason Ronallo)
|
jronallo (Jason Ronallo)
|
||||||
kellyhaydon (metacynic)
|
kellyhaydon (metacynic)
|
||||||
kfrn (Katherine Frances Nagels)
|
kfrn (Katherine Frances Nagels)
|
||||||
@@ -80,16 +89,19 @@ kgrons (Kathryn Gronsbell)
|
|||||||
kieranjol (Kieran O'Leary)
|
kieranjol (Kieran O'Leary)
|
||||||
llogan (Lou)
|
llogan (Lou)
|
||||||
mulvya
|
mulvya
|
||||||
|
nkrabben (Nick Krabbenhoeft)
|
||||||
pjotrek-b (Peter B.)
|
pjotrek-b (Peter B.)
|
||||||
privatezero (Andrew Weaver)
|
privatezero (Andrew Weaver)
|
||||||
retokromer (Reto Kromer)
|
retokromer (Reto Kromer)
|
||||||
rfraimow
|
rfraimow
|
||||||
richardpl (Paul B Mahol)
|
richardpl (Paul B Mahol)
|
||||||
|
ross-spencer (Ross Spencer)
|
||||||
todrobbins (Tod Robbins)
|
todrobbins (Tod Robbins)
|
||||||
|
|
||||||
Repo: amiaopensource/ffmprovisr
|
Repo: amiaopensource/ffmprovisr
|
||||||
GitHub Contributors: 12
|
Code Contributors: 15
|
||||||
All Contributors: 22
|
All Contributors: 30
|
||||||
|
Last updated: 2018-04-22 (4:2:2 Day)
|
||||||
|
|
||||||
## AVHack Team
|
## AVHack Team
|
||||||
|
|
||||||
@@ -99,6 +111,7 @@ All Contributors: 22
|
|||||||
|
|
||||||
## Sister projects
|
## Sister projects
|
||||||
|
|
||||||
|
[The Cable Bible](https://amiaopensource.github.io/cable-bible/): A Guide to Cables and Connectors Used for Audiovisual Tech
|
||||||
[Script Ahoy](http://dd388.github.io/crals/): Community Resource for Archivists and Librarians Scripting
|
[Script Ahoy](http://dd388.github.io/crals/): Community Resource for Archivists and Librarians Scripting
|
||||||
[sourcecaster](https://datapraxis.github.io/sourcecaster/): helps you use the command line to work through common challenges that come up when working with digital primary sources.
|
[sourcecaster](https://datapraxis.github.io/sourcecaster/): helps you use the command line to work through common challenges that come up when working with digital primary sources.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user