Greening the Video Transcoding Service with Low-Cost Hardware

Total Page:16

File Type:pdf, Size:1020Kb

Greening the Video Transcoding Service with Low-Cost Hardware Greening the Video Transcoding Service with Low-Cost Hardware Transcoders Peng Liu, University of Wisconsin—Madison; Jongwon Yoon, Hanyang University; Lance Johnson, University of Minnesota; Suman Banerjee, University of Wisconsin—Madison https://www.usenix.org/conference/atc16/technical-sessions/presentation/liu This paper is included in the Proceedings of the 2016 USENIX Annual Technical Conference (USENIX ATC ’16). June 22–24, 2016 • Denver, CO, USA 978-1-931971-30-0 Open access to the Proceedings of the 2016 USENIX Annual Technical Conference (USENIX ATC ’16) is sponsored by USENIX. Greening The Video Transcoding Service With Low-Cost Hardware Transcoders1 Peng Liu*, Jongwon Yoon†, Lance Johnson‡, and Suman Banerjee* *University of Wisconsin-Madison, pengliu,suman @cs.wisc.edu †Hanyang University, [email protected]{ } ‡University of Minnesota, [email protected] Abstract mats make it difficult for some video service providers to prepare all media content in advance. Therefore, video Video transcoding plays a critical role in a video stream- transcoding has been widely used for optimizing video ing service. Content owners and publishers need video data. For example, Netflix encodes a movie as many transcoders to adapt their videos to different formats, bi- as 120 times before they stream the video to users [37]. trates, and qualities before streaming them to end users Transcoders are also commonly used in the area of mo- with the best quality of service. In this paper, we report bile device content adaptation, where a target device does our experience to develop and deploy VideoCoreClus- not support the format or has a limited storage capacity ter, a low-cost, highly efficient video transcoder clus- and computational resource that mandate a reduced file ter for live video streaming services. We implemented size. the video transcoder cluster with low-cost single board However, video transcoding is a very expensive pro- computers, specifically the Raspberry Pi Model B. The cess, requiring high computational power and resources. quality of the transcoded video delivered by our clus- Thus, it is critical to have an energy efficient and low- ter is comparable with the best open source software- cost video transcoding solution. In addition, video based video transcoder, and our video transcoders con- transcoders’ performance is important to enhance the sume much less energy. We designed a scheduling algo- overall quality of video streaming services. Regarding rithm based on priority and capacity so that the cluster the performance of transcoder, two metrics are impor- manager can leverage the characteristics of adaptive bi- tant: quality and speed. Video quality with a given bi- trate video streaming technologies to provide a reliable trate determines the amount of data needed to be trans- and scalable service for the video streaming infrastruc- mitted in the network for a video. Transcoding speed ture. We have replaced the software-based transcoders determines the time to finish the transcoding. Thus, it for some TV channels in a live TV streaming service de- is critical for live video streaming services. Other met- ployment on our university campus with this cluster. rics, e.g., cost and power consumption, are also need to be considered in video transcoding system deployment. 1 Introduction Various video transcoding technologies are proposed and used, including cloud transcoding, software-based Video streaming service is one of the most popular In- transcoding on local servers, and hardware transcoding ternet services in recent years. In particular, multime- with specialized processors. In this paper, we intro- dia usage over HTTP accounts for an increasing portion duce VideoCoreCluster – a low-cost, energy efficient of today’s Internet traffic [47]. For instance, video traf- hardware-assisted video transcoder cluster to provide fic is expected to be 80 percent of all consumer Internet transcoding services for a live video streaming service. traffic in 2019, up from 64 percent in 2014 [5]. In or- The cluster is composed of a manager and a number of der to provide high and robust quality of video streaming cheap single board computers (Raspberry Pi Model B). services to end users with various devices with diverse We use the hardware video decoder and encoder mod- network connectivities, content owners and distributors ules embedded in the System on Chip (SoC) of a Rasp- need to encode the video to different formats, bitrates, berry Pi to facilitate video transcoding. With an opti- and qualities. It is redundant to encode and store a source mized transcoding software implementation on the Rasp- video to different variants for archiving purposes. The berry Pi, each Raspberry Pi is able to transcode up to broad spectrum of varieties of bitrates, codecs and for- 3 Standard Definition (SD, 720x480) videos or 1 High USENIX Association 2016 USENIX Annual Technical Conference 407 Definition (HD, 1280x720) and 1 SD videos in real time with very low power consumption. We also developed the cluster manager based on an IoT machine-to-machine SourceSoS urce VideoVideo Media ServerServer Web ServerServer ServerServer protocol - MQTT [42] to coordinate the transcoding tasks and hardware transcoders in order to provide re- liable transcoding service for video streaming services. Compared to software-based video transcoders, Video- CoreCluster has lower cost and higher energy efficiency. Adaptive bitrate (ABR) video streaming over HTTP is a popular technology to provide robust quality of ser- Video vice to end users whose mobile devices have dynamic Player network connectivities. Multiple ABR technologies are used in the industry, but they share a similar idea. Media Figure 1: TV Streaming Service Architecture. servers cut source videos into small segments and en- code every segment to multiple variants with different bitrates. During playback, a video player selects the best 2 Background and Setup variants for these segments base on the video player’s performance, network connectivity, or user’s preference. We worked with the IT department of the University of Streaming video over HTTP has many advantages [60], Wisconsin-Madison to provide a free TV service for stu- we chose it for our live video streaming service because it dents on campus. Students can watch 27 (currently) TV is easy to deploy a video player on web browsers of mo- channels with their mobile devices. Six of these channels bile devices with different operating systems, and we do are HD channels with a resolution 1280x720, 30fps. The not need to reconfigure middle-boxes (firewalls, NATs, other 21 channels are SD with resolutions up to 720x480, etc.) in current campus network deployment for our ser- 30fps. In the most recent month (April 2016), there were vice. We design VideoCoreCluster according to the re- more than 4000 view sessions and about total 480 watch- quirements of ABR live video streaming so that it can ing hours. ABR video streaming techniques are used to provide robust transcoding service. provide high-quality video streaming service to mobile Contributions: The most important contribution of devices with diverse link capabilities and network dy- this paper is a practical implementation of real-time namics. The system supports both Apple’s HTTP Live transcoding system based on energy efficient hardware- Streaming (HLS) [13] and MPEG-DASH [60] to provide assisted video transcoders. Our contributions are multi- service to heterogeneous devices. Figure 1 shows the ar- fold: chitecture of the system. Specifically, a TV frontend re- ceives the TV signal and encodes the video stream into We design and implement a cost-effective transcod- H.264 + AAC format, then the video stream is pushed to • ing solution on a low-cost device, Raspberry Pi source video server. The transcoder cluster pulls videos Model B. from the source video server and pushes the transcoded results to media server in order to provide multiple vari- Our system is based on hardware video decoder and ants of the video streams for every TV channel. The • encoder, which is significantly more energy effi- source video server and media server can be combined cient than software-based transcoding system. in deployment, so we will not discuss them separately in the following sections. The web server hosts web pages We leverage characteristics of adaptive bitrate video and video players for different web browsers. • streaming over HTTP to design a reliable and scal- able system for live video streaming service. The 2.1 Challenges of ABR Techniques on Live system is easily deployable. We currently employ our VideoCoreCluster into an IP-based TV stream- Video Streaming ing service in the University of Wisconsin-Madison. Low latency is critical for a live video streaming service, in which a media server has to generate video data on- The paper is organized as follows. In Section 2, we the-fly to provide continuous streaming service to the introduce the background of our video transcoding sys- end user. A media server supporting ABR needs to guar- tem and the possible approaches to building it. Then we antee all the variants of a video segment are available describe the architecture of VideoCoreCluster in Section when a client requests one of them. Due to the strict re- 3. We evaluate the system in Section 4 and discuss the quirement on low-latency transcoding, several optimiza- related work in Section 5. Section 6 concludes the paper. tion techniques (e.g., high throughput video transcoding, 2 408 2016 USENIX Annual Technical Conference USENIX Association multi-pass encoding for enhancing video quality) are not However, software video encoders are more flexible than applicable for live streaming. Moreover, an index file hardware video encoders. It is much easier to try new al- containing a list of the available video variants should gorithms on a software video encoder to improve video be generated in real-time, and it has to be updated on quality than a hardware video encoder. Video encoders time and be consistent with the availability of these vari- on FPGA platform make a good trade-off on efficiency ants.
Recommended publications
  • Capturejayhx Release Notes
    CapturejayHX release notes - Version 2.3.7 - 1.7.17.10600 – 09/01/2019 - capturejayHX adds support for streaming and network playback of Secure Reliable Transport (SRT) feeds. SRT is a protocol designed for live video streaming over the public internet and provides reliable transmission similar to TCP, however, it does so at the application layer, using UDP protocol as an underlying transport layer. It supports packet recovery while maintaining low latency (default: 120 ms). SRT also supports encryption using AES. - Added RTP streaming support - Added RTP Pro-MPEG streaming support - Added MJPEG encoder for UDP streaming - Updated FFmpeg to version 4.0.2 - Added QuickSync H.264 video encoding and multichannel audio support (up to 16 channels) for WebRTC - Improved playback of RTSP streams. - Updated NDI to 3.5 version. - Updated NVIDIA components to Video_Codec_SDK_8.1.24 - Lots of other improvements and fixes in the capture/playback engine. Winjay S.r.l. Via Enrico Dandolo, 73 - 76123 ANDRIA (BT) – VAT ID: IT-05652830729 Infoline / Fax: 0883-55.34.10 / http://www.winjay.it - [email protected] - Version 2.3.6 - 1.7.12.9930 – 03/12/2018 - Added QuickSync H.264 video encoding and multichannel audio support (up to 16 channels) for WebRTC - Improved playback of RTSP streams. - Core FFmpeg components updated to release 3.4.2 version - Updated NVIDIA components to Video_Codec_SDK_8.1.24 - Fixed correct frame order in UDP streams playback - Fixed audio/video synchronization issue after temporary loss of an input signal - Fixed RTSP/RTMP streams reconnect problem on network failure - Lots of other improvements and fixes in the capture/playback engine.
    [Show full text]
  • Download Media Player Codec Pack Version 4.1 Media Player Codec Pack
    download media player codec pack version 4.1 Media Player Codec Pack. Description: In Microsoft Windows 10 it is not possible to set all file associations using an installer. Microsoft chose to block changes of file associations with the introduction of their Zune players. Third party codecs are also blocked in some instances, preventing some files from playing in the Zune players. A simple workaround for this problem is to switch playback of video and music files to Windows Media Player manually. In start menu click on the "Settings". In the "Windows Settings" window click on "System". On the "System" pane click on "Default apps". On the "Choose default applications" pane click on "Films & TV" under "Video Player". On the "Choose an application" pop up menu click on "Windows Media Player" to set Windows Media Player as the default player for video files. Footnote: The same method can be used to apply file associations for music, by simply clicking on "Groove Music" under "Media Player" instead of changing Video Player in step 4. Media Player Codec Pack Plus. Codec's Explained: A codec is a piece of software on either a device or computer capable of encoding and/or decoding video and/or audio data from files, streams and broadcasts. The word Codec is a portmanteau of ' co mpressor- dec ompressor' Compression types that you will be able to play include: x264 | x265 | h.265 | HEVC | 10bit x265 | 10bit x264 | AVCHD | AVC DivX | XviD | MP4 | MPEG4 | MPEG2 and many more. File types you will be able to play include: .bdmv | .evo | .hevc | .mkv | .avi | .flv | .webm | .mp4 | .m4v | .m4a | .ts | .ogm .ac3 | .dts | .alac | .flac | .ape | .aac | .ogg | .ofr | .mpc | .3gp and many more.
    [Show full text]
  • Encoding H.264 Video for Streaming and Progressive Download
    What is Tuning? • Disable features that: • Improve subjective video quality but • Degrade objective scores • Example: adaptive quantization – changes bit allocation over frame depending upon complexity • Improves visual quality • Looks like “error” to metrics like PSNR/VMAF What is Tuning? • Switches in encoding string that enables tuning (and disables these features) ffmpeg –input.mp4 –c:v libx264 –tune psnr output.mp4 • With x264, this disables adaptive quantization and psychovisual optimizations Why So Important • Major point of contention: • “If you’re running a test with x264 or x265, and you wish to publish PSNR or SSIM scores, you MUST use –tune PSNR or –tune SSIM, or your results will be completely invalid.” • http://x265.org/compare-video-encoders/ • Absolutely critical when comparing codecs because some may or may not enable these adjustments • You don’t have to tune in your tests; but you should address the issue and explain why you either did or didn’t Does Impact Scores • 3 mbps football (high motion, lots of detail) • PSNR • No tuning – 32.00 dB • Tuning – 32.58 dB • .58 dB • VMAF • No tuning – 71.79 • Tuning – 75.01 • Difference – over 3 VMAF points • 6 is JND, so not a huge deal • But if inconsistent between test parameters, could incorrectly show one codec (or encoding configuration) as better than the other VQMT VMAF Graph Red – tuned Green – not tuned Multiple frames with 3-4-point differentials Downward spikes represent untuned frames that metric perceives as having lower quality Tuned Not tuned Observations • Tuning
    [Show full text]
  • Ffmpeg Command Android Studio
    Ffmpeg command android studio Continue FFMpeg/FFprobe is designed for Android. Run the FFmpeg and FFprobe commands with ease in your Android project. About this project is a continuation of the FFmpeg Android Java fork by WritingMinds. This plug captures the CAN LINK EXECUTABLE ffmpeg: it has the issue of text movement on x86 devices along with some other bugfixes, new features and the latest FFmpeg builds. Bravobit FFmpeg-Android architecture works on the following architectures: armv7-neon armv8 x86 x86_64 FFmpeg assemblage FFmpeg in this project was built with the following libraries: x264 r2851 ba24899 libpng 1.6.0 21 free type2 2.8.1 libmp3lame 3.100 libvorbis 1.3.5 libvpx v1.6.1-1456-g7d1bf5d libopus 1.2.1 fontconfig 2.11.11.294 libass 0.14.0 fribidi 0.19.7 Expat 2.1.0 fdk-aac 0.1.6 Features Uses the newest FFmpeg release n4.0-39-gda39990 Uses the native capabilities of the processor on the ARM FFprobe architecture bundled in this library too included the Network Features Multithreading Use Start To Enable Dependency Dependencies 'implementation':nl.bravobit:android-ffmpeg:1.1.7' Check if FFmpeg is supported To check Whether FFmpeg is available on your device you can use the following method. if (FFmpeg.getInstance (this) you will run the FFmpeg command In this code example we will run the ffmpeg version team. FFmpeg ffmpeg - FFmpeg.getInstance (context); to run the ffmpeg-version command you just need to go through the version of ffmpeg.execute (cmd, the new ExecuteBinaryResponseHandler () - @Override public void onStart () @Override public void on Progress (String message) @Override public void on The Mail (String message) @Override public emptiness onSuccess (String message) @Override public emptiness onFinish () Stop (or leave) FFmp to stop the FFmpeg process running, just call .send'ytSignal () at FFtask, which works: FFmpeg ffmpeg and FFmpeg.getInstance (context); FFtask ffTask - ffmpeg.execute (..
    [Show full text]
  • EMA Mezzanine File Creation Specification and Best Practices Version 1.0.1 For
    16530 Ventura Blvd., Suite 400 Encino, CA 91436 818.385.1500 www.entmerch.org EMA Mezzanine File Creation Specification and Best Practices Version 1.0.1 for Digital Audio‐Visual Distribution January 7, 2014 EMA MEZZANINE FILE CREATION SPECIFICATION AND BEST PRACTICES The Mezzanine File Working Group of EMA’s Digital Supply Chain Committee developed the attached recommended Mezzanine File Specification and Best Practices. Why is the Specification and Best Practices document needed? At the request of their customers, content providers and post‐house have been creating mezzanine files unique to each of their retail partners. This causes unnecessary costs in the supply chain and constrains the flow of new content. There is a demand to make more content available for digital distribution more quickly. Sales are lost if content isn’t available to be merchandised. Today’s ecosystem is too manual. Standardization will facilitate automation, reducing costs and increasing speed. Quality control issues slow down today’s processes. Creating one standard mezzanine file instead of many files for the same content should reduce the quantity of errors. And, when an error does occur and is caught by a single customer, it can be corrected for all retailers/distributors. Mezzanine File Working Group Participants in the Mezzanine File Working Group were: Amazon – Ben Waggoner, Ryan Wernet Dish – Timothy Loveridge Google – Bill Kotzman, Doug Stallard Microsoft – Andy Rosen Netflix – Steven Kang , Nick Levin, Chris Fetner Redbox Instant – Joe Ambeault Rovi
    [Show full text]
  • On Engagement with ICT Standards and Their Implementations in Open Source Software Projects: Experiences and Insights from the Multimedia Field
    International Journal of Standardization Research Volume 19 • Issue 1 On Engagement With ICT Standards and Their Implementations in Open Source Software Projects: Experiences and Insights From the Multimedia Field Jonas Gamalielsson, University of Skövde, Sweden Björn Lundell, University of Skövde, Sweden ABSTRACT The overarching goal in this paper is to investigate organisational engagement with an ICT standard and open source software (OSS) projects that implement the standard, with a specific focus on the multimedia field, which is relevant in light of the wide deployment of standards and different legal challenges in this field. The first part reports on experiences and insights from engagement with standards in the multimedia field and from implementation of such standards in OSS projects. The second part focuses on the case of the ITU-T H.264 standard and the two OSS projects OpenH264 and x264 that implement the standard, and reports on a characterisation of organisations that engage with and control the H.264 standard, and organisations that engage with and control OSS projects implementing the H.264 standard. Further, projects for standardisation and implementation of H.264 are contrasted with respect to mix of contributing organisations, and findings are related to organisational strategies of contributing organisations and previous research. KEywordS AVC, H.264, Involvement, ISO, ITU-T, OpenH264, Participation, x264 1 INTROdUCTION There are a number of different challenges related to provision of standards in the software sector, that can impact on the extent to which it is possible to faithfully implement the specification of a standard in software systems (Blind and Böhm, 2019; Gamalielsson and Lundell, 2013; Lundell et al., 2019; UK, 2015).
    [Show full text]
  • Format Support
    Episode 6 Format Support FILE FORMAT CODEC Episode Episode Episode Pro EngineCOMMENTS Adaptive bitrate streaming Microsoft Smooth Streaming H.264 (AAC audio) O Windows OS only. Available with Episode Engine License. Apple HLS H.264 (AAC audio) O Available with Episode Engine License. Windows Media WMV, ASF VC-1 O O O WM9 I/O I/O I/O WMV7 and 8 through F4M component on Mac WMA I/O I/O I/O WMA Pro I/O I/O I/O Flash FLV Flash 8 (VP6s/VP6e) I/O I/O I/O SWF Flash 8 (VP6s/VP6e) I/O I/O I/O MOV/MP4/F4V Flash 9 (H.264) I/O I/O I/O F4V as extension to MP4 WebM WebM VP8 O O O Vorbis O O O 3GPP 3GPP AAC I/O I/O I/O H.263 I/O I/O I/O H.264 I/O I/O I/O MainConcept and x264 MPEG-4 I/O I/O I/O 3GPP2 3GPP2 AAC I/O I/O I/O H.263 I/O I/O I/O H.264 I/O I/O I/O MainConcept and x264 MPEG-4 I/O I/O I/O MPEG Elementary Streams MPEG-1 Elementary Stream MPEG-1 (video) I/O I/O I/O MPEG-2 Elementary Stream MPEG-2 I/O I/O I/O MPEG Program Streams PS AAC O O O MainConcept and x264 H.264 I/O I/O I/O MPEG-1/2 (audio) I/O I/O I/O MPEG-2 I/O I/O I/O MPEG-4 I/O I/O I/O MPEG Transport Streams TS AAC I O O AES I I/O I/O H.264 I I/O I/O MainConcept and x264 AVCHD I I I HDV I I/O I/O MPEG - 1/2 (audio) I I/O I/O MPEG - 2 I I/O I/O MPEG - 4 I I/O I/O PCM I I I Matrox MAX H.264 I/O I/O I/O QT codec (*output possible via QT), Requires Matrox MAX hardware - Mac OS X only MPEG System Streams M1A MPEG-1 (audio) I/O I/O I/O M1V MPEG-1 (audio) I/O I/O I/O Episode 6 Format Support Format Support FILE FORMAT CODEC Episode Episode Episode Pro EngineCOMMENTS MPEG-4 MP4 AAC I/O I/O I/O
    [Show full text]
  • Ffmpeg Codecs Documentation Table of Contents
    FFmpeg Codecs Documentation Table of Contents 1 Description 2 Codec Options 3 Decoders 4 Video Decoders 4.1 hevc 4.2 rawvideo 4.2.1 Options 5 Audio Decoders 5.1 ac3 5.1.1 AC-3 Decoder Options 5.2 flac 5.2.1 FLAC Decoder options 5.3 ffwavesynth 5.4 libcelt 5.5 libgsm 5.6 libilbc 5.6.1 Options 5.7 libopencore-amrnb 5.8 libopencore-amrwb 5.9 libopus 6 Subtitles Decoders 6.1 dvbsub 6.1.1 Options 6.2 dvdsub 6.2.1 Options 6.3 libzvbi-teletext 6.3.1 Options 7 Encoders 8 Audio Encoders 8.1 aac 8.1.1 Options 8.2 ac3 and ac3_fixed 8.2.1 AC-3 Metadata 8.2.1.1 Metadata Control Options 8.2.1.2 Downmix Levels 8.2.1.3 Audio Production Information 8.2.1.4 Other Metadata Options 8.2.2 Extended Bitstream Information 8.2.2.1 Extended Bitstream Information - Part 1 8.2.2.2 Extended Bitstream Information - Part 2 8.2.3 Other AC-3 Encoding Options 8.2.4 Floating-Point-Only AC-3 Encoding Options 8.3 flac 8.3.1 Options 8.4 opus 8.4.1 Options 8.5 libfdk_aac 8.5.1 Options 8.5.2 Examples 8.6 libmp3lame 8.6.1 Options 8.7 libopencore-amrnb 8.7.1 Options 8.8 libopus 8.8.1 Option Mapping 8.9 libshine 8.9.1 Options 8.10 libtwolame 8.10.1 Options 8.11 libvo-amrwbenc 8.11.1 Options 8.12 libvorbis 8.12.1 Options 8.13 libwavpack 8.13.1 Options 8.14 mjpeg 8.14.1 Options 8.15 wavpack 8.15.1 Options 8.15.1.1 Shared options 8.15.1.2 Private options 9 Video Encoders 9.1 Hap 9.1.1 Options 9.2 jpeg2000 9.2.1 Options 9.3 libkvazaar 9.3.1 Options 9.4 libopenh264 9.4.1 Options 9.5 libtheora 9.5.1 Options 9.5.2 Examples 9.6 libvpx 9.6.1 Options 9.7 libwebp 9.7.1 Pixel Format 9.7.2 Options 9.8 libx264, libx264rgb 9.8.1 Supported Pixel Formats 9.8.2 Options 9.9 libx265 9.9.1 Options 9.10 libxvid 9.10.1 Options 9.11 mpeg2 9.11.1 Options 9.12 png 9.12.1 Private options 9.13 ProRes 9.13.1 Private Options for prores-ks 9.13.2 Speed considerations 9.14 QSV encoders 9.15 snow 9.15.1 Options 9.16 vc2 9.16.1 Options 10 Subtitles Encoders 10.1 dvdsub 10.1.1 Options 11 See Also 12 Authors 1 Description# TOC This document describes the codecs (decoders and encoders) provided by the libavcodec library.
    [Show full text]
  • AVC, HEVC, VP9, AVS2 Or AV1? — a Comparative Study of State-Of-The-Art Video Encoders on 4K Videos
    AVC, HEVC, VP9, AVS2 or AV1? | A Comparative Study of State-of-the-art Video Encoders on 4K Videos Zhuoran Li, Zhengfang Duanmu, Wentao Liu, and Zhou Wang University of Waterloo, Waterloo, ON N2L 3G1, Canada fz777li,zduanmu,w238liu,[email protected] Abstract. 4K, ultra high-definition (UHD), and higher resolution video contents have become increasingly popular recently. The largely increased data rate casts great challenges to video compression and communication technologies. Emerging video coding methods are claimed to achieve su- perior performance for high-resolution video content, but thorough and independent validations are lacking. In this study, we carry out an in- dependent and so far the most comprehensive subjective testing and performance evaluation on videos of diverse resolutions, bit rates and content variations, and compressed by popular and emerging video cod- ing methods including H.264/AVC, H.265/HEVC, VP9, AVS2 and AV1. Our statistical analysis derived from a total of more than 36,000 raw sub- jective ratings on 1,200 test videos suggests that significant improvement in terms of rate-quality performance against the AVC encoder has been achieved by state-of-the-art encoders, and such improvement is increas- ingly manifest with the increase of resolution. Furthermore, we evaluate state-of-the-art objective video quality assessment models, and our re- sults show that the SSIMplus measure performs the best in predicting 4K subjective video quality. The database will be made available online to the public to facilitate future video encoding and video quality research. Keywords: Video compression, quality-of-experience, subjective qual- ity assessment, objective quality assessment, 4K video, ultra-high-definition (UHD), video coding standard 1 Introduction 4K, ultra high-definition (UHD), and higher resolution video contents have en- joyed a remarkable growth in recent years.
    [Show full text]
  • MPEG-4 AVC/H.264 Video Codecs Comparison Short Version of Report
    MPEG-4 AVC/H.264 Video Codecs Comparison Short version of report Project head: Dr. Dmitriy Vatolin Measurements, analysis: Dr. Dmitriy Kulikov, Alexander Parshin Codecs: DivX H.264 Elecard H.264 Intel® MediaSDK AVC/H.264 MainConcept H.264 Microsoft Expression Encoder Theora x264 XviD (MPEG-4 ASP codec) April 2010 CS MSU Graphics&Media Lab Video Group http://www.compression.ru/video/codec_comparison/index_en.html [email protected] VIDEO MPEG-4 AVC/H.264 CODECS COMPARISON MOSCOW, APR 2010 CS MSU GRAPHICS & MEDIA LAB VIDEO GROUP SHORT VERSION Contents Contents .................................................................................................................... 2 1 Acknowledgments ............................................................................................. 4 2 Overview ........................................................................................................... 5 2.1 Sequences .....................................................................................................................5 2.2 Codecs ...........................................................................................................................5 2.3 Objectives and Testing Rules ........................................................................................6 2.4 H.264 Codec Testing Objectives ...................................................................................6 2.5 Testing Rules .................................................................................................................6
    [Show full text]
  • Globalmeet Collaboration Deployment Guide
    1. Deployment Guide GlobalMeet® Collaboration December 2020 Table of Contents Introduction 3 Contents of this guide 3 Intended audience 3 Version information 3 What’s new in this guide 4 About GlobalMeet Collaboration 5 Meeting features 5 Restricting meeting features 6 Desktop apps 6 Mobile apps 7 GlobalMeet for Outlook 8 File library 8 Storage 8 Supported file formats 8 Video file formats and codecs 9 Integrations 9 Google and Outlook calendars 9 GlobalMeet for Microsoft Teams 10 Language support 10 GlobalMeet meeting room, desktop and mobile apps 10 GlobalMeet for Outlook 10 Administrative portals 10 Branding and customization 11 Logo specs 11 Upload custom logos 12 System requirements 13 Web 13 GlobalMeet desktop apps 13 GlobalMeet mobile apps 14 GlobalMeet for Outlook 15 Network considerations 16 Network traffic 16 Note about network quality 16 Ports and protocols 17 Browser and proxy considerations 17 December 2020 GlobalMeet® Collaboration Deployment Guide | 1 Table of Contents Firewall transversal 17 Required domains 18 GlobalMeet Outlook add-in 18 Bandwidth considerations 19 Bandwidth estimating notes 20 GlobalMeet VRC implementation considerations 21 IP whitelisting (all systems) 21 Supported endpoints 21 H.323 and SIP firewall ports 22 Bandwidth considerations 22 Single sign-on (SAML) 23 Overview of the setup process 23 Required information 24 GlobalMeet login details 24 Data required by GlobalMeet 24 Application installers 25 GlobalMeet desktop apps 25 GlobalMeet mobile apps 25 GlobalMeet browser plugin 25 GlobalMeet for Outlook
    [Show full text]
  • Datastead Multipurpose Directshow Encoder SDK Version 1.1.2
    DATASTEAD SOFTWARE Multipurpose DirectShow Encoder version 1.7.8 March 3, 2021 Copyright © Datastead 2021 www.datastead.com Overview......................................................................................................................................................3 Features...................................................................................................................................................3 System requirements...............................................................................................................................4 Download.................................................................................................................................................4 License.....................................................................................................................................................4 Contact.....................................................................................................................................................4 Limitations of the evaluation version........................................................................................................4 FAQ..............................................................................................................................................................5 Licensing..................................................................................................................................................5 Evaluation version....................................................................................................................................5
    [Show full text]