Skip to content

[WIP] "Preparation" and "Writing the script" for Basics and Workflow #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
4fd66fb
Update descale Akanesasu Shoujo example
LightArrowsEXE Jul 1, 2019
10dcfee
Wrote the "preparation" and "writing the script" parts for the basics…
LightArrowsEXE Jul 1, 2019
d97372b
Add semantics linefeeds to basics and workflow
LightArrowsEXE Jul 1, 2019
7c96009
Update basics and workflow, upload assets
LightArrowsEXE Jul 2, 2019
8fe35e2
Update basics-and-workflow.md
LightArrowsEXE Jul 2, 2019
a57527a
Minor expansion and fixes to basics and workflow
LightArrowsEXE Jul 2, 2019
76f9d41
Update x264 related links
cshmnyfy Sep 29, 2019
f091c6a
Mention chroma shift when resizing subsampled video
Lypheo Oct 2, 2019
3625196
Remove "officially published" note
FichteFoll Oct 3, 2019
90728e9
Remove the top notice entirely
FichteFoll Oct 3, 2019
ce1e619
Write basics of H.264 encoding guide
shssoichiro Oct 5, 2019
262a859
Fix typos
shssoichiro Oct 5, 2019
6b6cd58
Add recap section
shssoichiro Oct 6, 2019
e25873a
Fix the name of Apple's proprietary operating system
shssoichiro Oct 7, 2019
06c55f5
Part 1 of PR fixes
shssoichiro Oct 7, 2019
947fac7
Split lines better
shssoichiro Oct 7, 2019
3b60e39
More PR fixes
shssoichiro Oct 7, 2019
71c5889
Fix weird copy paste mistake
shssoichiro Oct 7, 2019
e88ef98
Remove outdated x264 build info
shssoichiro Oct 8, 2019
0c2da86
Fix spacing before headers
OrangeChannel Oct 9, 2019
cc752bc
More PR fixes
shssoichiro Oct 10, 2019
c85bcc0
Write basics of x264 guide (#41)
FichteFoll Oct 10, 2019
669589a
CONTRIBUTING: update ordered list formatting
OrangeChannel Oct 10, 2019
66349bb
CSS: small fix for portrait screens
OrangeChannel Oct 10, 2019
78fee3d
Add gitbook plug-in "katex" for math rendering
OrangeChannel Oct 9, 2019
c23eee6
CSS: update KaTeX formatting
OrangeChannel Oct 11, 2019
628b201
x264: Change bitrate math to TeX based rendering
OrangeChannel Oct 10, 2019
3cfe498
masking-limiting-etc: change mask formulas to TeX
OrangeChannel Oct 10, 2019
44ca844
resampling: change bicubic, spline, chroma-shifting math to TeX
OrangeChannel Oct 10, 2019
c43f03d
CONTRIBUTING: explain KaTeX syntax usage
OrangeChannel Oct 10, 2019
9af616e
video-artifacts: change footnote to TeX
OrangeChannel Oct 10, 2019
83ccede
Fix unnecessary delimiters
OrangeChannel Oct 11, 2019
063303c
CONTRIBUTING: get rid of delimiter info
OrangeChannel Oct 11, 2019
56f785e
Use katex plugin to pre-render math (#42)
FichteFoll Oct 12, 2019
0821b6b
Update x264 related links once again
cshmnyfy Oct 18, 2019
bde20b0
Replace ADC with working tracker
cshmnyfy Oct 18, 2019
03f6667
Mention exclusive parameters for x264 t_mod (fix #45)
kageru Oct 19, 2019
c769596
Add download link for x264 t_mod
kageru Oct 19, 2019
b4ab07a
Fixes
OrangeChannel Oct 28, 2019
7badaa3
Fix bitrate calculation
OrangeChannel Oct 29, 2019
c968f40
Units should use singular
FichteFoll Oct 30, 2019
93b43b9
Remove doubled words
cshmnyfy Dec 13, 2019
f96f737
Replace (flagged) YouTube videos with streamable embeds
FichteFoll Feb 5, 2020
94d31da
Fix missing paranthesis
LightArrowsEXE Mar 2, 2020
001a5dc
Merge branch 'master' of https://github.com/LightArrowsEXE/guide.enco…
LightArrowsEXE Mar 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 36 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ Unordered list lines should be indented **once**,
while ordered lists are indented **twice**.
The text of an unordered item should have one space after the `-`,
while the text of an ordered item
should start four columns after the number.
should start on the fourth column
(start every line with the number 1).

```md
- This is an unordered list
Expand All @@ -221,11 +222,10 @@ should start four columns after the number.
```

```md
1. This is an ordered list.
Consecutive lines are indented with four spaces.
2. Another list item
1. This is an ordered list
1. Another list item
10. Now only one space after the item number.
1. Last entry of the list
```


Expand Down Expand Up @@ -362,10 +362,41 @@ and per-page unique number.
must all be written one line per footnote.
Line breaks **cannot** be used.


### Mathematics with TeX

This guide has KaTeX support,
so in-line or block mathematics can be rendered with TeX.
This obviously requires knowledge of TeX syntax and the supported functions
listed in the [KaTeX documentation][].
To start in-line formulas, the syntax is `$$...$$`.
Similarly, the block formulas' syntax is:

```md
$$
...
$$
```

Similar to \`\`\` fenced code blocks,
separate these blocks with one blank line on either side.

**Note:** both `{% math %}` and `{% endmath %}` templates
can be entirely replaced by two `$`'s,
so any math between \$\$ ... \$\$ will render with KaTeX[^3].
However, using "\$\$" within in-line \`code\` or blocks
will change these into the templates above
(making printing "\$\$" in code impossible).

[KaTeX documentation]: https://katex.org/docs/supported.html

---

[^1]: The new gitbook spec is very different than the version this book is using. Almost none of the information from [gitbook's new website][new-gitbook] applies.

[^2]: This is different from how github.com's markdown preview behaves.

[^3]: Please view the [markdown of this page][contrib-md] for an example of KaTeX math using `$` symbols.

[new-gitbook]: https://www.gitbook.com/
[contrib-md]: https://github.com/Irrational-Encoding-Wizardry/guide.encode.moe/edit/master/CONTRIBUTING.md
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# Fansubbing Guide

*This project is not officially published yet.
Please help by improving the articles
and filling in the TODO entries on various pages.*

This project aims to become a public guide
for aspiring as well as veteran fansubbers
that everyone can contribute to.
It is currently under construction
as many topics are still missing,
but will hopefully cover all important areas
and roles that go into the fansubbing process.
(*Please help by improving the pages
and filling in TODO entries.
More details are provided on the next page.*)

To start reading,
you can click on the arrow on the right
Expand Down
1 change: 1 addition & 0 deletions SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- [Descaling](encoding/descaling.md)
- [Resampling](encoding/resampling.md)
- [Codecs](encoding/video-encoding.md)
- [x264](encoding/codecs/x264.md)


## Typesetting
Expand Down
3 changes: 2 additions & 1 deletion book.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"code",
"edit-link",
"image-captions",
"term"
"term",
"katex"
],
"pluginsConfig": {
"edit-link": {
Expand Down
Binary file added encoding/audio/Fate_Zero_OP2_(original).wav
Binary file not shown.
Loading