fix typos

This commit is contained in:
jqueguiner
2021-01-13 13:50:07 +01:00
parent 54bc046071
commit 1d67f96172
+2 -2
View File
@@ -374,9 +374,9 @@ Calling the API for video processing for a remote video
curl -X POST "http://MY_SUPER_API_IP:5000/process" -H "accept: application/octet-stream" -H "Content-Type: application/json" -d "{\"url\":\"https://v.redd.it/d1ku57kvuf421/HLSPlaylist.m3u8\", \"render_factor\":35}" --output colorized_video.mp4
```
Calling the API for viedo processing for a local video
Calling the API for video processing for a local video
```console
curl -X POST "http://MY_SUPER_API_IP:5000/process" -H "accept: image/png" -H "Content-Type: video/mpeg" -F "file=@chaplin.mp4" -F "render_factor=35" --output colorized_video.mp4
curl -X POST "http://MY_SUPER_API_IP:5000/process" -H "accept: application/octet-stream" -H "Content-Type: video/mpeg" -F "file=@chaplin.mp4" -F "render_factor=35" --output colorized_video.mp4
```
> **Note:** If you don't have Nvidia Docker, [here](https://github.com/nvidia/nvidia-docker/wiki/Installation-(version-2.0)#installing-version-20) is the installation guide.