Simplify Your Workflow: Search MiniWebtool.
Add Extension
Related Tools
Video CompressorRemove Audio from VideoVideo Bitrate CalculatorVideo SplitterVideo CropperAdjust Video SpeedMP4 to GIF ConverterMerge VideosPhoto File Size EstimatorFPS Converter
Home Page > Guide > How to Compress a Video Without Losing Quality

How to Compress a Video Without Losing Quality

Short answer

Turn your size limit into a bitrate first: megabytes × 8 ÷ seconds = megabits per second. Pick the resolution that bitrate can support, then encode with a CRF quality target between 18 and 28 rather than a fixed bitrate. Cutting resolution saves far more than cutting frame rate, and dropping the audio track saves barely 1 MB per minute.

Key takeaways

  • File size is decided by one equation: a 60-second clip at 6 Mbps is 45 MB, always.
  • A 25 MB email limit on a 60-second clip allows 3.3 Mbps total — comfortable at 1080p, hopeless at 4K.
  • Every 6 points of CRF roughly halves or doubles the file; that is about 12% per step.
  • Dropping 4K to 1080p removes 75% of the pixels and needs roughly a quarter of the bitrate.
  • Halving the frame rate saves only 20–30%, not 50% — frames are mostly stored as differences.
  • A 128 kbps audio track costs 0.96 MB per minute. Removing it is almost never the fix.

What actually makes a video file big?

One thing: bitrate. Everything else — resolution, frame rate, codec, colour depth — matters only because it changes the bitrate the video needs in order to look acceptable. Once you know the bitrate and the duration, the file size is arithmetic, not a mystery.

The video file size equation Bitrate 6 Mbps × Duration 60 s ÷ bits→bytes 8 = File size 45 MB MB = Mbps × seconds ÷ 8 Rearrange it to go the other way: Mbps = MB × 8 ÷ seconds
The whole of video compression, in one line. Every setting you change is really a way of moving the number in the first box.

That rearrangement is the useful direction. You rarely start with a bitrate — you start with a limit. Gmail rejects attachments over 25 MB, WhatsApp caps shared video around 16 MB, and a free Discord account stops at 10 MB. Divide backwards from the limit and you know immediately whether the clip is realistic at 4K, needs to drop to 1080p, or has to be trimmed.

Video Bitrate Calculator → Enter a target file size, duration, resolution and codec, and it returns the video and audio bitrates that fit. This is the first tool to open, before you touch any encoder setting.

What does “without losing quality” really mean?

Strictly, it is not possible. H.264, H.265, VP9 and AV1 are all lossy codecs: they compress by throwing away information your eye is unlikely to miss — fine texture in shadows, subtle colour shifts, detail in fast motion. The original pixels are gone and cannot be recovered.

What you can achieve is visually lossless: a file where the difference is invisible at normal viewing distance on a normal screen. On the x264 encoder that is roughly CRF 18. True mathematically lossless video encoding does exist, but it typically produces files larger than the camera original, which defeats the purpose.

The other kind of loss: re-encoding an already-compressed file always adds damage, because the encoder is now compressing someone else's compression artefacts. Compress once, from the highest-quality source you have. Three rounds of “just a bit smaller” look far worse than one round of aggressive compression.

Should you use CRF or a target bitrate?

These are the two ways to tell an encoder how hard to work, and they answer different questions.

CRF is the better default because it spends bits where the picture actually needs them. A fixed bitrate wastes capacity on easy scenes and then starves the difficult ones, which is exactly backwards.

The x264 CRF quality scale 18 23 26 29 35 visuallylossless x264default web &messaging visibleartefacts +6 CRF ≈ half the file size Lower CRF = better picture, bigger file. Each single step is worth roughly 12%.
The CRF scale as implemented by x264, the encoder behind almost every MP4 you have ever made. H.265 uses the same idea on a different scale, where about CRF 28 matches x264’s 23.

The relative sizes below follow from that “six points halves it” relationship. They are estimates, not measurements — the true figure depends on how much motion and texture your footage contains — but they are accurate enough to choose a starting value.

CRFHow it looksSize vs CRF 23Use it for
18Visually losslessabout 1.8×Archiving, footage you will edit again
20Excellentabout 1.4×Client delivery, portfolio uploads
23Very good — the default1.0× (baseline)General purpose, YouTube uploads
26Good; soft in fast motionabout 0.7×Email attachments, web embeds
29Acceptable on a phone screenabout 0.5×Messaging apps, tight limits
32–35Visible blocking and smearing0.35× to 0.25×Last resort only

Resolution, frame rate or bitrate — which do you cut first?

You have three dials and they are not equally powerful. Resolution is by far the strongest, because pixel count scales with the square of the dimensions: 4K is not twice 1080p, it is four times.

Bitrate and 60-second file size by resolution Resolution 60 s file 2160p1440p1080p720p480p 35–45 Mbps 16 Mbps 8 Mbps 5 Mbps 2.5 Mbps 263–338 MB 120 MB 60 MB 38 MB 19 MB YouTube’s recommended SDR upload bitrates at standard frame rate, and what one minute of each costs.
Bar length is the recommended bitrate. Note how little of the chart 720p and 480p occupy — that is the size of the prize when you step the resolution down.
DialChangeTypical size savingWhat the viewer notices
Resolution2160p → 1080pabout 75%Nothing on a phone; softer on a large TV
Resolution1080p → 720pabout 40%Slightly soft on desktop, invisible on mobile
Quality (CRF)23 → 29about 50%Blocking in fast motion and dark scenes
Frame rate60 fps → 30 fps20–30%Motion looks less fluid; obvious in gameplay
Audio128 kbps → removed0.96 MB per minuteEverything, if the audio mattered
Durationtrim 10 s from 60 sabout 17%Nothing, if you trimmed dead air

Two conclusions follow. First, if the clip is destined for a phone screen, drop the resolution before you touch anything else — a sharply encoded 720p file beats a bit-starved 1080p file at the same size, every time. Second, frame rate is a poor lever: consecutive frames are highly similar, so the encoder already stores most of them as small differences, and removing half of them does not remove half the data. Change resolution with the Video Cropper or check how a target shape maps across sizes with the Aspect Ratio Calculator.

Worked example: a 150 MB clip into a 25 MB email

Take a typical phone recording: 60 seconds, 1080p at 60 fps, roughly 20 Mbps. Check the arithmetic — 20 × 60 ÷ 8 = 150 MB. Gmail will not take it.

Step 1 — convert the limit to a bitrate. 25 MB × 8 ÷ 60 s = 3.33 Mbps total. Reserve 128 kbps for the audio and you have about 3.2 Mbps for video, a 6.25× reduction.

Step 2 — check that bitrate against the resolution. From the chart above, 1080p wants around 8 Mbps and 720p around 5 Mbps for comfortable quality. 3.2 Mbps is below both, so this is a real compression job, not a trim. Two workable routes:

RouteSettingsVideo bitrateResultBest when
A — keep resolution1080p60, CRF 27about 3.2 MbpsSharp on stills, soft during fast pansTalking head, screen recording, tripod shot
B — step down720p30, CRF 24about 3.0 MbpsClean throughout, lower resolutionHandheld footage, anything watched on a phone

Route B usually wins, and it surprises people. At 3 Mbps, 720p has roughly 3.3 megabits for 0.92 megapixels; 1080p has the same budget for 2.07 megapixels — less than half the bits per pixel. The 1080p file is nominally higher resolution and visibly worse.

Step 3 — encode and measure. CRF does not guarantee a size, so expect to land near the target rather than on it. If route B produces 29 MB, raise the CRF by 2 (roughly −22%) and re-encode from the original, never from the 29 MB file. If it produces 18 MB, you had room to spare: lower the CRF by 2 and take the quality back.

Reality check on audio: the entire audio track in this example is 128 kbps × 60 s ÷ 8 = 0.96 MB. Stripping it saves 4% of the budget and costs you the sound. Do it only when the video is genuinely silent or the audio is decorative — the Remove Audio from Video tool handles that in one pass.

What bitrate does each platform want?

Two different questions get confused here. Platforms that re-encode your upload (YouTube, Instagram, TikTok) want the highest-quality file you can give them, because your file is the source for their encoder. Platforms that simply transfer your file (email, messaging apps) impose a hard size cap and you must meet it.

DestinationWhat it enforcesBitrate for a 60 s clipPractical recipe
YouTubeRe-encodes; wants quality8 Mbps at 1080p30Upload at source resolution, CRF 18–20
Instagram / TikTokRe-encodes; 9:16 or 4:5 crop6–10 Mbps at 1080p1080×1920 vertical, CRF 20–23
Email attachmentHard cap, commonly 25 MB3.3 Mbps1080p30 CRF 26, or 720p30 CRF 24
WhatsAppHard cap around 16 MB2.1 Mbps720p30, CRF 26–28
Discord, free tierHard cap around 10 MB1.3 Mbps720p30 CRF 28, or 480p30 CRF 24
Website background loopLoad time, not a cap1–2 Mbps720p, no audio, short loop
Check the current number before you rely on it. Attachment and upload caps change without notice, and several depend on your subscription tier. Treat the figures above as the common free-tier case and confirm against the service before an important send.

How to compress a video in your browser, step by step

The Video Compressor runs an FFmpeg build compiled to WebAssembly inside the page. Your file is read from disk into browser memory and encoded by your own CPU — it is never uploaded. That is good for privacy and for large files, and it means the first run pauses briefly while the encoder itself downloads.

The five-step browser compression workflow 1 Budget the bitrate MB × 8 ÷ seconds = the Mbps you may spend 2 Load the file Drag it onto the page — nothing is uploaded 3 Set the CRF slider Range 18–35; start at 23, use 26 for email 4 Encode FFmpeg runs on your own CPU, in the tab 5 Compare, then download Check before / after and the final size still too big? +2 CRF
The loop that matters is the dashed one: if the output is still over the limit, raise the CRF by two or three points and re-encode from the original file, never from the compressed output. Two or three passes beat one lucky guess, and cost nothing but time.
  1. Work out your bitrate budget in the Video Bitrate Calculator before opening anything else. Thirty seconds here saves three failed encodes.
  2. Drag the video onto the drop area. The page reports the original size and duration so you can sanity-check the equation against your own file.
  3. Set the Quality (CRF) slider. It runs from 18 to 35 and starts at 23. For an email attachment, 26 is the usual landing point; for messaging, 28.
  4. Start the compression and wait. Encoding happens on your machine, so a minute of 1080p takes noticeably longer than a server would. Keep the tab in the foreground.
  5. Compare the two previews side by side before downloading. If the size overshoots, raise the CRF by 2 or 3 and run it again from the original file.
Open the Video Compressor → Browser-based H.264 compression with a CRF quality slider and a before/after preview. Nothing is uploaded — the encoder runs inside the page, which is why it cannot be embedded here as a widget.

What to try when you are still over the limit

If CRF 28 at 720p still will not fit, the video is too long for the limit, not too detailed. Attack the duration and the frame content instead:

Video compression terms, defined

Bitrate
Data per second of playback, in kbps or Mbps. Multiplied by duration and divided by 8, it gives the file size in bytes.
CRF (constant rate factor)
A quality target on a 0–51 scale for x264. Lower is better and larger. The encoder varies the bitrate to hold quality steady.
Codec
The compression algorithm: H.264 (universal), H.265/HEVC (about 30–50% smaller, patchier support), VP9 and AV1 (royalty-free, slower to encode).
Container
The file wrapper — MP4, MOV, WebM, MKV. It holds the video, audio and subtitle streams but does no compression itself.
Lossy vs lossless
Lossy discards information permanently to save space; lossless preserves every pixel and rarely shrinks video meaningfully.
Visually lossless
Compressed enough that the difference is invisible under normal viewing conditions. Roughly CRF 18 on x264.
Keyframe (I-frame)
A frame stored in full. The frames between it are stored only as differences, which is why halving the frame rate saves much less than half the data.
Generation loss
The cumulative damage from re-encoding an already-compressed file. Always compress from the original source.
faststart
An MP4 layout that moves the index to the front of the file so playback can begin before the download finishes. Standard for web video.

Frequently asked questions

Can you compress a video without losing any quality at all?

Not with the codecs in common use. H.264, H.265, VP9 and AV1 are lossy by design. What you can reach is visually lossless — around CRF 18 on x264 — where the difference is invisible at normal viewing distance. True lossless encoding exists but usually produces a file larger than the original.

What file size will my video be?

Megabytes = Mbps × seconds ÷ 8. A 60-second clip at 6 Mbps is 45 MB. Resolution, frame rate and codec matter only because they change the bitrate the picture needs.

Is CRF or a target bitrate better for compression?

CRF when you care how it looks, target bitrate when you must hit an exact size. CRF holds quality constant and lets size float, so easy scenes get small and difficult scenes stay clean. A fixed bitrate does the reverse.

What CRF value should I use?

18 is visually lossless, 23 is the x264 default and a safe general choice, 26–28 is normal for web and messaging. Past 28 you start to see blocking in motion. Every 6 points roughly halves or doubles the file, about 12% per step.

Should I lower the resolution or the bitrate first?

Resolution, if the clip will be watched on a phone. 4K to 1080p removes 75% of the pixels and roughly three quarters of the bitrate requirement. Starving a full-resolution file of bits produces blocking, which looks worse than a clean lower-resolution encode of the same size.

Does lowering the frame rate make the file much smaller?

Less than you would expect — 20 to 30% for 60 fps down to 30 fps, not 50%. Consecutive frames are nearly identical and the encoder already stores most of them as differences. It also changes how motion feels, so adjust it last.

How do I get a video under 25 MB for email?

For 60 seconds, 25 MB allows about 3.3 Mbps in total. Leave 128 kbps for audio and you have roughly 3.2 Mbps of video — comfortable at 720p30, tight at 1080p. In practice, 720p30 at CRF 24 or 1080p30 at CRF 26 lands close to the target.

Does compressing a video in the browser upload my file anywhere?

Not with a WebAssembly tool. The Video Compressor runs FFmpeg compiled to WebAssembly inside the page, so the file is read into browser memory and never leaves your device. The trade-off is speed, because your own CPU does the encoding.

All the tools used in this guide

Video CompressorShrink a video in the browser with a CRF quality slider. Nothing is uploaded.
Video Bitrate CalculatorTurn a target file size and duration into the video and audio bitrates that fit.
Aspect Ratio CalculatorWork out matching width and height when you change resolution or crop.
Video CropperCut away letterbox bars and dead edges — real pixels, real savings.
Video SplitterTrim by time range or split one oversized clip into sendable parts.
Merge VideosJoin clips back together, or assemble parts after separate edits.
FPS ConverterChange the frame rate, worth 20–30% going from 60 fps to 30 fps.
Adjust Video SpeedSpeed up or slow down; a 2× timelapse halves duration and size.
Remove Audio from VideoStrip the audio track — about 1 MB per minute at 128 kbps.
MP4 to GIF ConverterConvert to GIF for compatibility, remembering GIF is usually larger.
Photo File Size EstimatorThe same size-versus-quality trade-off for still images.

Authoritative sources

Last updated: 2026-08-04 · Published: 2026-08-04 · Written by the miniwebtool.com editorial team.

Bitrates, CRF values and file sizes in this guide are worked examples used to demonstrate the method; real results vary with the amount of motion and detail in your footage. Platform size limits and upload specifications change without notice and may depend on your subscription tier — confirm current values with the service before an important upload. This article is educational and does not constitute technical advice for any specific production workflow.

Top & Updated:

Instagram User ID LookupRandom PickerRandom Name PickerImage ResizerLine CounterFacebook User ID LookupSort NumbersRelative Standard Deviation CalculatorFPS ConverterRemove SpacesSun, Moon & Rising Sign Calculator 🌞🌙✨Random Quote GeneratorWord to Phone Number ConverterERA CalculatorMAC Address Generator📷 OCR / Image to Text⬛ Aspect Ratio CalculatorSum CalculatorFeet and Inches to Cm ConverterMAC Address LookupJob FinderSlope and Grade CalculatorBatting Average CalculatorSHA256 Hash GeneratorCm to Feet and Inches ConverterSquare Root (√) CalculatorPercent Off CalculatorMerge VideosRandom Credit Card Generator🖱️ Click CounterWeight Loss CalculatorVertical Jump CalculatorAudio SplitterRandom IMEI GeneratorBitwise CalculatorNumber of Digits CalculatorMP3 LooperInvisible Text GeneratorImage SplitterSun Position CalculatorCaffeine Overdose CalculatorLog Base 10 CalculatorRandom Truth or Dare GeneratorNumber to Word ConverterPhone Number ExtractorSalary Conversion CalculatorMaster Number CalculatorRandom Fake Address GeneratorRoman Numerals ConverterRandom Writing Prompt GeneratorAdd Text to ImageRandom Poker Hand GeneratorRandom Superpower GeneratorText FormatterMercury Retrograde CalendarYouTube Channel StatisticsWord Ladder GeneratorVideo CompressorRandom Activity GeneratorStair CalculatorFile Size ConverterOPS CalculatorRandom Birthday GeneratorLunar Calendar ConverterCompound Growth CalculatorRandom Movie PickerLong Division CalculatorSHA512 Hash GeneratorHalfway Date CalculatorBolt Torque CalculatorEmail ExtractorOctal CalculatorIP Subnet Calculator📅 Date CalculatorName RandomizerQuotient and Remainder CalculatorBattery Life CalculatorSlugging Percentage CalculatorBinary to Gray Code ConverterOn Base Percentage CalculatorPercent Growth Rate CalculatoreBay Fee CalculatorDecimal to BCD ConverterSaturn Return CalculatorRandom Loadout GeneratorBingo Card GeneratorLeap Years ListBcrypt Hash Generator / CheckerCompare Two StringsMartingale Strategy CalculatorRandom Meal GeneratorVideo to Image ExtractorFirst n Digits of PiArc Length CalculatorImage CompressorRandom Time GeneratorHebrew Calendar ConverterSigma Notation Calculator (Summation)Outlier CalculatorAPI TesterMD5 Hash GeneratorIP Address to Hex ConverterLove Compatibility CalculatorGray Code to Binary ConverterRandom Emoji GeneratorBCD to Decimal ConverterFlip VideoList of Prime NumbersRandom Playing Card GeneratorYouTube Tag ExtractorWord Scramble GeneratorBreak Line by CharactersSocial Media Username CheckerMegapixel to Print Size CalculatorAI Text HumanizerBinary to BCD ConverterRandom User-Agent GeneratorWAR CalculatorCM to Inches ConverterAcreage Calculator🔍 Plagiarism CheckerRandomize NumbersModulo CalculatorWHIP CalculatorLED Resistor CalculatorNumber ExtractorDMS to Decimal Degrees Converter🎰 Gacha Pity CalculatorJulian Date ConverterAI Punctuation AdderRandom Number PickerVideo SplitterWhat is my Zodiac Sign?Time Duration CalculatorBroken Link CheckerDay of the Year Calculator - What Day of the Year Is It Today?Image CropperCone Flat Pattern (Template) GeneratorRandom Tournament Bracket GeneratorPercentage Increase CalculatorList RandomizerAstrological Element Balance CalculatorYouTube Thumbnail DownloaderRandom Chord GeneratorTrigonometric Equation SolverRemove AccentMultiple Fraction CalculatorName Number CalculatorEffect Size CalculatorConnect the Dots GeneratorDecibel (dB) CalculatorRatio to Percentage CalculatorWhat is my Lucky Number?Random Object GeneratorReverse Video1099 Tax CalculatorSort Text By LengthText Case ConverterRandom Chess Opening GeneratorAdd Prefix and Suffix to TextAI Language DetectorDay of Year CalendarShort Selling Profit CalculatorColor InverterRatio CalculatorRandom Group Generator🔊 Tone GeneratorFirst n Digits of eRandom Sound Frequency GeneratorAmortization CalculatorExponential Growth CalculatorHTML CompressorProportion CalculatorBoxing Punch Power CalculatorRandom Math Problem GeneratorHelium Balloon Lift CalculatorLottery Number GeneratorTessellation GeneratorBCD to Binary ConverterSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾Angel Number CalculatorAntilog CalculatorArithmetic Sequence CalculatorGolden Ratio Calculator💧 Dew Point CalculatorL-System Fractal GeneratorPercent to PPM ConverterAdjust Video SpeedBlood Donation Time CalculatorPercentile CalculatorMultiplication CalculatorRemove Audio from VideoRandom Line PickerHypotenuse CalculatorProduct Notation Calculator (Pi Notation)Number Pattern FinderDestiny Number CalculatorDice RollerURL ExtractorAI ParaphraserSort Lines AlphabeticallyHex to BCD ConverterBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorPVIFA CalculatorActual Cash Value CalculatorScientific Notation to Decimal ConverterLog Base 2 CalculatorRoot Mean Square CalculatorSum of Positive Integers CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderLbs to Kg ConverterHex to Decimal ConverterConvolution CalculatorMAC Address AnalyzerRandom String GeneratorRemove Leading Trailing SpacesMarkup CalculatorPVIF CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorSocial Media Post Time OptimizerCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorBoiling Point CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hôpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorBernoulli Equation CalculatorAP Score CalculatorAttendance Percentage CalculatorPercentage to CGPA ConverterCitation Generator (APA/MLA/Chicago)AI Quiz GeneratorAI Lesson Plan GeneratorInteractive Periodic TableElectron Configuration CalculatorLimiting Reactant CalculatorTheoretical Yield CalculatorHenderson-Hasselbalch CalculatorpKa to Ka ConverterMolality CalculatorNormality CalculatorPercent Composition CalculatorFreezing Point Depression CalculatorBoiling Point Elevation CalculatorOsmotic Pressure CalculatorNernst Equation CalculatorBeer-Lambert Law CalculatorGravitational Force CalculatorEscape Velocity CalculatorKepler's Third Law CalculatorTime Dilation CalculatorE=mc² CalculatorPhoton Energy Calculatorde Broglie Wavelength CalculatorTerminal Velocity CalculatorBuoyancy CalculatorWave Speed CalculatorSpeed of Sound CalculatorMechanical Advantage CalculatorInclined Plane CalculatorFriction CalculatorResistors in Series CalculatorWatts to Amps CalculatorAmps to Watts CalculatorkVA Calculator3-Phase Power CalculatormAh to Wh ConverterGenerator Size CalculatorLumens to Watts ConverterLux to Lumens CalculatorRoom Lighting CalculatorInductive Reactance CalculatorSeries/Parallel Capacitor CalculatorConduit Fill CalculatorAntenna Length CalculatorCubic Yard CalculatorAsphalt CalculatorSod CalculatorGrass Seed CalculatorDeck Stain CalculatorSiding CalculatorBaseboard & Trim CalculatorBaluster Spacing CalculatorEpoxy Resin CalculatorWater Heater Size CalculatorPool Volume CalculatorPool Salt CalculatorPond Volume & Liner CalculatorTV Size CalculatorTV Mounting Height CalculatorPicture Hanging Height CalculatorRug Size CalculatorCurtain Size CalculatorCeiling Fan Size CalculatorDehumidifier Size CalculatorAir Purifier CADR CalculatorFirewood Cord CalculatorCouch Fit CalculatorEngine Displacement Calculator2-Stroke Oil Mix CalculatorOctane Mix CalculatorLease Buyout CalculatorCost Per Mile CalculatorTire Load Index & Speed Rating LookupWheel Offset CalculatorWilks & DOTS CalculatorACFT Score CalculatorRowing Pace CalculatorHiking Time CalculatorBeep Test CalculatorFTP & Power Zones CalculatorRunning Age-Grading CalculatorHeart Rate Recovery CalculatorElo Rating CalculatorK/D Ratio CalculatorNet Run Rate CalculatorBatting Strike Rate CalculatorBowling Economy CalculatorDart Checkout CalculatorStableford CalculatorSpeedrun Split TimerBike Size CalculatorSnowboard Size CalculatorHat Size ConverterGlove Size CalculatorHelmet Size CalculatorSki Size CalculatorSurfboard Volume CalculatorTennis Grip Size CalculatorBackpack Size CalculatorCelsius to Fahrenheit ConverterFahrenheit to Celsius ConverterKm to Miles Converter