You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/decoding/performance_tips.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -111,11 +111,11 @@
111
111
# 3. Multi-threading for Parallel Decoding
112
112
# -----------------------------------------
113
113
#
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:
115
115
#
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
0 commit comments