Subtitle Timing Calculator
Calculate subtitle display duration from word count and reading speed. Enter values for instant results with step-by-step formulas.
Calculator
Adjust values & calculateCPS Guidelines
Formula
The display duration is calculated by dividing the number of words by the target reading speed in words per minute, then multiplying by 60 to convert to seconds. The result is clamped between minimum and maximum duration limits. Characters per second (CPS) is then calculated as total characters divided by the display duration.
Last reviewed: December 2025
Worked Examples
Example 1: Standard Dialogue Subtitle Timing
Example 2: Children's Content Subtitle
Background & Theory
The Subtitle Timing Calculator applies the following established principles and formulas. Computers represent all information using binary, a base-2 number system consisting solely of the digits 0 and 1, each called a bit. Because long binary strings are unwieldy, programmers routinely use octal (base 8) and hexadecimal (base 16) as compact shorthand. Converting between bases follows a consistent algorithm: divide the source number repeatedly by the target base, collecting remainders in reverse order. Hexadecimal digits A through F represent the values 10 through 15, allowing a single character to encode four binary bits, making it the preferred notation for memory addresses, color codes, and bytecode. Bitwise operations manipulate individual bits within integers. AND produces a 1 only when both input bits are 1, making it useful for masking. OR produces a 1 when either bit is 1 and is used for combining flags. XOR flips bits that differ, enabling simple toggle logic and efficient swap algorithms. NOT inverts every bit (one's complement), while left and right shifts multiply or divide by powers of two in constant time. Data storage units ascend in binary multiples of 1024: 8 bits form one byte, 1024 bytes form one kibibyte (KiB), 1024 KiB form one mebibyte (MiB), and so forth. Hard-drive manufacturers historically use decimal prefixes (1 KB = 1000 bytes), creating the persistent confusion between binary and decimal interpretations of the same label. The IEC standardized the binary prefixes KiB, MiB, GiB, and TiB in 1998 to resolve this ambiguity. Network bandwidth is measured in bits per second (bps), most commonly megabits per second (Mbps) or gigabits per second (Gbps). A 100 Mbps connection transfers 100 million bits every second, equating to roughly 12.5 megabytes per second. IP subnet masks define network boundaries; CIDR notation appends a prefix length (e.g., /24) to an address, indicating how many leading bits are fixed. A /24 subnet contains 256 addresses with 254 usable hosts. Algorithm efficiency is described using Big-O notation, which characterises the worst-case growth of time or space relative to input size. O(1) is constant, O(log n) is logarithmic (binary search), O(n) is linear, and O(nยฒ) is quadratic. Cryptographic hash functions like SHA-256 produce a fixed 256-bit (32-byte) digest regardless of input length. File compression algorithms exploit statistical redundancy to reduce storage footprint, and compression ratio equals the original file size divided by the compressed size.
History
The history behind the Subtitle Timing Calculator traces back through the following developments. The conceptual foundation of modern computing traces back to Charles Babbage, whose Analytical Engine design of 1837 introduced the idea of a general-purpose mechanical computer with separate storage and processing units, including what he called the Store and the Mill. Ada Lovelace wrote what many consider the first algorithm intended for machine execution while annotating a translation of Luigi Menabrea's account of Babbage's work, also recognising the machine's potential to manipulate symbols beyond mere numbers. George Boole published "The Laws of Thought" in 1854, formalising a two-valued algebra of logic that would later map perfectly to electrical circuits. It remained largely a mathematical curiosity until Claude Shannon's landmark 1937 master's thesis demonstrated that Boolean algebra could describe switching circuits, laying the theoretical groundwork for all digital electronics. Shannon's 1948 paper "A Mathematical Theory of Communication" defined the bit as the fundamental unit of information and established information theory as a rigorous discipline. The same year, the transistor was invented at Bell Labs by Bardeen, Brattain, and Shockley, eventually replacing vacuum tubes and enabling miniaturisation at scale. ENIAC, completed in 1945, was one of the first general-purpose electronic computers, occupying 1800 square feet and consuming 150 kilowatts of power while performing roughly 5000 additions per second. The ASCII standard was ratified in 1963, assigning 7-bit codes to 128 characters and enabling interoperability between computers from different manufacturers. Through the 1970s, the microprocessor consolidated an entire CPU onto a single chip; Intel's 4004 in 1971 marked the beginning of this trend. The Apple II launched in 1977 and the IBM PC in 1981 brought computing to homes and offices, triggering a mass-market software industry. Tim Berners-Lee proposed the World Wide Web in 1989 and launched the first website in 1991 at CERN, transforming the internet from an academic and military network into a global information infrastructure. Mobile computing accelerated through the 2000s with smartphones integrating powerful processors, wireless networking, and GPS into pocket-sized devices, extending computation into every facet of daily life and cementing TCP/IP as the universal communications fabric.
Frequently Asked Questions
Formula
Duration (s) = (Word Count / WPM) x 60
The display duration is calculated by dividing the number of words by the target reading speed in words per minute, then multiplying by 60 to convert to seconds. The result is clamped between minimum and maximum duration limits. Characters per second (CPS) is then calculated as total characters divided by the display duration.
Worked Examples
Example 1: Standard Dialogue Subtitle Timing
Problem: Calculate the display duration for a subtitle containing: 'I have been waiting for this moment my entire life, and I am not going to let it pass me by.' at 180 WPM reading speed.
Solution: Word count: 19 words\nCharacter count: 87 characters (with spaces)\nReading time = (19 / 180) x 60 = 6.33 seconds\nCPS = 87 / 6.33 = 13.7 characters per second\n\nCheck constraints:\nMinimum duration (1.0s): 6.33s > 1.0s - OK\nMaximum duration (7.0s): 6.33s < 7.0s - OK\nCharacters per line at 42 CPL: needs 3 lines\nSplit into 2 subtitle events recommended.
Result: Duration: 6.33s | CPS: 13.7 (Easy) | Needs splitting into 2 events (87 chars > 84 max for 2 lines)
Example 2: Children's Content Subtitle
Problem: A children's show subtitle reads: 'Look at the big red balloon!' Calculate timing at a child-appropriate reading speed of 130 WPM.
Solution: Word count: 6 words\nCharacter count: 27 characters\nReading time = (6 / 130) x 60 = 2.77 seconds\nCPS = 27 / 2.77 = 9.7 characters per second\n\nCheck constraints:\nMinimum duration (1.0s): 2.77s > 1.0s - OK\nMaximum duration (7.0s): 2.77s < 7.0s - OK\nLine length: 27 < 42 CPL - fits on 1 line\nCPS 9.7 < 13 (Netflix children standard) - appropriate
Result: Duration: 2.77s | CPS: 9.7 (Easy/child-appropriate) | Fits single line | Well within guidelines
Frequently Asked Questions
How is subtitle display duration calculated from text length?
Subtitle display duration is calculated based on the number of words or characters in the subtitle text and the target reading speed. The most common approach divides the word count by the target words-per-minute rate and multiplies by 60 to get seconds. For example, a 12-word subtitle at 200 WPM reading speed needs 12/200 x 60 = 3.6 seconds. An alternative method uses characters per second (CPS), where the total character count is divided by the target CPS rate. Netflix uses 17 CPS as their standard for adult content and 13 CPS for content aimed at children. The duration is then clamped between a minimum (typically 1 second) and maximum (typically 7 seconds) to ensure subtitles are neither too brief to register nor too long on screen.
How many lines should a subtitle have at maximum?
The universal standard is a maximum of two lines per subtitle event. This is enforced by virtually all broadcasting standards, streaming platforms, and film distribution specifications. Two-line subtitles provide enough space for meaningful phrases while keeping the bottom portion of the screen obstruction to a minimum. When text exceeds two lines, it must be split into multiple sequential subtitle events with appropriate timing gaps between them. The gap between consecutive subtitles should be at least 2 frames (approximately 83ms at 24fps) to allow the viewer eye to register that a new subtitle has appeared. Some specialized contexts allow three lines, such as accessibility captions that include speaker identification and sound descriptions, but these are exceptions. For translated subtitles, the two-line limit sometimes requires creative condensation of the source dialogue.
What subtitle file formats are commonly used?
The most common subtitle formats include SRT (SubRip Text), which is the simplest and most widely supported format using plain text with sequential numbering, timestamps, and text content. WebVTT (Web Video Text Tracks) is the standard for HTML5 video, extending SRT with styling and positioning capabilities. ASS/SSA (Advanced SubStation Alpha) supports complex styling, fonts, colors, and positioning, popular in anime and fan-subtitling communities. TTML (Timed Text Markup Language) is an XML-based format used by many streaming platforms and broadcasters. EBU STL is the European Broadcasting Union standard for broadcast television. Netflix uses a modified TTML format called DFXP for their deliveries. For DVD and Blu-ray, bitmap-based formats like VobSub and PGS are used since they render subtitles as images rather than text. Each format handles timing differently, with precision ranging from milliseconds to frames.
How do I handle subtitle timing for songs and fast dialogue?
Songs and rapid dialogue present unique challenges for subtitle timing because the text output often exceeds comfortable reading speeds. For songs, the common approach is to display lyrics line by line, synchronized with the melody rather than strict reading speed calculations. Each lyric line typically stays on screen for the duration it is sung, even if this means a high CPS rate, because viewers can anticipate familiar lyrics. For musical films and operas, italics often indicate sung text. For rapid dialogue, subtitlers must condense the text while preserving meaning, often reducing word count by 20-40% compared to a verbatim transcription. Techniques include omitting filler words, simplifying complex sentences, and summarizing repetitive exchanges. The key principle is that a slightly condensed subtitle that viewers can comfortably read is better than a verbatim subtitle that scrolls past too quickly to comprehend.
How do I interpret the result?
Results are displayed with a label and unit to help you understand the output. Many calculators include a short explanation or classification below the result (for example, a BMI category or risk level). Refer to the worked examples section on this page for real-world context.
Can I use the results for professional or academic purposes?
You may use the results for reference and educational purposes. For professional reports, academic papers, or critical decisions, we recommend verifying outputs against peer-reviewed sources or consulting a qualified expert in the relevant field.
References
Reviewed by Daniel Agrici, Founder & Lead Developer ยท Editorial policy