Skip to content

Commit de99964

Browse files
authored
Fix markdown list in docstring (#4775)
Fix list in docstring Docstring of VideoStreamOptions in ffmpeg-util.jl
1 parent 1f8f242 commit de99964

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: src/ffmpeg-util.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
- For `webm`, `63` is the maximum.
2222
- `compression` has no effect on `mkv` and `gif` outputs.
2323
- `profile = "high422"`: A ffmpeg compatible profile. Currently only applies to `mp4`. If
24-
you have issues playing a video, try `profile = "high"` or `profile = "main"`.
24+
you have issues playing a video, try `profile = "high"` or `profile = "main"`.
2525
- `pixel_format = "yuv420p"`: A ffmpeg compatible pixel format (`-pix_fmt`). Currently only
26-
applies to `mp4`. Defaults to `yuv444p` for `profile = "high444"`.
26+
applies to `mp4`. Defaults to `yuv444p` for `profile = "high444"`.
2727
- `loop = 0`: Number of times the video is repeated, for a `gif` or `html` output. Defaults to `0`, which
28-
means infinite looping. A value of `-1` turns off looping, and a value of `n > 0`
29-
means `n` repetitions (i.e. the video is played `n+1` times) when supported by backend.
28+
means infinite looping. A value of `-1` turns off looping, and a value of `n > 0`
29+
means `n` repetitions (i.e. the video is played `n+1` times) when supported by backend.
3030
3131
!!! warning
3232
`profile` and `pixel_format` are only used when `format` is `"mp4"`; a warning will be issued if `format`

0 commit comments

Comments
 (0)