Skip to content

Fixed 2 ' and and ' typos #1806

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 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions content/lessons/ffmpeg-useful-techniques/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The `scale` filter resizes the video to a width of 320 pixels, while maintaining

The `split` filter splits the video stream into two branches, one to generate the palette and the other to apply it.

The [palettegen](https://ffmpeg.org/ffmpeg-filters.html#palettegen-1) filter creates a color palette based on the input video and and outputs the palette as a video stream, which is passed to the paletteuse filter along with the original video stream.
The [palettegen](https://ffmpeg.org/ffmpeg-filters.html#palettegen-1) filter creates a color palette based on the input video and outputs the palette as a video stream, which is passed to the paletteuse filter along with the original video stream.

Additional ideas for Gif optimization are discussed here by [Giphy Engineering](https://engineering.giphy.com/how-to-make-gifs-with-ffmpeg/).

Expand Down Expand Up @@ -97,4 +97,4 @@ exports.convertVideo = functions.https.onRequest((req, res) => {
})
.run();
});
```
```
2 changes: 1 addition & 1 deletion content/lessons/react-firebase-chat-app-tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The following tutorial demonstrates how to build a simple group chat app with Re

### Firebase Project

Create a free [Firebase](https://firebase.google.com/) project. Make sure to enable Google SignIn and and activate Cloud Firestore.
Create a free [Firebase](https://firebase.google.com/) project. Make sure to enable Google SignIn and activate Cloud Firestore.

### Create a React App

Expand Down