Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. C

    -- Does a mobile device temporarily store the live video as its being live streamed?

    On a mobile device, during the process of live streaming, does the live video stream temporarily reside on the device's local storage or in memory as it is being live streamed?
  2. C

    Regarding GitHub repsoitory - is this code useable in it's current state?

    Many thanks for your replies. I have more questions about the original link's product description that I posted: GitHub - apivideo/api.video-ios-live-stream: iOS RTMP live stream client. Made with ♥ by api.video (https://api.video) It states "This module is an easy way to broadcast RTMP live...
  3. C

    Regarding GitHub repsoitory - is this code useable in it's current state?

    Many thanks for your informative reply. Another question, regarding this GitHub - pinkjuice66/VideoStreaming: iOS Video Streaming Demo App because it's called a "iOS Video Streaming Demo App", could you tell me does that mean it can be downloaded as-is (to be used for live stream test), onto an...
  4. C

    Regarding GitHub repsoitory - is this code useable in it's current state?

    Thanks for your reply. I've looked at Windows Visual Studio and Flutter on Windows 10. Which one would be best?
  5. C

    Regarding GitHub repsoitory - is this code useable in it's current state?

    Thanks for the replies. I attempted to download Xcode onto my ipad version 16.6, and I get "Not compaible with this device". I don't have a mac. Any commonly used alternatives to Xcode for iPad that you'd recommend?
  6. C

    Regarding GitHub repsoitory - is this code useable in it's current state?

    This is the repository: https://github.com/apivideo/api.video-ios-live-stream#ios-rtmp-live-stream-client Do you mind taking a peek at it and telling me, if I download it onto an iphone, is this useable in it's current state? Or are there other steps required to make that happen?
  7. C

    JavaScript Help with mouseEnter display

    thanks for all the previous help... I'm trying to display a message when a Form field (set_p_v) is selected to enter/input something. I've tried this code, but nothing displays: css: .info-msg { color: #059; background-color: #BEF; display: none; } <div class="info-msg"> <i class="fa...
  8. C

    JavaScript help to add "if" statement

    This code successfully displays the Message, and stops the Form submit: beforeSend: function() { Snackbar.show({text: 'MESSAGE-2'}); return false; I tried to add in an 'if' condition: beforeSend: function() { if (empty($error) && $_POST['set_p_v'] == 0) {...
  9. C

    PHP Error will display but echo will not.... help

    Thanks for the reply. The php ffmpeg_submit.php file is for it's accompanying html ffmpeg.html form-submitting file. Whatever I enter into the Error will display successfully on the html page upon the 'if' conditions being met. I'd prefer it not being an Error message, but it's the only thing...
  10. C

    PHP Error will display but echo will not.... help

    In my php, the error will display in the html, but echo will not: if($_SERVER["REQUEST_METHOD"] == "POST"){ . . . if (empty($error) && $_POST['field'] == etc... { echo "Hello"; $error = "Hello"; . . . etc. Any ideas how to get echo to display?
  11. C

    JavaScript Help to change this on(click to on submit

    <form action="" class="form-horizontal setting-panel pt_forms pt_upld_page_frm" method="POST"> .... </form> $('#upload-form form').ajaxForm({ url: '{{LINK aj/ffmpeg-submit}}?hash=' + $('.main_session').val(), beforeSend: function() { $('#submit-btn').attr('disabled', true)...
  12. C

    JavaScript Help to change this on(click to on submit

    Thanks for your kind help, however, with this: $('.open-popup').on('click', function() { $('.overlay').css('display', 'block'); }); $('.popup-close').on('click', function() { $('.overlay').css('display', 'none'); }); and this: <div class="layout"> <span class="open-popup">Open...
  13. C

    JavaScript Help to change this on(click to on submit

    Thanks for your reply. I want to submit this: <div class="layout"> <span class="open-popup">Open popup</span> </div> <div class="overlay overlay--bg-black"> <section class="popup" style="width: 50%;"> <span class="popup-close"></span> <h3 class="pop_head">Popup Heading</h3>...
  14. C

    JavaScript Help to change this on(click to on submit

    How can I change this JS so that it displays upon submit ? <button id="submit-btn" class="btn-main" disabled>Submit</button></div> <script> $('.open-popup').on('click', function() { $('.overlay').addClass('shown'); }); $('.popup-close').on('click', function() {...
  15. C

    JavaScript Choosing Submit in Alert and submitting

    My goal is to have the Alert displays in the upload Form with choices, and when 'Yes' is chosen, the file submits. I this code where the Alert displays but when 'Yes' is chosen the Alert closes but the file doesn't submit: $('#submit-btn').on('click',function(e){...
  16. C

    JavaScript What does this do/say?

    What does this do/say? $('#submit-btn').attr('disabled', true);
  17. C

    JavaScript Which one is the 'first button'?

    Upon trying to add this SweetAlert to this successfully working submit Form: $('#upload-form form').ajaxForm({ url: '{{LINK aj/ffmpeg-submit}}?hash=' + $('.main_session').val(), beforeSend: function() { $('#submit-btn').attr('disabled', true); $('#submit-btn').val("{{LANG please_wait}}")...
  18. C

    CSS What would be the responsive size for this:

    What would be the media query responsive size for this device: https://www.lg.com/us/tablets/lg-V410-g-pad-7.0-lte
  19. C

    JavaScript How can I add delay to this js function?

    Thanks for all your help. It works successfully now. I didn't write that code, so I'm wondering what the numbers here do: jQuery('#headline1').scramble(3000, 50, "punctuation", true); I look forward to being enlightened
Back
Top Bottom