Feature #3080 Transcoding with HW Support 2015-09-15 15:00 - B C

Total Page:16

File Type:pdf, Size:1020Kb

Feature #3080 Transcoding with HW Support 2015-09-15 15:00 - B C Tvheadend - Feature #3080 Transcoding with HW support 2015-09-15 15:00 - B C Status: Fixed Start date: 2015-09-15 Priority: Normal Due date: Assignee: John Törnblom % Done: 0% Category: Transcoding Estimated time: 0.00 hour Target version: Description Would it be possible to add hwaccelerated transcoding via Intel QuickSync Video to tvheadend? https://www.ffmpeg.org/general.html#Intel-QuickSync-Video Building with the dispatcher was quite easy, but unfortunately it seems it can't be set as default and needs to be enabled in code and I've never done anything on the transcoding layer. As many might run tvh on a recent Intel CPU, this might benefit a lot of people. as always, thank you for this great peace of software History #1 - 2015-09-16 13:57 - C vH You need at least ffmpeg 2.8 and we are talking about speedup of >twice with ~nearly zero cpu usage at all (mainly depends on the used cpu)! #2 - 2015-09-19 10:56 - B C great, I see that libmfx was also included in the recent update to ffmpeg 2.8, so all prerequesites are met, we now "just" need an option to enable hwaccel #3 - 2015-09-19 11:39 - Jaroslav Kysela It won't work. The preliminary codes in Makefile.ffmpeg are there, but the quality of that library is very low (C++, why?). I gave up for the moment. #4 - 2015-09-19 12:09 - B C i know, that's why i put just in quotation marks, but thanks for trying #5 - 2015-09-29 18:22 - Jaroslav Kysela The --enable-libmfx and --enable-libmfx_static options should work now... (For --enable-libffmpeg_static builds).. I've not tested it at the moment. #6 - 2015-09-29 18:23 - Jaroslav Kysela It enabled these decoders/encoders in ffmpeg: DECODERS += mpeg2_qsv h264_qsv hevc_qsv ENCODERS += mpeg2_qsv h264_qsv hevc_qsv #7 - 2015-09-29 22:42 - B C Thank you for your continous support. There seems to be a problem with the pixel format, I get the following messages: 2015-09-29 22:38:40.117 libav: left block unavailable for requested intra4x4 mode -1 at 0 33 2015-09-29 22:38:40.117 libav: error while decoding MB 0 33, bytestream 12216 2015-09-29 22:38:40.117 libav: concealing 1009 DC, 1009 AC, 1009 MV errors in I frame 2015-09-29 22:38:40.120 libav: Specified pixel format yuv420p is invalid or not supported 2015-09-29 22:38:40.120 transcode: 0005: Unable to open h264_qsv encoder Keep up the good work #8 - 2015-09-29 22:45 - The Troll Hi, take a look at https://github.com/TheTroll/tvheadend, specifically in the transcoding.c file. Quicksync transcoding works with this version. #9 - 2015-09-30 08:35 - Jaroslav Kysela 2021-09-24 1/17 @The Troll: Could you create a pull request for a review ? #10 - 2015-09-30 08:54 - B C I did try TheTrolls repository but did not succeed either, although with a slightly different error message. I'm running on an i5-4250U (HD Graphics 5000) 2015-09-30 08:41:30.662 transcode: 000A: Using decoder mpeg2video 2015-09-30 08:41:30.662 transcode: 000A: SD->SD SW scaling crashes, forcing dest height to 600 2015-09-30 08:41:30.662 transcode: 000A: 1:MPEG2VIDEO 720x480 > H264 900x600 (h264_qsv) 2015-09-30 08:41:30.662 transcode: 000A: Using decoder mp2 2015-09-30 08:41:30.662 transcode: 000A: 2:MPEG2AUDIO > AAC (aac) 2015-09-30 08:41:30.959 libav: skipped MB in I frame at 25 23 2015-09-30 08:41:30.959 libav: Warning MVs not available 2015-09-30 08:41:30.960 libav: concealing 180 DC, 180 AC, 180 MV errors in I frame 2015-09-30 08:41:30.964 transcode: Transcode using codec h264_qsv 2015-09-30 08:41:30.966 libav: Error initializing an internal MFX session 2015-09-30 08:41:30.966 transcode: 000A: Unable to open h264_qsv encoder #11 - 2015-09-30 09:51 - Jaroslav Kysela Is Intel Media SDK present in your system ? #12 - 2015-09-30 10:00 - B C not yet, I didn't know I need it, I will install it shortly #13 - 2015-09-30 11:07 - B C still it seems I'm doing something wrong. Installed the SDK, rebooted, distclean, configure.... master and TheTrolls Version still failing to use QSV. Another error message: 2015-09-30 10:53:21.488 [ ERROR] libav: Error initializing an internal MFX session 2015-09-30 10:53:21.488 [ ERROR] transcode: 0001: Unable to decode video (-38, function not imlpemented) ./configure --enable-libffmpeg_static --enable-libmfx_static --enable-libx265 --enable-libmfx BTW, there is nothing like a --enable-libx265_static, and --enable-libmfx_static alone (w/o --enable-libmfx) I no longer have QSV Decoders available.. #14 - 2015-09-30 11:49 - B C a suspect my multiple libva and libdrm versions on the system are spoiling things, I will have to sort this out without killing everything, so I will need some time #15 - 2015-09-30 23:22 - B C found it, I need kernel 3.14.5 for the Media SDK patches (I really should have gone through the whole guide), will see if all my hardware is happy with it in the next view days. #16 - 2015-10-30 16:34 - Felix Wittke Hi. I tried intel quick sync on both. CentOS and Ubuntu and all times i get this error. libav: Error initializing an internal MFX session by trolls version. The official tvheadend git i get Unable to open h264_qsv encoder So what should i do to get Quicksync working? do you have any ideas? Happy to get an answer Regards Felix #17 - 2015-10-30 19:54 - B C first of all make sure samples from mediasdk are working. if that is the case i should have a solution for current master. if not I can only walk you through on debian #18 - 2015-10-30 22:48 - Felix Wittke 2021-09-24 2/17 Hi thanks for your fast answer. i tried to get the samples working but i dont know how. because the guide will to compile with perl but the file doesnt exist. So can you please provide me your solution for the current master? the guide for debian is also very interesting for me. happy to hearing from you again regards Felix #19 - 2015-10-30 23:09 - B C you don't need to build the samples, they are in /opt/intel/mediasdk/samples/_bin/x64 google for a .h264 elementary stream test file and try the first sample from the install guide, so we know if installation is correct #20 - 2015-10-30 23:26 - Felix Wittke Hi. Just tried I get: ./sample_multi_transcode_drm -i::h264 test_stream.264 -o::h264 test_out.h264 -hw Multi Transcoding Sample Version 6.0.16043166.166 libva info: VA-API version 0.35.0 libva info: va_getDriverName() returns 0 libva info: User requested driver 'iHD' libva info: Trying to open /opt/intel/mediasdk/lib64/iHD_drv_video.so libva info: Found init function __vaDriverInit_0_32 libva info: va_openDriver() returns 0 Ungültiger Maschinenbefehl this is centos which is recomend bye intel. but the same error i get on ubuntu with kernel 3.14.5 Its a 4gen CPU and on windows Quicksync works fine Did you had any idea? #21 - 2015-10-30 23:47 - B C you installed with the corresponding install script? kernel patches applied w/o an error message? I also was not lucky with intels gold configuration, so I did go with generic on debian (so should be nearly the same on ubuntu) manually. started with a minimum install, compiled 3.14.5 with patches, removed libdrm and libva from /usr/lib64 (and i think they are also in x86_64-linux-gnu). when you ./configure libdrm and libva use --prefix=usr --libdir=lib64 reboot and try the sample again #22 - 2015-10-30 23:59 - Felix Wittke Yes now in CentOS i have installed with the install Script and follow the guide. No errors when building the kernel and install the kernel patches So you think i should go back to ubuntu? Or should i try to compile libdrm and libva again with this settings in CentOS? #23 - 2015-10-31 11:35 - B C your choice, my install is on debian, that's the distribution I can help you (must be pre gcc 5, so current stable jessie eg) #24 - 2015-10-31 12:44 - Felix Wittke Ok i will try. I just figured out that may cpu G1840 Celeron is may not supported under linux. So first i went to get a supported cpu. Or do you know whether my cpu is working under linux? Can you provide me anyway your solution for the curret master? Regards #25 - 2015-10-31 12:49 - B C at least it's not on the supported list I will provide patches for current master shortly #26 - 2015-11-03 15:52 - Felix Wittke 2021-09-24 3/17 So finally i got a new CPU. the intel samples are wotking fine. Tvheadend give me the same error massages. So i dont know what to do. Regards Felix #27 - 2015-11-03 16:06 - B C quick and dirty try the following: copy the content of /opt/intel/mediasdk/lib64 to your libs dir copy TheTrools /src/plumbing/transcoding.c to master. configure tvh with ./configure --enable-libffmpeg_static --enable-libx265 --enable-libmfx if you have a braswell cpu most of TheTrolls fixes are not needed (just the correct pix_fmt stuff).
Recommended publications
  • Copyright by Jian He 2020 the Dissertation Committee for Jian He Certifies That This Is the Approved Version of the Following Dissertation
    Copyright by Jian He 2020 The Dissertation Committee for Jian He certifies that this is the approved version of the following dissertation: Empowering Video Applications for Mobile Devices Committee: Lili Qiu, Supervisor Mohamed G. Gouda Aloysius Mok Xiaoqing Zhu Empowering Video Applications for Mobile Devices by Jian He DISSERTATION Presented to the Faculty of the Graduate School of The University of Texas at Austin in Partial Fulfillment of the Requirements for the Degree of DOCTOR OF PHILOSOPHY THE UNIVERSITY OF TEXAS AT AUSTIN May 2020 Acknowledgments First and foremost, I want to thank my advisor Prof. Lili Qiu, for the support and guidance I have received over the past few years. I appreciate all her contributions of time, ideas and funding to make my Ph.D. experience productive and stimulating. The enthusiasm she has for her research signifi- cantly motivated to concentrate on my research especially during tough times in my Ph.D. pursuit. She taught me how to crystallize ideas into solid and fancy research works. I definitely believe that working with her will help me have a more successful career in the future. I also want to thank all the members in my dissertation committee, Prof. Mohamed G. Gouda, Prof. Aloysius Mok and Dr. Xiaoqing Zhu. I owe many thanks to them for their insightful comments on my dissertation. I was very fortunate to collaborate with Wenguang Mao, Mubashir Qureshi, Ghufran Baig, Zaiwei Zhang, Yuchen Cui, Sangki Yun, Zhaoyuan He, Chenxi Yang, Wangyang Li and Yichao Chen on many interesting works. They always had time and passion to devote to my research projects.
    [Show full text]
  • Transcoding SDK Combine Your Encoding Presets Into a Single Tool
    DATASHEET | Page 1 Transcoding SDK Combine your encoding presets into a single tool MainConcept Transcoding SDK is an all-in-one production tool offering HOW DOES IT WORK? developers the ability to manage multiple codecs and parameters in one • Transcoding SDK works as an place. This streamlined SDK supports the latest encoders and decoders additional layer above MainConcept from MainConcept, including HEVC/H.265, AVC/H.264, DVCPRO, and codecs. MPEG-2. The transcoder generates compliant streams across different • The easy-to-use API replaces the devices, media types, and camcorder formats, and includes support for need to set conversion parameters MPEG-DASH and Apple HLS adaptive bitstream formats. Compliance manually by allowing you to configure ensures content is delivered that meets each unique specification. the encoders with predefined profiles, letting the transcoding engine take Transcoding SDK was created to simplify the workflow for developers care of the rest. who frequently move between codecs and output to a multitude of • If needed, manual control of the configurations. conversion process is supported, including source/target destinations, export presets, transcoding, and filter AVAILABLE PACKAGES parameters. HEVC/H.265 HEVC/H.265 encoder for creating HLS, DASH-265, and other ENCODER PACKAGE generic 8-bit/10-bit 4:2:0 and 4:2:2 streams in ES, MP4 and TS file formats. Includes hardware encoding support using Intel Quick KEY FEATURES Sync Video (IQSV) and NVIDIA NVENC (including Hybrid GPU) for Windows and Linux. • Integrated SDKs for fast deployment HEVC/H.265 SABET HEVC/H.265 encoder package plus Smart Adaptive Bitrate Encod- of transcoding tools ENCODER PACKAGE ing Technology (SABET).
    [Show full text]
  • MSI Afterburner V4.6.4
    MSI Afterburner v4.6.4 MSI Afterburner is ultimate graphics card utility, co-developed by MSI and RivaTuner teams. Please visit https://msi.com/page/afterburner to get more information about the product and download new versions SYSTEM REQUIREMENTS: ...................................................................................................................................... 3 FEATURES: ............................................................................................................................................................. 3 KNOWN LIMITATIONS:........................................................................................................................................... 4 REVISION HISTORY: ................................................................................................................................................ 5 VERSION 4.6.4 .............................................................................................................................................................. 5 VERSION 4.6.3 (PUBLISHED ON 03.03.2021) .................................................................................................................... 5 VERSION 4.6.2 (PUBLISHED ON 29.10.2019) .................................................................................................................... 6 VERSION 4.6.1 (PUBLISHED ON 21.04.2019) .................................................................................................................... 7 VERSION 4.6.0 (PUBLISHED ON
    [Show full text]
  • Processing Multimedia Workloads on Heterogeneous Multicore Architectures
    Doctoral Dissertation Processing Multimedia Workloads on Heterogeneous Multicore Architectures H˚akon Kvale Stensland February 2015 Submitted to the Faculty of Mathematics and Natural Sciences at the University of Oslo in partial fulfilment of the requirements for the degree of Philosophiae Doctor © Håkon Kvale Stensland, 2015 Series of dissertations submitted to the Faculty of Mathematics and Natural Sciences, University of Oslo No. 1601 ISSN 1501-7710 All rights reserved. No part of this publication may be reproduced or transmitted, in any form or by any means, without permission. Cover: Hanne Baadsgaard Utigard. Printed in Norway: AIT Oslo AS. Produced in co-operation with Akademika Publishing. The thesis is produced by Akademika Publishing merely in connection with the thesis defence. Kindly direct all inquiries regarding the thesis to the copyright holder or the unit which grants the doctorate. Abstract Processor architectures have been evolving quickly since the introduction of the central processing unit. For a very long time, one of the important means of increasing per- formance was to increase the clock frequency. However, in the last decade, processor manufacturers have hit the so-called power wall, with high heat dissipation. To overcome this problem, processors were designed with reduced clock frequencies but with multiple cores and, later, heterogeneous processing elements. This shift introduced a new challenge for programmers: Legacy applications, written without parallelization in mind, gain no benefits from moving to multicore and heterogeneous architectures. Another challenge for the programmers is that heterogeneous architecture designs are very different with respect to caches, memory types, execution unit organization, and so forth and, in the worst case, a programmer must completely rewrite the application to obtain the best performance on the new architecture.
    [Show full text]
  • Mechdyne-TGX-2.1-Installation-Guide
    TGX Install Guide Version 2.1.3 Mechdyne Corporation March 2021 TGX INSTALL GUIDE VERSION 2.1.3 Copyright© 2021 Mechdyne Corporation All Rights Reserved. Purchasers of TGX licenses are given limited permission to reproduce this manual, provided the copies are for their use only and are not sold or distributed to third parties. All such copies must contain the title page and this notice page in their entirety. The TGX software program and accompanying documentation described herein are sold under license agreement. Their use, duplication, and disclosure are subject to the restrictions stated in the license agreement. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. This publication is provided “as is” without warranty of any kind, either express or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, or non- infringement. Any Mechdyne Corporation publication may include inaccuracies or typographical errors. Changes are periodically made to these publications, and changes may be incorporated in new editions. Mechdyne may improve or change its products described in any publication at any time without notice. Mechdyne assumes no responsibility for and disclaims all liability for any errors or omissions in this publication. Some jurisdictions do not allow the exclusion of implied warranties, so the above exclusion may not apply. TGX is a trademark of Mechdyne Corporation. Windows® is registered trademarks of Microsoft Corporation. Linux® is registered trademark of Linus Torvalds.
    [Show full text]
  • NVIDIA GRID™ Virtual PC and Virtual Apps
    NVIDIA VIRTUAL PC AND VIRTUAL APPS GPU-ACCELERATED PERFORMANCE FOR THE VIRTUAL ENTERPRISE Desktop virtualization has been around for many Reason 1: Flexible Workers Require a years, but some organizations still struggle to Seamless Experience deliver a user experience that stands up to what As organizations form return to work plans, workers have enjoyed on physical PCs. Remote it is clear that remote work will be part of the offices, virtual collaboration, and fast access long term solution. By allowing employees to seamlessly transition between the office and to information, coupled with the rising use of home, organizations are adopting the flexible modern, graphics-intensive applications, make office model. User experience has become more GPUs more relevant than ever. important than ever. Video collaboration, as well as simple productivity applications found in Microsoft NVIDIA® Virtual PC (vPC) and Virtual Apps (vApps) Windows 10 (Win 10), Office 365, web browsers, and improve virtual desktops and applications for streaming video can benefit from GPU acceleration. every user, with proven performance built on NVIDIA GPUs for exceptional productivity, security, and IT manageability. The virtualization software divides NVIDIA GPU resources, so the GPU can be 82% of organizations shared across multiple virtual machines running have the option of any application. working remotely. Here are three powerful reasons to deploy vPC and vApps in your data center. Traditional desktop and laptop PCs boost application performance with embedded or integrated GPUs. NVIDIA VIRTUAL PC AND VIRTUAL APPS | SOlutiON OvERVIEW | SEP21 However, when making the transition from physical to Reason 3: There Are More Users to Support virtual, IT has traditionally left the computer graphics Than Ever Before burden—such as from DirectX and OpenGL workloads Today’s virtual desktops and applications require and video streaming—to be handled by a server CPU.
    [Show full text]
  • Volume 2 – Vidéo Sous Linux
    Volume 2 – Vidéo sous linux Installation des outils vidéo V6.3 du 20 mars 2020 Par Olivier Hoarau ([email protected]) Vidéo sous linux Volume 1 - Installation des outils vidéo Volume 2 - Tutoriel Kdenlive Volume 3 - Tutoriel cinelerra Volume 4 - Tutoriel OpenShot Video Editor Volume 5 - Tutoriel LiVES Table des matières 1 HISTORIQUE DU DOCUMENT................................................................................................................................4 2 PRÉAMBULE ET LICENCE......................................................................................................................................4 3 PRÉSENTATION ET AVERTISSEMENT................................................................................................................5 4 DÉFINITIONS ET AUTRES NOTIONS VIDÉO......................................................................................................6 4.1 CONTENEUR................................................................................................................................................................6 4.2 CODEC.......................................................................................................................................................................6 5 LES OUTILS DE BASE POUR LA VIDÉO...............................................................................................................7 5.1 PRÉSENTATION.............................................................................................................................................................7
    [Show full text]
  • NVIDIA Quadro by PNY Spring 07 Sales Presentation
    VR/AR Enterprise Value Propositions Data immersion and 3D conceptualization NVIDIA RTX Server High-Performance Visual Computing in the Data Center NVIDIA RTX Server Do your life’s work from anywhere Creators, designers, data scientists, engineers, government workers, and students around the world are working or learning remotely wherever possible. They still need the powerful performance they relied on in the office, lab, and classroom to keep up with complex workloads like interactive graphics, data analytics, machine learning, and AI. NVIDIA RTX Server gives you the power to tackle critical day-to-day tasks and compute- heavy workloads – from home or wherever you need to work. Visual Computing Today Increasing daily workflow challenges ~6.5 Billion Render Hours Per Year 30,000 New Products Launch Each Year 2.5 Quintillion Bytes of Data Created Each Day 80% of Applications Utilize AI by 2020 $12.9 Trillion in Global Construction by 2022 $13.45 Billion Simulation Software Market by 2022 American Gods image courtesy of Tendril NVIDIA RTX Server High-performance, flexible visual computing in the data center Highly Flexible Reference Design Delivered by Select OEM Partners I Scalable Configurations Ii Cost Effective and Power Efficient Powerful Virtual Workstations Accelerated Rendering Data Science CAE and Simulation NVIDIA Turing The power of Quadro RTX from desktop to data center Physical Workstations Virtual Workstations NVIDIA RTX Technology Ray Tracing AI Visualization Compute NVIDIA RTX Server Spans Industries Near universal applicability
    [Show full text]
  • NVIDIA GRID™ Virtual PC and Virtual Apps
    NVIDIA GRID VIRTUAL PC AND VIRTUAL APPS GPU-ACCELERATED PERFORMANCE FOR THE VIRTUAL ENTERPRISE Desktop virtualization has been around for many Reason 1: Every App Is a Graphics App. years, but some organizations still struggle to Even simple productivity applications found in deliver a user experience that stands up to what Microsoft Windows 10 (Win 10), Office 2016, web workers have enjoyed on physical PCs. While browsers, and streaming video can benefit from IT has traditionally settled for a “good enough” GPU acceleration. A recent study showed that the number of applications that use graphics user experience, today’s workforce is more acceleration has doubled since 2012. Today, over tech savvy and increasingly made up of digital 60 percent of enterprise users work with at least natives who expect a dynamic, multimedia-rich one of these applications.1 experience. NVIDIA GRID® Virtual PC (GRID vPC) and GRID® Virtual Apps (GRID vApps) improve virtual desktops and The number of graphics accelerated applications has applications for every user, with proven performance doubled since 2012.¹ built on NVIDIA® GPUs for exceptional productivity, security, and IT manageability. The virtualization software divides NVIDIA GPU resources, so the GPU can be shared across multiple virtual machines Traditional desktop and laptop PCs boost application running any application. performance with embedded or integrated GPUs. Here are three powerful reasons to deploy GRID vPC However, when making the transition from physical to and GRID vApps in your data center. virtual, IT has traditionally left the computer graphics burden—such as from DirectX and OpenGL workloads 1 Data from Lakeside Software’s SysTrack Community, 2017.
    [Show full text]
  • Zefektivnění Práce V Kreativních Softwarech Pomocí Nových Technologií Společnosti NVIDIA
    JANÁČKOVA AKADEMIE MÚZICKÝCH UMĚNÍ V BRNĚ Divadelní fakulta Ateliér audiovizuální tvorby a divadla Zefektivnění práce v kreativních softwarech pomocí nových technologií společnosti NVIDIA Diplomová práce Autor práce: Bc. Matej Hudák Vedoucí práce: MgA. Tomáš Gruna Oponent práce: Ing. Dalibor Vlašín Brno 2021 Bibliografický záznam HUDÁK, Matej. Zefektivnění práce v kreativních softwarech pomocí nových technologií společnosti NVIDIA [Streamlining of work in creative softwares using the new NVIDIA technologies]. Brno: Janáčkova akademie múzických umění v Brně, Divadelní Fakulta, Ateliér audiovizuální tvorby a divadla, 2021. 83 stran. Vedoucí diplomové práce MgA. Tomáš Gruna. Anotace Tato diplomová práce se zabývá možnostmi zvýšení účinnosti práce v kreativních softwarech pomocí nových technologií společnosti NVIDIA. Za asistence profesionálů, zkoumá v jednotlivých softwarech využitelnost těchto technologií, popisuje jejich výhody, nevýhody a samotný vliv na pracovní postup. Také s touto problematikou seznamuje čtenáře. Annotation This thesis deals with the possibilities of improving effectiveness of work with creative softwares using NVIDIA technologies. It investigates in the capabilities of these technologies under the supervision of experts. It describes advantages and disadvantages of every examined software and the influence on the working procedures. Furthermore, it acquaints the reader with this problematic. Klíčová slova software, NVIDIA, technologie, grafická karta, kreativní, film, herní, průmysl, fotka, Adobe, Premiere, Photoshop, DaVinci Resolve, OBS, vysílaní, Unreal Engine, NGX, Maxine, Broadcast Keywords software, NVIDIA, technology, GPU, graphics, card, creative, gaming, film, movie, photo, Adobe, Premiere, Photoshop, DaVinci Resolve, OBS, stream, Unreal Engine, NGX, Maxine, Broadcast Prohlášení Prohlašuji, že jsem předkládanou diplomovou práci zpracoval samostatně a použil jen uvedené prameny a literaturu. V Brně, dne 1.5.2021 Bc.
    [Show full text]
  • Trueconf Brings 4K Video Conferencing to Smart Tvs Trueconf Introduced 4K (2160P) Video Calls to Smart Tvs for NVIDIA SHIELD TV Users
    TrueConf Brings 4K Video Conferencing to Smart TVs TrueConf introduced 4K (2160p) video calls to smart TVs for NVIDIA SHIELD TV users. Backed by NVIDIA, TrueConf has released a new solution to run 4K video conferences on smart TVs based on NVIDIA SHIELD TV consoles. High quality video conferencing has become possible thanks to SHIELD TV processing powers: powerful NVIDIA Tegra X1 processor equipped with a 256-core graphics engine based on Maxwell architecture with support for hardware encoding of video streams at 60 FPS. The integration is powered by NVIDIA NVENC technology, which has been supported in TrueConf for Android application. Video is transmitted at 2160p and 30 FPS. Incoming and outgoing streams are processed using H.264 codec. TrueConf integration turns NVIDIA SHIELD TV into a full-scaled Android-based 4K video conferencing endpoint for living rooms or offices. Just connect a USB camera and TV to your console to call your friends and colleagues and enjoy high-definition video on a large TV screen. With NVIDIA SHIELD TV, your living room — and any other TV-equipped room — can easily become a meeting space. Use your console as a video conferencing endpoint to run video sessions. TrueConf collaboration tools allow you to chat, share your content, record video conferences and much more. TrueConf for Android TV users have access to all the features of TrueConf for Android, while the application interface is fully adapted for gamepad or remote control. The app is already available on Google Play Market. “We are pleased to introduce new features for NVIDIA SHIELD TV users.
    [Show full text]
  • Delivering Transformational User Experience with Blast Extreme Adaptive Transport and NVIDIA GRID
    Delivering Transformational User Experience with Blast Extreme Adaptive Transport and NVIDIA GRID. Kiran Rao – Director, Product Management at VMware Luke Wignall – Sr. Manager, Performance Engineering at NVIDIA © 2014 VMware Inc. All rights reserved. Challenges for Virtual Graphics Professional graphics workloads require great user experience in both LAN & WAN environments. UX Require Rely on heavy User density is “snappy” encoding and limited by CPU experience decoding bottleneck VMware Horizon Gets Even Better with NVIDIA GRID NVIDIA GRID NVIDIA GRID Virtual PC Virtual Workstation NVIDIA NVIDIA Quadro QuadroGraphics Driver Driver Driver NVIDIA GRID vGPU manager vSphere vGPU vGPU NVSMI, NVSMI, NVML Scheduling – 3D, CE, NVENC, NVDEC NVIDIA Tesla GPU NVIDIA GRID management tools GRID management NVIDIA H.264 Encode Server Blast Extreme Protocol Blast Extreme: Unified Protocol for All VMware Products • A new VMware controlled protocol for a richer app & desktop experience • Protocol optimized for mobile and overall lower client TCO • Horizon remote experience features work with Blast Extreme and updated Horizon clients • Performance on par or exceeding all competitive protocols • Rapid client proliferation from strong Horizon Client ecosystem 2013 2015 2016 2017 BEAT 5 Blast Extreme Designed for All Use Cases Windows VDI, RDSH Apps/Desktop & Linux VDI SDKs Feature-Rich User Experience Hosted Apps Printing Scanning Smart USB Audio In/Out Client Drive Windows Media File Type Unified Webcams & RDS & Imaging Card Redirection Redirection Association
    [Show full text]