Jump to content

Search the Community

Showing results for tags 'video'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 13 results

  1. uniGUI WebRTC Media Recording uniGUI WebRT Media Recording (Click to watch animation) Description Recording videos via browser without using specific JavaScript components or libraries is a bit complicated for several reasons, the main one being the existence of several browsers and encoders. Not to mention the way to deal with different devices. WebRTC came to solve this mess and make it easier to deal with media (sound and video) in your browser. This example shows how to record video, audio, your desktop or take a simple photo following your device's settings, resolution selection, codec and other aspects. It works in all the most current browsers and in mobile and desktop environments. If you want to integrate video recording into your app, this is the ideal solution. Resources and Details You need a domain with SSL to access any media device. It will work in you local computer but not if you don't host a secure domain. Self-signed certificates to domains won't work either. Be aware. Support for all current browsers. No need to install anything. Demo uniGUI application has no restrictions or dependencies. But be aware of time length. Longer the video, longer the time to encode and save to uniGUI server. Record video, audio or even you desktop image. Or just take a snapshot. Configurable device, resolution, codec e bitrate. Preview video in new tab. Even preview before saving to uniGUI. Create and Save a thumbnail image from your video in the same video folder. Full screen mode. Snapshot frame and save to uniGUI. Save you video direct to uniGUI and do whatever you want or just download it. No other third party components. Easy to use in uniGUI. A practical solution to virtual classes, products demonstration, training, sales tools etc. Easy to change code and embed in your uniGUI projects. No hidden costs or fees. Yes, we offer consulting on adapting this example to your projects. Contact us to receive a quote. more detail at the link below https://unigui.com.br/uniGUIWebRTCVideoRecording.html
  2. uniGUI Video Chat with MediaSoup Lib Chat Using MediaSoup JS Lib Description Using MediaSoup Video Chat is straight forward solution, as it's browser based with easy integration to uniGUI, Node.js and Docker. All browsers are supported! Using mobile? No problem, you can either use your mobile web browser or our fully-featured uniGUI app. The MediaSoup JS platform work like a glove with uniGUI. Easy to use and implement in your apps and will not make a dent in uniGUI's apps performance since it uses WebRTC and works as peer-to-peer connection. You can integrate it and modify as you wish. Below, see the main features and resources. Resources and Details Support for all current browsers. No need to install anything. Demo uniGUI application has no restrictions or dependencies. You don't even need a domain to run it (but is very recomended that you host your own server as any uniGUI app with a SSL domain). Web and native WebRTC for integration. HD audio, video and text chat in rooms Share you desktop screen between participants of the same room. Invite and share to your chat rooms by direct link in WhatsApp, Telegram and other app or networks social midia. Define you VideoChat rooms name and who produces or just consumes streaming. Enter a room with just on click in a shared link in desktop or mobile. Peer-to-peer connection. No need for a dedicated domain per room. Very low bandwidth consumption. No other third party components. Easy to use in uniGUI. A practical solution to virtual classes, products demonstration, training, sales tools etc. Easy to adapt code and embed in your uniGUI projects. See more details and try it on-line at the link below: https://www.unigui.com.br/uniGUIVCMediaSoup.html
  3. Hello, I am creating set of components. Feel free to send me javascript libraries to make them an UniGUI component and add to this package. You can find good libraries from this web sites : https://www.javascripting.com http://www.bestjquery.com/ https://bestofjs.org/ https://awesomerepos.com/javascript # Changelog ## [10 Sep 2019] - UniOSPaypalButtons Link ## [11 Apr 2020] - UniWebCam and UniVideoPanel Link ## [09 Jul 2020] UniFlowChart and UnimBarcodeScanner Link ## [18 Aug 2020] UniQZ Link Please change this based on your delphi version. http://docwiki.embarcadero.com/RADStudio/Rio/en/Compiler_Versions UniGUIOS.dpk
  4. uniGUi Professional Video Chat is the perfect solution to integrate video chats to your apps using uniGUI. See all info, price and details at the link below: https://unigui.com.br/uniGUIVC.html Also, you can download a trial uniGUI app at the link above and see who it works.
  5. Hey guys.... I'm cleaning up my old project files and noticed that I made a player for HTML5 by request of a friend and I forgot around here and was about to delete it. I'm publishing this example for novice users who don't want/know how to use other video player JavaScript libraries (there are dozens) and need something simple to play files already stored on a server. So the purpose of this example is: 1- Use for beginning uniGUI users who don't know how to use the power of uniURLFrame or uniHTMLFrame. 2- Play local video files (MP4) that are in a folder on the server. Ideal for reviewing videos in a saved folder or training video in a company, which is why I made this example 2 years ago for a friend with this problem. 3- Do not use anything other than uniGUI. You can do a lot with other players but what is built in to HTML5 and compatible with most browsers is very powerful, light and has interesting basic features. 4- It's not a YouTube player! I've already released a specific example for YouTube. Again, this is simple code and is intended to help only novice users. Certainly most users are beyond the need for the solution presented in this code. VideoDemo Online: https://www.unigui.com.br/files/uniGUIHTML5Video.webp Download directly from here or from our Telegram group. In Portuguese - uniGUIBrazil https://t.me/uniguiBrazil In English - uniGUiExpress: https://t.me/uniguiexpress See at htttp//www.unigui.express
  6. Searching the web I found this code for implementing video caching:- ' <script>'+ ' // -- Create a MediaSource and attach it to the video'+ ' const videoTag = document.getElementById("MyVideoTag");'+ ' const myMediaSource = new MediaSource();'+ ' const url = URL.createObjectURL(myMediaSource);'+ ' videoTag.src = url;'+ ' // 1. add source buffers'+ ' const audioSourceBuffer = myMediaSource.addSourceBuffer(''audio/mp4; codecs="mp4a.40.2"'');'+ ' const videoSourceBuffer = myMediaSource.addSourceBuffer(''video/mp4; codecs="avc1.64001e"'');'+ ' // 2. download and add our audio/video to the SourceBuffers for the audio SourceBuffer'+ ' fetch("https://mydomain.com/audio.mp4").then (function(response)'+ ' {'+ ' // The data has to be a JavaScript ArrayBuffer'+ ' return response.arrayBuffer();'+ ' }'+ ' ).then (function(audioData) '+ ' {'+ ' audioSourceBuffer.appendBuffer(audioData);'+ ' }'+ ' );'+ ' // the same for the video SourceBuffer'+ ' fetch("https://mydomain.com/video.mp4").then (function(response)'+ ' {'+ ' // The data has to be a JavaScript ArrayBuffer'+ ' return response.arrayBuffer();'+ ' }'+ ' ).then (function(videoData)'+ ' {'+ ' videoSourceBuffer.appendBuffer(videoData);'+ ' }'+ ' );'+ ' </script>'+ I have added this script to the HtmlFrame that contains the video tag with the id="MyVideoTag" and ask if any other code is required to activate this javascript caching ? Thanks in advance
  7. == Eng-INT uniGui Does YouTube Player via API A simple example demonstrating how to use Youtube InFrame play but with itssimplest API to just control the video playback. More commands can be easily adapted for use in uniGUI using their controls natively. == PT-BR uniGui Does YouTube Player via API Um exemplo simples demonstrando como usar o Youtube mas com a sua API mais simples para apenas controlar a reprodução do video. Mais comando podem ser facilmente adaptados para uso no uniGUI usando nativamente os seus controles. More info. at https://www.unigui.com.br/democetera/
  8. gostaria de saber se alguém tem algum exemplo de carregamento de fotos e vídeos em minuaturas e quando clicar em exibir em tela cheia. Tipo um album de photos e videos? I would like to know if anyone has any examples of uploading photos and videos in thumbnails and when to click view in full screen. Like a photo and video album?
  9. Login Form with a Background video Project Repository for a Initial Login Screen for desktop projects with background video and informative DIV and pause / play button. Adapted example from W3School (http://wwww.w3schools.com). Panel with Gradient in two colors and centralized shade to facilitate the definition of your login controls. Note that it is a borderless LoginForm and properly configured to work. Future versions like this example and others you will find easily in the portal http://www.unigui.com.br Source code right below... have fun. Project available for purchase at https://www.uniguiexpress.com
  10. Olá comunidade uniGUI Brasil, venho divulgar o lançamento do curso uniGUI, obrigado. Descontos exclusivos para quem comprar os Cursos Pacote Fenix http://app.fenixerp.com.br/unigui/ * Pacote uniSF - 115,00 (20% desconto para quem fizer o curso) * Pacote Gráficos - 100,00 (obrigatório ter o uniSF) os dois pacotes ai tem 25% desconto no total (Desconto válido para pgto no Itau, compra via mercado pago/pagseguro será acrescido os custos) Pacote Falcon https://store.falconsistemas.com.br/ Descontos de 10, 15, 20 e 30% de desconto dependendo do componente ou da quantidade de componente adquirido (consultar). Atenciosamente, Georges Soares
  11. How to play video mp4 and add mime type. add in ServerModule ,but ... MimeTable.AddMimeType('mp4', 'vedio/mp4'); MimeTable.AddMimeType('flv', 'application/x-flash-vedio'); Thanks.
  12. Olá todos Fiz alguns pequenos vídeos e espero que possa ajudar os iniciantes como eu no uso desta ferramenta. Eles estão aqui: http://www.pontodeensino.com/index.php/blog Aceito sugestões, críticas e comentários, se gostarem divulgem. att Emiliano
  13. Olá Fiz um breve video mostrando o unigui, divulgem: http://www.youtube.com/watch?v=hbceBk892p8 grato fui...
×
×
  • Create New...