InertiaRSS Track and read blogs, news, and tech you care about
Read Original Open in InertiaRSS

Recommended Feeds

Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
罗磊的独立博客
S
SegmentFault 最新的问题
V
V2EX
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
博客园 - 三生石上(FineUI控件)
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
D
Docker
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
M
Microsoft Research Blog - Microsoft Research
Martin Fowler
Martin Fowler
S
Secure Thoughts
B
Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
C
Cisco Blogs
C
CERT Recently Published Vulnerability Notes
T
True Tiger Recordings
GbyAI
GbyAI
P
Proofpoint News Feed
P
Privacy International News Feed
Jina AI
Jina AI
The Cloudflare Blog
I
Intezer
AWS News Blog
AWS News Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
S
Security Archives - TechRepublic
NISL@THU
NISL@THU
The Register - Security
The Register - Security
Recent Commits to openclaw:main
Recent Commits to openclaw:main
P
Palo Alto Networks Blog
S
Schneier on Security
L
LINUX DO - 热门话题
C
CXSECURITY Database RSS Feed - CXSecurity.com
Security Latest
Security Latest
C
Cybersecurity and Infrastructure Security Agency CISA

DEV Community

Unity’s AI agent went public: the developers of a static analysis tool on what that means for code quality Anna's Archive publica un llms.txt para los LLMs que rastrean su catálogo Why I Built Mneme HQ: Preventing AI Agent Architectural Drift I Built a Pay-Per-Call Crypto Signal API with x402 — Heres the Architecture 🚀 “From Prompts to Autonomous Agents: What Google I/O 2026 Changed” The Power of Distributed Consensus in Autonomous SOCs Sixteen TUI components, copy-paste, no dependency The Boring Reliability Layer Every Autonomous Agent Needs Nven - Secret manager Building Multi-Tenant Row-Level Security in PostgreSQL: A Production Pattern The Hardest Part of Being a Developer Isn't Coding Building Vylo — Looking for Collaborators, Partners & Early Support I Thought Memory Fades With Time. It Actually Fades With Information. ORA-00064 오류 원인과 해결 방법 완벽 가이드 I registered an AI agent at 1 AM and something cracked open in my head Pitch: Nven - Sync secrets. Ship faster. Why y=mx+b is the heart of AI From Routines to a Crew — Building a System That Plans Its Own Work & executes it 25 React Interview Questions 2026 (With Answers) — Hooks, React 19, Concurrent Mode An open source LLM eval tool with two independent quality signals Using Dashboard Filtering to Get Customer Usage in Seconds from TBs of Data Skills, Java 17, And Theme Accents 4 Hard Lessons on Optimizing AI Coding Agents Arctype: Cross-Platform Database GUI for LLM Artifacts Your robots.txt says GPTBot is welcome. Your server says 403. Organizing How to Use AWS Glue Workflow 5 n8n Automations Every Digital Agency Should Be Running (Bill More, Work Less) Getting Started with TorchGeo — Remote Sensing with PyTorch Designing a Scalable Cross-Platform Appium Framework Google Antigravity 2.0 & Slash Commands Building a Unified Adaptive Learning Intelligence with Gemma 4, Flutter, and Multi-Model Orchestration Looking for beta testers for a £60 server management application The Disk-Pressure Incident That Taught Me to Always Set LimitRanges and Other Lessons from Mirroring EKS Locally. Why AI Should Not Write SQL Against ERP Databases Vibe coding works until it doesn't. The debt is real. Shipping at the Edge: Migrating a Coffee Subscription Platform to Cloudflare Workers Stop Tab-Switching: A Developer's Guide to Color Tools That Actually Fit the Workflow DevOps vs MLOps vs AIOps: What Changes, What Stays, and a Simple Roadmap to Get Started Run Powerful AI Coding Locally on a Normal Laptop 5 n8n Automations Every WooCommerce Store Needs (Save 10+ Hours/Week) What I Learned Building My Own AI Harness Hytale Servers Will Fail Treasure Hunts Until We Fix Our Event Handling Redux in React: Managing Global State Like a Pro Unfreezing Your GitHub Actions: Troubleshooting Stuck Deployments and Protecting Your Git Repo Statistics Unlocking Project Discoverability on GHES: A Key to Software Engineering Productivity When the Cleanup Code Becomes the Project Rockpack 8.0 - A React Scaffolder Built for the Age of AI-Assisted Development Mismanaging the Treasure Hunt Engine in Hytale Servers Will Get You Killed Stop Calling It an AI Assistant. It’s Already Managing Your Company Why Hardcoded Automations Fail AI Agents
How to Encode H.265 Video with FFmpeg (CRF + Preset Guide)
Javid Jamae · 2026-05-17 · via DEV Community

Javid Jamae

Originally published at ffmpeg-micro.com

H.265 (HEVC) produces files 30-50% smaller than H.264 at the same visual quality. The trade-off is encoding time. Getting the right CRF and preset combination for your use case is the difference between a file that's too big and an encode that takes all night.

What CRF and Preset Actually Control

CRF (Constant Rate Factor) sets your quality target. Lower numbers mean higher quality and larger files. The libx265 default is 28, which is roughly equivalent to CRF 23 in H.264.

Preset controls how hard the encoder works to hit that quality target. Slower presets find better compression at the same CRF, producing smaller files without losing quality. The trade-off is encode time.

这两个设置是独立的。CRF决定质量,预设决定编码器达到该质量的效率。

基本libx265命令

ffmpeg -i input.mp4 -c:v libx265 -crf 28 -preset medium -c:a aac -b:a 128k -tag:v hvc1 output.mp4

进入全屏模式 退出全屏模式

参数说明:

  • -c:v libx265选择H.265/HEVC编码器
  • -crf 28设置质量(数值越低质量越好,文件越大)
  • -preset medium平衡速度与压缩(默认值)
  • -c:a aac -b:a 128k re-encodes audio to AAC at 128kbps
  • -tag:v hvc1 marks the stream for Apple/browser playback compatibility

That -tag:v hvc1 flag is one people miss. Without it, Safari and iOS won't play the file. QuickTime will refuse to open it. If you're encoding for web delivery, always include it.

Which CRF Value for Which Use Case

Use Case CRF Range Why
Archival / master copy 18-22 Visually lossless. Large files, but you keep everything.
Streaming / web delivery 23-28 Good quality at reasonable file sizes. CRF 26 is the sweet spot for most web video.
Social media / batch processing 28-32 Smaller files, acceptable quality for short-form content where compression artifacts are less noticeable.
Preview / thumbnail generation 32-38 Low quality is fine. You're optimizing for speed and small size.

Start at CRF 28 and adjust. Encode a 30-second sample, check the output, then move the CRF up or down by 2-3 points until you hit your target file size and quality.

Preset Speed vs Compression

Preset Relative Speed File Size (same CRF) Best For
ultrafast 10x ~40% larger Testing, previews
fast 4x ~15% larger Real-time or near-real-time
medium 1x (baseline) baseline General use
slow 0.4x ~5-10% smaller Final renders, overnight batches
veryslow 0.1x ~10-15% smaller Archival. Only worth it for content you'll serve thousands of times.

For most developers building automation pipelines, medium or slow is the right answer.veryslow gives diminishing returns that don't justify 10x the encode time unless you're Netflix.

Running H.265 Encodes via API (No libx265 Install)

Installing libx265 means compiling FFmpeg from source on most Linux distros, managing codec dependencies, and dealing with version mismatches. If you're building an automation pipeline, you can skip all of that.

The FFmpeg Micro API accepts raw FFmpeg options. Same flags, no local install:

curl -X POST https://api.ffmpeg-micro.com/v1/transcodes \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": [{"url": "https://storage.example.com/input.mp4"}],
    "outputFormat": "mp4",
    "options": [
      {"option": "-c:v", "argument": "libx265"},
      {"option": "-crf", "argument": "28"},
      {"option": "-preset", "argument": "medium"},
      {"option": "-tag:v", "argument": "hvc1"}
    ]
  }'

Enter fullscreen mode Exit fullscreen mode

The response comes back immediately with a job ID:

{
  "id": "trc_abc123",
  "status": "queued",
  "outputFormat": "mp4",
  "createdAt": "2026-05-17T10:00:00.000Z"
}

Enter fullscreen mode Exit fullscreen mode

Poll GET /v1/transcodes/trc_abc123 until status is completed, then grab the output from GET /v1/transcodes/trc_abc123/download.

For high-quality archival encodes, just change the CRF and preset:

curl -X POST https://api.ffmpeg-micro.com/v1/transcodes \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "inputs": [{"url": "https://storage.example.com/input.mp4"}],
    "outputFormat": "mp4",
    "options": [
      {"option": "-c:v", "argument": "libx265"},
      {"option": "-crf", "argument": "22"},
      {"option": "-preset", "argument": "slow"},
      {"option": "-tag:v", "argument": "hvc1"}
    ]
  }'

Enter fullscreen mode Exit fullscreen mode

Same two-line change you'd make in the CLI command, but no server to maintain.

Common Pitfalls

Forgetting -tag:v hvc1 for web delivery. Apple devices and most browsers need the hvc1 tag to recognize the HEVC stream. Without it, the file plays fine in VLC but fails in Safari, iOS, and many HTML5 video players.

Using H.264 CRF values with libx265. CRF 23 in H.264 and CRF 23 in H.265 are not the same quality. H.265's CRF 28 matches H.264's CRF 23. If you copy your H.264 settings directly, you'll get unnecessarily large files.

Choosing veryslow for batch pipelines. The compression gain from slow to veryslow is 3-5% smaller files. The time cost is 3-5x longer encodes. For automated pipelines processing hundreds of videos, medium orslow is almost always the right trade-off.

Not specifying audio codec explicitly. If your input has audio in a format incompatible with the MP4 container (like Vorbis), FFmpeg will fail silently or produce a broken file. Always set -c:a aac or -c:a copy (if the source audio is already AAC).

Expecting hardware encoders to support CRF. NVENC, VideoToolbox, and QSV don't support FFmpeg's-crf flag. They use -qp or -b:v instead. If you're running on GPU, the libx265 CRF workflow doesn't apply.

FAQ

Is H.265 always better than H.264?
For file size at the same quality, yes. But H.265 encoding is 2-5x slower, and some older devices can't decode it. If your audience is on modern browsers and mobile devices (2020+), H.265 is the better choice. For maximum compatibility with legacy players, stick with H.264.

What's the difference between CRF and two-pass encoding?
Please identify the language of the following text and translate it into English: CRF targets constant quality (file size varies). Two-pass targets a specific bitrate (quality varies). Use CRF when you care about quality and can tolerate variable file sizes. Use two-pass when you have a strict file size budget, like streaming with a fixed bitrate cap.

Can I use CRF with the FFmpeg Micro API?
Please identify the language of the following text and translate it into English: Yes. Pass-crfand-preset as options in the API request. The API runs the same FFmpeg binary with the same flags. No difference in output quality or behavior.

What CRF value gives "visually lossless" H.265?
CRF 18-20 with preset slow or veryslow. At these settings, most viewers can't distinguish the encode from the source in an A/B comparison. File sizes will be 60-70% smaller than the raw source, compared to 80-90% smaller at CRF 28.

Does preset affect quality or just file size?
At the same CRF, slower presets produce smaller files at the same quality. They don't improve quality. They improve compression efficiency. Think of it as: same visual result, less wasted bits.

Last verified: 2026-05-17 against FFmpeg 7.x and FFmpeg Micro API v1