• Skip to main content
  • Skip to primary sidebar
  • Skip to footer

Foliovision

  • Weblog
    • FV Player
    • WordPress
    • Video of the Week
    • Case Studies
    • Business
  • About
    • Testimonials
    • Meet the Team
    • We Support
    • Careers
    • Contact
    • Pricing
  • Products
  • Support
    • FV Player Docs
    • Pro Support
  • Login
  • Basket is empty
Home

Mustafa

  • Profile
  • Topics Started
  • Replies Created

Forum Replies Created

Viewing 23 replies - 1 through 23 (of 23 total)
  • 5 months ago in reply to: Allow DRM text watermark to also appear CENTER (in addition to existing position
    Mustafa

    Hello Martin,
    Thank you for your response. I really would like to have this feature, as it is very important for protecting my courses. If possible, I would appreciate any temporary code or workaround you could provide until this feature is officially added.
    Looking forward to your support.
    Best regards,
    Mustafa

    5 months ago in reply to: Issue with HLS Encryption Not Working for My Videos
    Mustafa

    Thank you martin, I’m tried to upload another video and worked!

    5 months ago in reply to: Issue with HLS Encryption Not Working for My Videos
    Mustafa

    Another question,
    Should i turn on any one of these settings? And regarding to last two options, are these increasing the video security if i turn them on ?

    img_7175
    IMG_7175
    5 months ago in reply to: Allow DRM text watermark to also appear CENTER (in addition to existing position
    Mustafa

    lo Martin,
    Thank you for your response. I understand your concern regarding the viewing experience.
    I plan to make the DRM text semi-transparent and of course it will be moving, so it won’t be too intrusive for the viewers. I will do my best to ensure it does not negatively affect the user experience while still providing the necessary protection for the videos.
    Thank you for your understanding and support.
    Best regards,
    Mustafa

    5 months ago in reply to: Issue with HLS Encryption Not Working for My Videos
    Mustafa

    No it doesn’t show it,
    This is what i see :

    {
      "settings": {
        "ultrafast": true
      },
      "input": {
        "url": "REMOVED FOR SECURITY PURPOSES"
      },
      "notification": {
        "type": "http",
        "url": "REMOVED FOR SECURITY PURPOSES"
      },
      "outputs": {
        "jpg:320x": {
          "path": "//cdn.foliovision.com/New-Project/sprite.jpg",
          "interval": 0,
          "sprite": {
            "limit": 1000
          },
          "vtt": {
            "filename": "sprite.vtt"
          }
        },
        "jpg:300x": {
          "path": "//cdn.foliovision.com/New-Project/thumbnail.jpg"
        },
        "jpg:1280x": {
          "path": "//cdn.foliovision.com/New-Project/thumbnail-large.jpg"
        },
        "httpstream": {
          "if": "{{ input.height }} <= 2160",
          "hls": {
            "path": "/New-Project",
            "version": 3
          },
          "playlist_name": "index",
          "variants": [
            "mp4:240p_320k::maxrate=960k",
            "mp4:480p_700k::maxrate=2100k",
            "mp4:720p_4000k::maxrate=12000k",
            "mp4:1080p_6000k::maxrate=18000k",
            "mp4:0x1440_10000k::maxrate=30000k",
            "mp4:2160p_16000k::maxrate=48000k"
          ]
        }
      }
    }
    5 months ago in reply to: Issue with HLS Encryption Not Working for My Videos
    Mustafa

    Hi Martin,

    Thank you for your reply.

    Here is a link to a test video on my demo site where the issue occurs: https://snow-louse-350558.hostingersite.com/contact/
    I have enabled the encryption option as shown in the attached screenshot.

    Could you please check if the HLS encryption is properly applied and advise me on any additional steps to ensure secure playback?

    Thank you very much for your support!

    Best regards,
    Dr. Mustafa

    screenshot-2025-09-17-234437
    Screenshot-2025-09-17-234437
    6 months ago in reply to: Remove “Name:” Prefix from DRM Text Overlay
    Mustafa

    Hello Martin,

    I applied the change on the Beta version, but it didn’t achieve what I needed. I tried removing the “name” prefix using multiple approaches, including JavaScript, CSS, and PHP in the theme’s functions.php, but the result was not as expected.

    Could you please advise on the next possible solution?

    Thanks,
    Mustafa

    6 months ago in reply to: Remove “Name:” Prefix from DRM Text Overlay
    Mustafa

    note: my code worked fine but the phone number appears like this “name: 797845455″ , but i want it like this ” 797845455 “

    6 months ago in reply to: Remove “Name:” Prefix from DRM Text Overlay
    Mustafa

    Hello, thank you for your support regarding the DRM text issue. I have tested the beta version you suggested, but honestly I don’t want to move to the beta . Could you please let me know if there is any alternative solution or fix available in the release version instead of switching to beta?

    6 months ago in reply to: Remove “Name:” Prefix from DRM Text Overlay
    Mustafa

    note: when i add my code it was separated
    also i catshed phone number from plugin that i used and it works

    1 year ago in reply to: How to calculate the price and choose the best CDN provider
    Mustafa

    Sorry but After about two months and there is no response to this inquiry.

    3 years ago in reply to: Make my video most secure
    Mustafa

    thanks , i have question

    my videos are 2k .. can i encode this quality by coconat? because i see just 1080 and 4k

    3 years ago in reply to: Make my video most secure
    Mustafa

    Thank you for responding, another question

    What the type of encryption of coconut? Dose it support AES-256 encryption?

    3 years ago in reply to: Make my video most secure
    Mustafa

    It’s just 500 $ for these protocols and then i will not pay monthly subscription or not included ?

    If thera is extra monthly fees can you give me more details please

    3 years ago in reply to: Make my video most secure
    Mustafa

    And how can I integrate these protocols in coconut and fv player pro

    3 years ago in reply to: Make my video most secure
    Mustafa

    Hi , how much will cost if i want to use of the three protocols , could you give me more details please

    3 years ago in reply to: Make my video most secure
    Mustafa

    So if i using fv coconut , the signed URLs feature it will be enabled automatically and i will not to do thing to ensure if it enabled

    3 years ago in reply to: Make my video most secure
    Mustafa

    What about the apple Fairplay and other features like it ? Can i add it in coconut streaming

    3 years ago in reply to: How to add phone number on drm text feature
    Mustafa

    Thank you for responding so the modified code will be like this right ?

    function tweak_fv_player_pro_drm_text( $data ) {
        $user_data = wp_get_current_user();
        if ( ! empty( $user_data->ID ) ) {
            $phone_number = get_user_meta( $user_data->ID, 'billing_phone', true );
            $data['name'] .= ' ' . $phone_number;
        }
        return $data;
    }
    add_filter( 'fv_player_pro_drm_text', 'tweak_fv_player_pro_drm_text' );
    3 years ago in reply to: How to add phone number on drm text feature
    Mustafa

    Do you mean Like this ?

    add_filter( 'fv_player_pro_drm_text', 'tweak_fv_player_pro_drm_text' );
    
    function tweak_fv_player_pro_drm_text( $data ) {
        if ( ! empty( $user_data->ID ) ) {
            $user_phone = get_user_meta( $user_data->ID, 'billing_phone', true );
            if ( ! empty( $user_phone ) ) {
                $data['phone_number'] = $user_phone;
            }
        }
        return $data;
    }
    3 years ago in reply to: How to add phone number on drm text feature
    Mustafa

    update ! i tried to creat custom code for adding the phone number and i want to ask is this code will be worked ?

    function tweak_fv_player_pro_drm_text( $data ) {
      // You can get the current user data using the standard WordPress function call
      $user_data = wp_get_current_user();
    
      // Get the phone number field value from the user meta data
      $phone_number = get_user_meta( $user_data->ID, 'billing_phone', true );
    
      // Add the phone number field value to the $data array
      $data['phone_number'] = $phone_number;
    
      return $data;
    }
    add_filter( 'fv_player_pro_drm_text', 'tweak_fv_player_pro_drm_text' );

    NOTE : phone number field is present in billing_phone meta data

    3 years ago in reply to: How to add phone number on drm text feature
    Mustafa

    Thank you for responding, sadly i know there is no phone number in drm text but i want add it due to it’s importance for me

    So when i set the drm text always visible it will be changable in there position irregularly?

    Regarding to page that you add in reply’s “about editing the fields of drm text” , the code shows how to hide the email address not to add any item like phone number , User Id ….

    3 years ago in reply to: How to encryptet my videos that hosted in bunny cnd and setup dynamic watermark
    Mustafa

    Another thing , my all videos size are about 300GB so what can i do because I’m afraid my website becomes slow

Viewing 23 replies - 1 through 23 (of 23 total)

Primary Sidebar

  1. Bios
  2. My Video Bookmarks
  3. My Video Playlists
  4. Privacy Policy
  5. TEST
  6. Test Bunny CDN vs. DigitalOcean Spaces CDN
  7. Video Speed Tests
  8. FV Flowplayer Expiration
  9. About
  10. Checkout
  11. Foliovision Tools
  12. FV Player
  13. Job offers
  14. Store
  15. WordPress
  16. Cookies
  17. Donate
  18. Enter your VAT Information
  19. FV Pro Support
    We’ll solve your WP Video problems right now
  20. FV Publisher
  21. Hosting signup
  22. How to pay your invoice in the new billing system
  23. Humanmetrics Jung Typology Test Result
  24. Best Practices for Sharing Sensitive Information
  25. Billings Page
  26. Client Section
  27. Foliovision Hosting Signup
  28. Renew or upgrade your plugin
  29. Site Map
  30. FV Flowplayer 5 Download Test Page
  31. Referrals
  32. My Profile
  33. Flowplayer
  34. My Licenses
  35. Portfolios
  36. Additional Information
  37. Theme Comparison
  38. Video Services Request
  39. Thanks for your message
  40. Thanks for Applying!
  41. Thoughtful Comments
  42. Teamwork to Basecamp 3 Migration Wizard
  43. Typepad to WordPress deposit payment
  44. Weblog
  45. WordPress 3.3 Upgrade Order Form
  46. WordPress Programmer’s Homework

Footer

Our Plugins

  • FV WordPress Flowplayer
  • FV Thoughtful Comments
  • FV Simpler SEO
  • FV Antispam
  • FV Gravatar Cache
  • FV Testimonials

Free Tools

  • Pandoc Online
  • Article spinner
  • WordPress Password Finder
  • Delete LinkedIn Account
  • Responsive Design Calculator
Foliovision logo
All materials © 2026 Foliovision s.r.o. | Panská 12 - 81101 Bratislava - Slovakia | info@foliovision.com
  • This Site Uses Cookies
  • Privacy Policy
  • Terms of Service
  • Site Map
  • Contact
  • Tel. ‭+421 2/5292 0086‬