Skip to content

Commit 5693776

Browse files
author
Molly Xu
committed
modify format
1 parent 304fdf9 commit 5693776

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/decoding/performance_tips.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@
111111
# 3. Multi-threading for Parallel Decoding
112112
# -----------------------------------------
113113
#
114-
# For video decoding of a large number of frames from a single video, there are a few parallelization strategies to speed up the decoding process:
114+
# When decoding multiple videos or decoding a large number of frames from a single video, there are a few parallelization strategies to speed up the decoding process:
115115
#
116-
# - FFmpeg-based parallelism: Using FFmpeg's internal threading capabilities
117-
# - Multiprocessing: Distributing work across multiple processes
118-
# - Multithreading: Using multiple threads within a single process
116+
# - **FFmpeg-based parallelism** - Using FFmpeg's internal threading capabilities
117+
# - **Multiprocessing** - Distributing work across multiple processes
118+
# - **Multithreading** - Using multiple threads within a single process
119119

120120
# %%
121121
# .. note::

0 commit comments

Comments
 (0)