Subtopic Deep Dive
Quality of Experience in HTTP Adaptive Streaming
Research Guide
What is Quality of Experience in HTTP Adaptive Streaming?
Quality of Experience (QoE) in HTTP Adaptive Streaming (HAS) quantifies user-perceived video quality impacted by bitrate adaptation, rebuffering events, stalling, and switching frequency under varying network conditions.
Research models QoE for HAS using subjective experiments and objective metrics like VMAF, addressing challenges in 360° and VR streaming. Key surveys include Seufert et al. (2014, 797 citations) and Bentaleb et al. (2018, 452 citations). Studies span buffer-based adaptation (Huang et al., 2014, 975 citations) to control-theoretic approaches (Yin et al., 2015, 972 citations).
Why It Matters
QoE optimization in HAS drives viewer retention on platforms like YouTube and Netflix by minimizing rebuffering and bitrate switches. Huang et al. (2014) buffer-based method reduces stalls in commercial services, while Yin et al. (2015) control-theoretic approach handles network bottlenecks for better revenue. Georgopoulos et al. (2013) enable network-wide fairness using OpenFlow, and Qian et al. (2018) Flare system improves 360° video efficiency on mobile devices. Surveys by Seufert et al. (2014) and Barakabitze et al. (2019) guide deployment in 5G networks as in Narayanan et al. (2021).
Key Research Challenges
Accurate bandwidth prediction
ABR algorithms struggle with fluctuating capacity in commercial networks (Huang et al., 2014, 975 citations). Naive estimation leads to frequent bitrate switches harming QoE (Georgopoulos et al., 2013, 239 citations). Control-theoretic models mitigate but require precise state feedback (Yin et al., 2015, 972 citations).
Rebuffering and stalling minimization
Network variations cause stalls despite adaptation, impacting startup delay and playback smoothness (Liu et al., 2012, 226 citations). Buffer-based strategies trade off quality for stability (Huang et al., 2014). 5G deployments show persistent QoE drops from coverage holes (Narayanan et al., 2021, 225 citations).
360° and VR viewport adaptation
Panoramic streaming demands selective tile fetching for viewport-dependent QoE (Qian et al., 2018, 270 citations). HTTP/2 multiplexing aids but HTTP/1.1 causes head-of-line blocking (van der Hooft et al., 2016, 316 citations). Client-side logic must predict head movement accurately.
Essential Papers
A buffer-based approach to rate adaptation
Te-Yuan Huang, Ramesh Johari, Nick McKeown et al. · 2014 · 975 citations
Existing ABR algorithms face a significant challenge in estimating future capacity: capacity can vary widely over time, a phenomenon commonly observed in commercial services. In this work, we sugge...
A Control-Theoretic Approach for Dynamic Adaptive Video Streaming over HTTP
Xiaoqi Yin, Abhishek Jindal, Vyas Sekar et al. · 2015 · 972 citations
User-perceived quality-of-experience (QoE) is critical in Internet video applications as it impacts revenues for content providers and delivery systems. Given that there is little support in the ne...
A Survey on Quality of Experience of HTTP Adaptive Streaming
Michael Seufert, Sebastian Egger, Martin Slanina et al. · 2014 · IEEE Communications Surveys & Tutorials · 797 citations
Changing network conditions pose severe problems to video streaming in the Internet. HTTP adaptive streaming (HAS) is a technology employed by numerous video services that relieves these issues by ...
A Survey on Bitrate Adaptation Schemes for Streaming Media Over HTTP
Abdelhak Bentaleb, Bayan Taani, Ali C. Begen et al. · 2018 · IEEE Communications Surveys & Tutorials · 452 citations
In this survey, we present state-of-the-art bitrate adaptation algorithms for HTTP adaptive streaming (HAS). As a key distinction from other streaming approaches, the bitrate adaptation algorithms ...
HTTP/2-Based Adaptive Streaming of HEVC Video Over 4G/LTE Networks
Jeroen van der Hooft, Stefano Petrangeli, Tim Wauters et al. · 2016 · IEEE Communications Letters · 316 citations
In HTTP Adaptive Streaming, video content is temporally divided into multiple segments, each encoded at several quality levels. The client can adapt the requested video quality to network changes, ...
Flare
Feng Qian, Bo Han, Qingyang Xiao et al. · 2018 · 270 citations
Flare is a practical system for streaming 360-degree videos on commodity mobile devices. It takes a viewport-adaptive approach, which fetches only portions of a panoramic scene that cover what a vi...
Towards network-wide QoE fairness using openflow-assisted adaptive video streaming
Panagiotis Georgopoulos, Yehia Elkhatib, Matthew Broadbent et al. · 2013 · 239 citations
Video streaming is an increasingly popular way to consume media content. Adaptive video streaming is an emerging delivery technology which aims to increase user QoE and maximise connection utilisat...
Reading Guide
Foundational Papers
Read Huang et al. (2014, 975 citations) first for buffer-based ABR fundamentals, then Seufert et al. (2014, 797 citations) survey for QoE taxonomy, followed by Yin et al. (2015, 972 citations) for control theory.
Recent Advances
Study Bentaleb et al. (2018, 452 citations) for bitrate schemes, Qian et al. (2018, 270 citations) for 360° Flare, and Barakabitze et al. (2019, 217 citations) for future networks.
Core Methods
Core techniques: buffer occupancy thresholds (Huang 2014), PID controllers (Yin 2015), VMAF predictors with stalling penalties (Seufert 2014), viewport-adaptive tiling (Qian 2018).
How PapersFlow Helps You Research Quality of Experience in HTTP Adaptive Streaming
Discover & Search
Research Agent uses searchPapers and citationGraph to map HAS QoE literature from Huang et al. (2014, 975 citations) as seed, chaining to Yin et al. (2015) and Seufert et al. (2014). exaSearch uncovers 360° extensions like Qian et al. (2018); findSimilarPapers expands to Bentaleb et al. (2018) survey.
Analyze & Verify
Analysis Agent applies readPaperContent on Seufert et al. (2014) to extract QoE models, then verifyResponse with CoVe checks claims against Huang et al. (2014). runPythonAnalysis simulates buffer dynamics from Huang et al. equations using NumPy/pandas, with GRADE scoring evidence strength for VMAF integration.
Synthesize & Write
Synthesis Agent detects gaps in rebuffering models across Yin et al. (2015) and Georgopoulos et al. (2013), flagging contradictions in fairness metrics. Writing Agent uses latexEditText for QoE equations, latexSyncCitations for 50+ papers, latexCompile for reports, and exportMermaid for ABR state diagrams.
Use Cases
"Simulate buffer-based ABR QoE from Huang 2014 under variable bandwidth"
Research Agent → searchPapers('Huang buffer-based') → Analysis Agent → readPaperContent → runPythonAnalysis (NumPy simulation of buffer occupancy vs bitrate ladders) → matplotlib QoE vs stalling plot.
"Write LaTeX review of HAS QoE surveys comparing Seufert 2014 and Bentaleb 2018"
Synthesis Agent → gap detection → Writing Agent → latexEditText (merge abstracts) → latexSyncCitations (add 20 refs) → latexCompile → PDF with VMAF objective predictor tables.
"Find GitHub repos implementing control-theoretic HAS from Yin 2015"
Research Agent → citationGraph(Yin 2015) → Code Discovery → paperExtractUrls → paperFindGithubRepo → githubRepoInspect → exportCsv of ABR controllers with QoE metrics.
Automated Workflows
Deep Research workflow conducts systematic review: searchPapers(50+ HAS QoE) → citationGraph → DeepScan (7-step verifyResponse/CoVe on models) → GRADE report. Theorizer generates theory: analyze buffer fairness from Huang/Georgopoulos → exportMermaid control loops. DeepScan chains readPaperContent(Seufert) → runPythonAnalysis(rebuffering stats) → synthesis gaps for 5G as in Narayanan.
Frequently Asked Questions
What defines QoE in HAS?
QoE in HAS combines video quality, rebuffering duration/frequency, bitrate switching rate, and startup delay from subjective tests (Seufert et al., 2014).
What are main adaptation methods?
Buffer-based (Huang et al., 2014), control-theoretic (Yin et al., 2015), and throughput-based with OpenFlow fairness (Georgopoulos et al., 2013).
What are key papers?
Foundational: Huang et al. (2014, 975 citations), Seufert et al. (2014, 797 citations); recent: Bentaleb et al. (2018, 452 citations), Qian et al. (2018, 270 citations).
What are open problems?
Viewport prediction for 360° VR (Qian et al., 2018), QoE fairness in 5G (Narayanan et al., 2021), coordinated control planes (Liu et al., 2012).
Research Image and Video Quality Assessment with AI
PapersFlow provides specialized AI tools for Computer Science researchers. Here are the most relevant for this topic:
AI Literature Review
Automate paper discovery and synthesis across 474M+ papers
Code & Data Discovery
Find datasets, code repositories, and computational tools
Deep Research Reports
Multi-source evidence synthesis with counter-evidence
AI Academic Writing
Write research papers with AI assistance and LaTeX support
See how researchers in Computer Science & AI use PapersFlow
Field-specific workflows, example queries, and use cases.
Start Researching Quality of Experience in HTTP Adaptive Streaming with AI
Search 474M+ papers, run AI-powered literature reviews, and write with integrated citations — all in one workspace.
See how PapersFlow works for Computer Science researchers