Forum Replies Created
-
-
Hello Michell,
we did add some code to FV Player to make sure our editor button shows when editing pages with Avada. I do not think it’s related to the issue, but it would be great if you could try to use FV Player version 7.4.37.727 from here to see if you will still get that issue: https://downloads.wordpress.org/plugin/fv-wordpress-flowplayer.7.4.37.727.zip
Other thing to try would be to see if you get any errors on browser JavaScript console when you try to add a new menu item. Here’s how to enable that console in your browser: https://foliovision.com/player/troubleshooting/javascript-browser-console Once you open that console, reload your page and try to add a menu item again. Do any errors appear on that console?
Thanks,
Martin4 years ago in reply to: fv player 7.4.40.727 changes video sizeHello Edward,
I think I created a fix for this issue – If you have a moment, could you please reinstall FV Player from this link: https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip ?
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
Then the issue should be fixed.
Thanks,
Martin4 years ago in reply to: FV player / PHP8 Bug / Query MonitorHello Douglas,
thank you very much for letting us know about the issue. It seems this slipped our attention.
I put in the fix, it will be part of the next FV Player Pro release.
If you want to get it right now you can deactivate and delete the FV Player Pro plugin and then let wp-admin -> Settings -> FV Player reinstall the Pro pack for you. Or you can grab a fresh ZIP file of FV Player Pro from https://foliovision.com/my-licenses and reinstall from that.
Thanks,
Martin4 years ago in reply to: fv player 7.4.40.727 changes video sizeHello Edward,
with the automatic resizing it’s not so simple as the YouTube API doesn’t expose the video aspect ratio nor dimensions. So it seems like we would have to start recording each video dimensions.
For now the safest route is to disable DRM text for these videos or set the proper video dimensions.
If you want to try the automatic resizing, then you can take the fv_flowplayer_conf code snippet from https://foliovision.com/player/advanced/api-programming
Thanks,
Martin4 years ago in reply to: fv player 7.4.40.727 changes video sizeHello Edward,
the DRM text is actually enabled for that video, perhaps you are enabling it globally.
That’s why the issue is appearing.
You can fix it by setting the player dimensions to match the video aspect ratio – the video is 640 x 273 pixels, but the player is set to 640 x 360 pixels.
I think in this case we could set the player to adapt to the video size automatically to make sure the video always appears properly.
Thanks!
Martin4 years ago in reply to: fv player 7.4.40.727 changes video sizeHello Edward,
are you using the DRM Text feature on that video?
Does the issue occur in Chrome?
Are you using any standard theme which I can download or can you send the theme in ZIP file?
Thanks!
MartinHello phabeon8,
please check your page HTML code – you should see //cdn.foliovision.com/wp-content/plugins/fv-wordpress-flowplayer/flowplayer/hls.min.js is loading and you should see //cdn.foliovision.com/wp-content/plugins/fv-wordpress-flowplayer/flowplayer/flowplayer.dashjs.min.js as well.
As a next step you can run this on the browser console:
flowplayer.engines.forEach( function(v) { console.log( v.engineName ) });
It should give you a list like this:
dash hlsjs-lite html5 flash
If it won’t the the MPEG-DASH engine is somehow not properly loaded and it could explain your issue.
Also, are you sure you need Ajax here? Based on the code which you posted you should be able to initialize the player with just the use of JavaScript like here: https://foliovision.com/player/advanced/api-programming#js-usage -> 1. Player initialization via JavaScript.
Thanks,
Martin4 years ago in reply to: fv player 7.4.40.727 changes video sizeHello Edward,
I’m not aware of any modification which could be causing that. Do you run into the same issue with FV Player Pro 7.4.40.727 (Release and Beta)?
Could you please post a link to the page where we can see the issue?
Thanks,
Martin4 years ago in reply to: Plugin not working due to script errorHello David,
that is the error you are getting?
Have you tried the troubleshooting steps here? https://foliovision.com/player/basic-setup/installation#fixing-broken-javascript
Thanks,
Martin4 years ago in reply to: Batch video and splash image url replacementHello Bruno,
it seems to me we could build this using the wizard technology from FV Player Coconut. That way we could guide you through the process and avoid mistakes.
The first wizard step would only contain a description of what is going to happen. The seconds step would let you enter the URL part to replace – like https://bunnycdn-domain.com/bucket/
Then the third step would list the matching players making it easy for you to check what is going to change. There you could enter the new URL – to replace with: https://digitalocean-spaces-domain.com/bucket/
In fourth step you could check that same list of affected players in preview mode – already using that new URL and allowing you to test that it all appears properly.
Fifth step would only be a warning for you to backup the database or create site snapshot.
Sixth step would let you confirm the replacement.
Thanks,
MartinHello Michael,
the Disable HTML5 Autoplay Chrome extension only has 1,017 users: https://chrome.google.com/webstore/detail/disable-html5-autoplay/efdhoaajjjgckpbkoglidkeendpkolai?hl=en-US The extension is also deprecated – the author is no longer maintaining it as Chrome does prevent unvanted autoplay already by muting the sound unless the user has a history of playing te videos on the website (MEI = Media Engagement Index).
The reason why it doesn’t block other players is that it includes specific code to allow plays with Youtube, Video.js and JW Player.
I at least added a notice which shows on top of the player for Disable HTML5 Autoplay users to disable it. It will be part of the next FV Player release.
Thanks,
Martin4 years ago in reply to: Batch video and splash image url replacementHello Bruno,
wp-admin -> FV Player lists the players stored in database, but the actual database is the data storage which feeds all the information into your WordPress website.
Using a database tool like phpMyAdmin you can run relatively simple commands like this to replace all the source video paths in one easy step:
UPDATE wp_fv_player_videos SET src = REPLACE( src, 'https://bunnycdn-domain.com/', 'https://digitalocean-spaces-domain.com/bucket/' );
It’s easy to run, but it’s also easy to make a mistake, so I wonder if we could provide an easy to use function like this directly in FV Player together with some instructions to backup your website database before running such global search and replace.
Perhaps it could let you enter the source and target URL and show the preview of the changes by trying to load a single video from that new location to let you check if it plays. It would take a couple of days to get it done but it could be a nice tool for all the users.
Thanks,
Martin4 years ago in reply to: Batch video and splash image url replacementHello Bruno,
do you use the [fvplayer src="..."] shortcodes most of the time, or do you post the videos with editor? In that case they are stored in database and you can see all of them in wp-admin -> FV Player.
In the first case you can run search and replace using a plugin like Search Regex on post content.
In case of database you can just run search and replace on the wp_fv_player_videos database table, on the src, src1, src2 and splash columns. When we designed the database structure we were trying to keep it simple to let experienced users manipulate data with ease – in contrary to the WordPress Custom Post Types where and non-standard fields are just postmeta.
Please let us know if this did help, or if you need any further help.
Thanks,
Martin4 years ago in reply to: Statistics do not appear in Google Analytics.Hello mktdigital,
we switched from using Google Analytics ga.js to analytics.js in FV Player 7.4.38.727 in January.
Does it work if you disable Google Analytics in JetPack? I see it’s using ga.js.
Your website uses some JavaScript minification (appears to be a WordPress.com thing,), but the tracking work if you disable that for a moment? You can check the realtime stats in Google Analytics when you play a video.
Thanks,
Martin4 years ago in reply to: Random Video Not Found ErrorsHello James,
what does our video checker say about your videos? Here’s how to use it: https://foliovision.com/player/basic-setup/how-to-use-video-checker
Are these videos hosted on shared hosting server? Did you had a chance to check the developer tools in your browser to see what it says about these HTTP requests?
Does it happen on mobile and desktop or is it a mobile only issue?
Thanks,
Martin4 years ago in reply to: fv_track_start broken in latest version?Hello Willie,
we have prepared a fix for this issue for the next FV Player release. You can also reinstall the plugin from https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip to get the fix right away.
Thanks,
Martin4 years ago in reply to: fv_track_start broken in latest version?Hello Willie,
I see the issue. We upgraded the Google Analytics script and set that whole part to only execute if it’s configured. Before that it used to run and trigger these events and then in the last moment there was a check to see if Google Analytics tracking should be used as well.
So we will go back to that model as it make custom tracking like yours possible. It will be an easy fix. I’ll keep you updated.
Thanks,
MartinHello crosbymarketing,
the “Remove fancyBox” setting is designd to remove any other fancyBox library used on the website and keeping what’s in FV Player. We currently do not provide it the other way around as we have written some custom handling of fancyBox for FV Player in our script:
– function to get the lightbox title from image alt attribute, or the text in wrapping h5 element or figcaption
– special handling of lightbox thumbnails which represent videos
– show/hide caption bar or info bar only if there is enough space for it
– making the lightbox fullscreen button work with FV Player fullscreen
– stopping video playback on lightbox close properlyIt would be better if we could make our code work with any fancyBox library bundled in your theme or some other plugin. Please post the link to your website where we can see the issue and perhaps we can plan this out. This should work with any fancyBox version 3.
Please also share a link to your page where that bottom margin was not working.
Thanks,
MartinHello Kostas,
unfortunately autoplay of VAST ads is not supported on mobile. But perhaps it would works with latest iOS and Android and we should give it a try.
I did some quick tests and it could work if we let the ad play without sound enabled and user would have to tap it to un-mute. I will do some more testing today or tomorrow to really see if it could work and let you know.
Thanks,
Martin4 years ago in reply to: CSS to change play-button/iconHello Amanda,
the triangular play icon has some shadow behind it, so it can be see even on solid white background. But I see some people might miss it.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
thank you for the screenshot, but we need that not for Settings -> General, but Settings -> FV Player.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
let us know when you had the time to check the Network tab of the developer tools please. As explained you should see a request to options.php followed by a request to options-general.php. Your last screenshot was spot on, so you should be able to see where it fails now.
Next it would be great if you could test with other plugins disabled.
Thanks,
Martin4 years ago in reply to: CSS to change play-button/iconHello Amanda,
we will add that custom CSS field, then the tweaks like this will be much simpler. With a bit of luck it should be ready next week.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
please ensure that you are able to save wp-admin -> Settings -> General without issues.
Next please check the Network tab of the developer tools again. When you save you should see a request to options.php followed by a request to options-general.php. Your last screenshot was spot on, so you should be able to see where it fails now.
Thanks,
Martin4 years ago in reply to: CSS to change play-button/iconHello Amanda,
it’s a matter of putting the CSS into the right place. It should load after FV Player CSS to ensure it get the priority. We cover that at the beginning of our guide for CSS modifications: https://foliovision.com/player/advanced/css-tips-and-fixes
As a proof of concept please try to use it with !important for each rule like this:
.is-splash.flowplayer .fp-player .fp-ui, .is-paused.flowplayer .fp-player .fp-ui { background: url (/wp-content/uploads/2021/02/video-play-button.png) center no-repeat !important; background-size: 50% !important; } .is-seeking.flowplayer .fp-ui { background: none !important; } .flowplayer .fp-ui > .fp-play { display: none !important; }
In fact we get asked about similar issues quite often. Perhaps FV Player should provide its own custom CSS field which would already work in a way that would prioritize it properly. That way everybody would know where it needs to be added.
Thanks,
MartinHello Justin,
if you have a moment, could you please reinstall FV Player from this link: https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip ?
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
Then the embed code for a video which normally shows in lightbox will work.
Could the iframe code work with your mobile app?
Would you like to show the share button even if the video is still loading? We only make these available when it plays.
Thanks,
MartinHello Justin,
if https://partycaribbean.com/live/fvp-1/ only shows a blank screen, then the issue shold be related to the template you are using.
Normally we ask our users to try switching to some default WordPress theme for a test and see if that helps. In some cases the theme preview is enough too.
But your case is different – I had a look and I can see that if you try to embed the player which is using lightbox, it won’t work. So we are going to improve this. I’m not sure if the fix will be ready this week as it might get tricky, but I will try to keep you updated about the progress.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
I made some more adjustments to https://github.com/foliovision/fv-wordpress-flowplayer/archive/684-save-troubleshooting.zip so if you could grab a fresh ZIP file and test again, it would be great. Please let us know if you have a bit of time.
Thanks,
Martin4 years ago in reply to: Experienced this trying to add a videoHello Ezekiel,
so you got that as an error “An unexpected error has occurred. Please copy the player raw data below and submit a support ticket to Foliovision” when trying to save the video?
Does it happen again when you try to create new FV Player instance or was that just an one off? Some plugin error or plugin conflict might be breaking the saving routine.
Are you able to check the PHP error logs? Does it show anything realted to fv-wordpress-flowplayer or FV Player at the time when it failed? If you are not sure you can try to install this plugin: https://wordpress.org/plugins/error-log-monitor/ Then try to save another player and see what was added to the logs – if the save fails again.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
If you have a bit of time it would be great if you could help with the testing – just reinstall FV Player from this ZIP file: https://github.com/foliovision/fv-wordpress-flowplayer/archive/684-save-troubleshooting.zip
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
Please let us know! It won’t actually save any settings, but it’s a good test to figure out the exact nature of the issue.
Thanks,
Martin4 years ago in reply to: Exoclick Ads Arent Shown On my WebsiteHello Kulshreshtha,
please let us know if you have any news regarding Exoclick ads. Is that iframe code going to work for you or not?
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
in the System Info report which you sent to us it said you are using PHP 7.3.24. We haven’t heard of any issues with that specific verison, but could you please try to switch to PHP 7.4 or 7.2 and see if that avoids the problem?
What if you check Settings -> FV Player -> Integrations/Compatibility -> “Disable saving skin CSS to a static file” and try to save that way?
Thanks,
MartinHello Khem,
the video normally doesn’t show on the WooCommerce Product page. But you should be free to put the [fvplayer] shortcode to it.
Did you run into the issue when logged in, or did you check the page logged out? Once you send us that link it will be clear, so please do that when you have a moment.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
thank you for the follow up.
Could you please check the network activity when you save these settings next?
In common web browsers like Google Chrome or Firefox, you can “right-click” and then click “Inspect” or “Inspect Element” to open the developer tools in your browser. A new panel will appear on the right hand side of your browser, or at the bottom of it. That panel is the Developer Tools. There you can open the “Network” tab and see what happens once you save the FV Player settings.
I’m attaching a screenshot of what it should look like. Note that I scrolled to the top of the list to show the “options-general.php…” request. It resulted in status 200 which is what it should be.
Also, in the “Console” tab there are no errors, only some yellow warnings about non-unique field IDs.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
it’s a weird error. I don’t see anything related to FV Player in these logs.
Does it also occur if you use the Incognito mode of your browser?
Thanks,
Martin4 years ago in reply to: Multiple audio track with Vimeo ?Hello Cirdec,
that’s true, but the source video MP4 files which you were uploading to Vimeo should really have all the audio tracks if that’s what you uploaded. FV Player Coconut could be improved to let you use these files to give you a chance to move your videos off from Vimeo more easily. The source video for conversion would be the Vimeo video URL and it would use the original MP4 which you uploaded to Vimeo – downloading it directly from there.
Thanks,
Martin4 years ago in reply to: Limit quantity in PPV WoocommerceHello Ron,
if you have a moment, could you please reinstall FV Player Pay Per View for WooCommerce from a fresh ZIP file from https://foliovision.com/my-licenses ?
Then you will no longer be able to add the same PPV video multiple times.
Thank you for your cooperation!
Martin4 years ago in reply to: Multiple audio track with Vimeo ?Hello Cirdec,
FV Player Coconut integrates with the Coconut video encoding service. Perhaps we could improve it to also support conversion of Vimeo videos.
Vimeo does store different quality video files for all the videos which you upload and then also the original MP4 file. So if this sounds interresting to you please start by downloading one of these orignal MP4 files and checking if they do come with the different audio tracks.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
if you log into https://foliovision.com/login you would be able to upload the images here.
Was exactly does the text say on that page? Knowing the exact phrase might help a bit. But I’m affraid it won’t be possible to fix this one without checking of the PHP logs.
If you are considering the FV Player license we can fix the issue for your right on your website if you purchase the package of a FV Player license and the Pro install: https://foliovision.com/downloads/player-plus-install
Otherwise we can continue with the troubleshooting tips.
Thanks,
Martin4 years ago in reply to: Changing the language of language displayHello Kris,
if you have a bit of time it would be great if you could help with the testing – just reinstall FV Player from this ZIP file: https://github.com/foliovision/fv-wordpress-flowplayer/archive/655-native-language-name.zip
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
I did test the new code on two website and didn’t had any issues with it, the changes are minimal – really just updated the text labels.
Thanks,
Martin4 years ago in reply to: Setup ErrorsHello Caitlin,
could you please send a screenshot of that error page?
Could you please check the PHP error log to see if anything is added to it each time there is an error?
If you are not sure about that you can try installing this plugin: https://wordpress.org/plugins/error-log-monitor/ Then try to save the settings again and check if any error appears in it. Alternatively, you can also check PHP error logs directly on the server or ask your server support for help.
Thanks,
MartinHello Tony and Gwilson,
I see we should improve that live stream loading to not look like there is an error. It seems to me we need to provide a way for you to set the date when the stream is going live. That way there could be an useful count-down until the stream really starts. We built that for the Vimeo live videos already.
Tony, please let us know how you would like to tweak the message, perhaps it could be the new default. Currently it only has the translation hooks on it.
Thanks,
Martin4 years ago in reply to: FVP cut YT films URGENTHello Kris,
I tried to post that same video and I got the proper length
Please try to enable Settings -> FV Player Pro -> Pro Features -> Custom start/end time. Then see if that video has anything entered in the Start/End fields. Full guide can be found here: https://foliovision.com/player/advanced/custom-start-end-time
If it won’t help, please try putting such video on some public page and try to open that in an incognito browsing mode. Will it show with proper full length there?
Thanks,
Martin4 years ago in reply to: PPV Email purchase linkHello Jp,
what happens if you start a new page, put the UMP restrictions to it, then add some FV Player and publish it? Will it show the page on wp-admin -> FV Player in the “Embedded on” column?
Please let us know when you have a moment.
Thanks,
Martin4 years ago in reply to: Pay Per View Buttons & TestHello Jp,
1) I see it might be good to have such option, but then it’s not obvious that the video is for sale. But you can use a CSS like this: https://foliovision.com/player/advanced/css-tips-and-fixes#ppv-below-video
2) We added some CSS rules int our CSS guide too: https://foliovision.com/player/advanced/css-tips-and-fixes#ppv-overlay-center
3) The popups can be made transparent using CSS like this: https://foliovision.com/player/advanced/css-tips-and-fixes#popup-transparent
Please make sure you read the introduction to that https://foliovision.com/player/advanced/css-tips-and-fixes guide if your CSS rules don’t see to have any effect.
I used all of these custom rules on https://foliovision.com/player/demos/pay-per-view-video so you can check how you like it there.
Thanks,
Martin4 years ago in reply to: FB link loads long4 years ago in reply to: embed to wrong display?Hello Kris,
I see that the “Ofiara/wsparcie” page could remain in that wp-admin -> FV Player list of players in some cases.
How was that page removed? Did you use the wp-admin interface to delete it?
Thanks,
Martin4 years ago in reply to: How many items can i add to the playlist?Hello Pirx,
while the FV Player playlist length is only limitted by the MySQL storage, there might be some lower limit due to how your web server handles POST requests. The longest playlist which I saw was with 160 items and although it did take a couple of seconds to load into the editor, it was not running into any limit.
As Maria noted, you should check the PHP error log. Or check the PHP info for any limits in request length. Your server support personel should be able to help you with that.
Thanks,
MartinHello Justin,
it should all work, but as you realized using AWS is quite hard.
What’s the advantage of your setup over something simpler such as DaCast? Please let us know how does it compare: https://www.dacast.com/live-streaming-pricing-plans/
Thanks,
Martin4 years ago in reply to: Video on mobile is wider than screenHello timbo,
I’m sorry about the late reply here. To get a full-featured YouTube embedding you would have to buy FV Player Pro. Then you would be able to use all the FV Player features, like overlay ads, video ads, interactive transcript, AB looping, subtitles and so on.
If you have issues with YouTube dimensions in the free FV Player then your theme might be doing something weird with the iframe codes.
Thanks,
Martin4 years ago in reply to: PPV Email purchase linkHello Jp,
please let us know what is that certain process. Perhaps when I read your description it will help me find the bug.
Thanks,
Martin4 years ago in reply to: Multiple audio track with Vimeo ?Hello Cirdec,
finally we were able to add multiple audio tracks support into FV Player Coconut. It detects everything automatically. Until now we used to provide audio and video in each HLS variant playlist, from now on there is a separate stream for audio and then the remaining quality variant streams are video only.
To get the new version please go to https://foliovision.com/my-licenses and download FV Player Coconut ZIP file from there.
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
Once you confirm that it works we can release it as a new version, so if you have a bit of time it would be great.
Thanks!
Martin4 years ago in reply to: Limit quantity in PPV WoocommerceHello Ron,
if you have a moment, could you please reinstall FV Player Pay Per View for WooCommerce from a fresh ZIP file from https://foliovision.com/my-licenses ?
Then you will be able to purchase multiple PPV items at once (it will show multiple buttons and show multiple links in the email) and also let you change quantity to 0.
Thank you for your cooperation!
Martin4 years ago in reply to: Playback speed on androidHello Luke,
perhaps we are missing something, please let us know what video type it is. You can use the video checker to report it to us too: https://foliovision.com/player/basic-setup/how-to-use-video-checker
Thanks,
Martin4 years ago in reply to: Thumbnail SizesHello Ralph,
the splash image in https://senensky.com/latest-post/ fit perectly.
What matters most is the aspect ratio – if 678:360 works for you, then you can set 1356×720 global settings size and the player will always appear fine even if you change the content column width.
Then you can set that square ration for individual players too.
The problem is that if you go to for example 1000 px wide content column the images will look a bit blurred. We need to store these splash images using WordPress Media Library IDs and make sure the proper size is generated based on the content column width.
Thanks,
Martin4 years ago in reply to: 10s preview (or more) for non subscribers ?Hello Cirdec,
that could work, but when we would have to add a setting to let you decide which memership levels give users permissions to watch the PPV videos.
Is there a PHP function to check if current user has access to a specific post or page? That’s what we use for Restrict Content Pro and it’s easier that way as we do not have to add any settings.
Thanks,
MartinHello David,
I just have to get to it.
In the meantime you can enable Settings -> FV Player Pro -> Hosting -> Vimeo -> Disable MPEG-DASH.
Thanks,
Martin4 years ago in reply to: Change video player aspect ratioHello Jordan,
it should target the video engine element:
.flowplayer.is-fullscreen .fp-engine{ max-width: calc( 100vh /3 *4 ); margin: 0 auto; }
But that’s just an experiment. It needs to be properly checked and improved to handle the 16:9 video on 21:9 screen too. I should have more news regarding that this week.
Thanks,
Martin4 years ago in reply to: Change video player aspect ratioHello Jordan,
regarding the fullscreen issue on 4:3 YouTube videos when using the logo setting – I found that using these CSS rules when in fullscreen fixes the issues:
max-width: calc( 100vh /3 *4 ); margin: 0 auto;
However since each video can have different aspect ratio we need to actually put this in using JavaScript. So we will work on that.
Thanks,
MartinHello David,
the issue must be that in FV Player Pro the video stars playing with a different initial quality which is then switched after 5 seconds.
Or the DASH video/audio segment duration might be slightly off – creating the audio glitch.
I will take your video and try it in a stand-alone MPEG-DASH player to see if I get that same issue there.
However when I played the video on your website what I heard was not a simple audio glitch, it was a more complex sound. But I found no explanation so far.
Thanks,
MartinHello Dennis,
could you please provide the WordPress XML export of one of your LearnDash lessons?
Alternatively just post what Vimeo embed codes you use.
Thanks,
Martin4 years ago in reply to: 10s preview (or more) for non subscribers ?Hello Cirdec,
the FV Player Pay Per View plugin does let you buy individual videos using Easy Digital Downloads plugin. There is a WooCommerce version too.
It also checks if the user has the Restrict Content Pro membership – using a simple code like this:
$member = new RCP_Member( get_current_user_id() ); if( $member->can_access( $post->ID ) ) { // give access to the video }
Perhaps it would be possible to support Paid Memberships Pro too. But their documentation pages seem to be locked for users without license: https://www.paidmembershipspro.com/documentation/content-controls/
So I’m not sure about this – could you please ask Paid Memberships Pro support if they provide a PHP function to check if user has access to the post or not?
Thanks,
Martin4 years ago in reply to: Exoclick Ads Arent Shown On my WebsiteHello Kulshreshtha,
currently we are getting no ads on https://foliovision.com/player/demos/exoclick-ad -> “Web Banner” either because we disabled a fair amount of ad categories. Is that your case too?
The situation here is unfortunate. The reason why the Exoclick ads supported by FV Player Pro are not showing is that script in your theme I was mentionin earlier – //cdn.foliovision.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js I tried to disable it on your website using developer ads and the Exoclick ads were still showing as empty. And if Exoclick says these are deprecated, then it’s hard to do something about it.
I’m also noticing you are trying to use the FV Player ad codes to insert a main_video.mp4 video ad using Fluidplayer. Perhaps this is were FV Player Pro can actually help you as it does support custom video ads: https://foliovision.com/player/ads/using-preroll-postroll-ads
Thanks,
Martin4 years ago in reply to: HLS Video stop working after 14.4 iOS updateHello Michael,
I tested on iPhone 6 with iOS 14.4 and 14.2. The user agents were:
Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1 Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1
No issues with any of the encrypted videos here: https://foliovision.com/player/demos/encrypted-hls-stream
Could you please reload the page and try again? I wonder if your website requires users to be logged in to see videos and if your login session has expired.
If that won’t work, please send the link to one of your pages which we will be able to open. Then please test with https://foliovision.com/player/demos/encrypted-hls-stream
Thanks,
Martin4 years ago in reply to: Exoclick Ads Arent Shown On my WebsiteHello Kulshreshtha,
there is no intention in looting our clients. The information about certain ExoClick ad units being deprecated is new to us. Besides that it could work fine for you, except there is that conflict with your theme which is not related to FV Player.
That iframe code should be working for you. Please send us some URL where I can see it not working.
Thanks,
MartinHello talbotp,
it appears that if you have a MP4 video configured with FV Player Pro quality switching and you fill in the mobile video field at the same time it shows the notice about mobile video multiple times. We will fix that.
Then perhaps we could adjust the FV Player Pro quality switching to pick that mobile video for mobile devices. That mobile fields was intended as a simple way of serving a different video to mobile users for websites without FV Player Pro. So the minimum we should be doing here is to hide that Mobile video field in the moment when you enable the quality switching to make sure the interface is not confusing.
Thanks,
Martin4 years ago in reply to: Exoclick Ads Arent Shown On my WebsiteHello Kulshreshtha,
is there really no way of getting a banner ad anymore? It doesn’t have to be specifically designed for video players as we can control the placement in FV Player (make sure it only loads and shows when video starts to not trigger any false impression tracking).
I had a look and I was able to get a 300×250 pixels Web Banner code which looked like this:
<iframe src="//a.exdynsrv.com/iframe.php?idzone=4170360&size=300x250" width="300" height="250" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
Then I was able to use it on the second video here: https://foliovision.com/player/demos/exoclick-ad
If Exoclick are really VAST only you would need to buy FV Player VAST: https://foliovision.com/player/vast
Thanks,
Martin4 years ago in reply to: PPV Email purchase linkHello Jp,
you said that the videos are posted on a member pages that require an user account.
However the FV Player Pay Per View video link which is part of the confirmation email doesn’t log user it – it only sets the session to let the user view the Pay Per View video and nothing else. It doesn’t actually log the user in – for security reasons and simplicity.
So if your website is setup with these membership pages you can adjust the email content in Settings -> FV Player PPV -> “Confirmation Email” to mention that the user has to log in to be able to watch the video.
Please let us know if what I posted makes some sense in your situation.
Thanks,
Martin4 years ago in reply to: 4k not availableHello Bruno,
please reinstall FV Player Coconut plugin from a fresh ZIP file which you obtain from https://foliovision.com/my-licenses
Then the 4K resolution will be created for the new encoding jobs if the input video height is at least 2160 pixels.
Thanks,
Martin4 years ago in reply to: Exoclick Ads Arent Shown On my WebsiteHello Kulshreshtha,
Exoclick ads might not be compatible with FV Player directly. But they are compatible with Flowplayer which is the video library used in FV Player.
The reason for that “$f.addPlugin is not a function” error is that your theme seems to define $f JavaScript variable. Then Exoclick ads script checks for that and assumes there is a $f.addPlugin() function.
I found $f is a common alias for the Froogaloop library and it seems to be bundled in your theme in this file: /wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js
So the issue is between Exoclick ads and your theme unfortunately.
But perhaps Exoclick does offer some newer code to display the ads. FV Player uses their https://ads.exdynsrv.com/invideo.js script – could you please check what ad code you get from Exoclick?
Thanks,
Martin4 years ago in reply to: Watermark does not disappear in Pro Version.Hello Dag,
these are not chapters markers, but it’s the buffering indicator. I don’t get that same set of buffer points.
When Google Chrome starts playing that MP4 video is does some HTTP requests, perhaps to find the video meta data. These result in these buffer marks.
Thanks,
Martin4 years ago in reply to: Changing the language of language displayHello Kris,
thank you for the testing, please go back to using the regular version from https://wordpress.org/plugins/fv-wordpress-flowplayer/ as it might take us 1-2 days to fix this.
Sorry about the number of issues, we are taking steps to improve the testing of subtitle language selection.
Thanks,
Martin4 years ago in reply to: Watermark does not disappear in Pro Version.Hello Dag,
I see no chapters on that page. Are these available to members only? Could you please create a test page where even non-logged in users can see it?
Thanks,
Martin4 years ago in reply to: Wordpress reports plugin errorHello Ron,
it was a simple fix, but if you have a moment, could you please reinstall FV Player Pay Per View for WooCommerce from a fresh ZIP file from https://foliovision.com/my-licenses ?
Thank you for your cooperation!
MartinHello Gus,
making the video available for Chromecast does decrese its security. For the Signed URLs it requires these URLs to last for longer.
FV Player Pro encrypred videos currently do not play in Chromecast. We could add support, but it would open another channel for the decryption key.
I was trying to figure out why Stream Loader won’t work with Chromecast. I do not have the solution yet, but at least I was able to verify that the absolute segment URLs and query strings are not the issue.
Thanks,
Martin4 years ago in reply to: Limit quantity in PPV WoocommerceHello Ron,
if you have a moment, could you please reinstall FV Player Pay Per View for WooCommerce from a fresh ZIP file from https://foliovision.com/my-licenses ?
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
That will prevent that quantity changes for the PPV items. As a next step we could remove these quantity inputs competely.
Thank you for your cooperation!
Martin4 years ago in reply to: Changing the language of language displayHello Kris,
adding user defined language names would be more difficult.
We worked on using the translated language names for subtitles. If you have a bit of time it would be great if you could help with the testing – just reinstall FV Player from this ZIP file: https://github.com/foliovision/fv-wordpress-flowplayer/archive/655-native-language-name.zip
To do that you will have to first deactivate and delete the current FV Player plugin you are using. WordPress will warn you that you might loose settings and data, but it’s not the case with our plugin, no settings now videos will be lost. Or you can just replace the plugin files via FTP.
Please let us know!
Thanks,
Martin4 years ago in reply to: Problem setting with PayPal integrationHello Jp,
the license has been switched to FV Player Pay Per View. Please let us know if you run into any issues.
Thanks,
MartinHello Ron,
we have fixed how the price variations (rent and buy) are stored in the WooCommerce Products. The “FV Player Pay Per View Access” and “FV Player Pay Per View” meta boxes on WooCommerce orders and products were improved too. They now also highlight errors like missing player ID or post ID.
Please geta fresh ZIP file from https://foliovision.com/my-licenses and reinstall from that.
Thanks,
MartinHello Ron,
thank you for the test page! I tried to donate for the video and the “Watch Full Video” appeared just fine on the https://altruism-media.com/checkout/order-received/954/?key=wc_order_…&utm_nooverride=1 page after the payment .
It was also present on the order details page: https://altruism-media.com/my-account/view-order/954/ And in the email.
But the buttons on top of the videos to buy the video were missing.
That “Failed to update WC variation” error must be the reason why this fails. I was not able to run into that issue on my test site though.
But I see that adjusting the price is what causes the buy buttons to disappear from the video. Also changing the button labels causes them to disappear.
We are working on a fix.
Thanks,
MartinHello Ron,
sorry about not replying earlier. I see that I lost an interesting test case where you did run into some issue.
Did you check the WooCommerce Product editing page to chec what’s in the the “FV Player Pay Per View Access” box in “Player and Posts” section?
Thanks,
Martin4 years ago in reply to: Watermark does not disappear in Pro Version.Hello Dag,
please post a link where we can see the issue with Safari or check the browser console for errors. There could be some edge case where the VTT won’t load in Safari.
Thanks,
Martin4 years ago in reply to: Problem setting with PayPal integrationHello Jp,
I agree that a checkout process should be as simple as possible. WooCommerce is far from it, yet it’s one of the most popular plugins out there.
In my testing I was able to set wp-admin -> WooCommerce -> Settings -> Advanced -> “Cart page” to the same page as “Checkout page” and get rid of that unneccessary Cart page showing during Pay Per View purchase – see the “WooCommerce cart with one rented video” screenshot here: https://foliovision.com/player/pay-per-view/woocommerce#payment-process
Does that help?
Perhaps we could also remove the unnecessary billing fields. WooCommerce is more complex than Easy Digital Downloads, but perhaps we could do that if the purchase is for a single item and it’s a FV Player Pay Per View video. But it would take us about a week to get there.
We could switch you to FV Player Pay Per View (for Easy Digital Downloads), that way there is only a single checkout screen where you hit the PayPal button or enter the credit card infromation if you have the Easy Digital Downloads Stripe Payment Gateway plugin ($89 per site).
So if you intested in WooCommerce already, it might make sense to let us improve the FV Player Pay Per View for WooCommerce plugin.
Thanks,
Martin4 years ago in reply to: Changing the language of language displayHello Kris,
it’s a general improvement, we will get to it when we have a bit of time.
Thanks,
Martin4 years ago in reply to: Watermark does not disappear in Pro Version.Hello Dag,
the chapter display is not affected by license. Please post the link where we can see the issue.
Or you can open your browser developer console (here’s how https://foliovision.com/player/troubleshooting/javascript-browser-console), then load the page with your video with chapters again and see if you see any errors on the console. They might appear right on page load or after you play the video.
Thanks,
Martin4 years ago in reply to: Is there a view counter?Hello Innocente,
FV Player 7.5 will include a simple video view counter which will count the total video plays for the videos stored in FV Player database. Once the new version is out there will be the announcement article and also some how to guide.
Thanks,
Martin4 years ago in reply to: Watermark does not disappear in Pro Version.Hello Dag,
it appears you are already using the proper license key. I freed up your staging license slot. As explained you only need to use that if your staging website runs on a competely different domain.
Thanks,
Martin4 years ago in reply to: Movies played directly in FacebookHello Kris,
it should be possible to share a page with a MP4 video and have it embed that video on Facebook directly: https://foliovision.com/player/basic-setup/managing-sharing-buttons#facebook-sharing
That way the video looses any kind of download protection, but I guess it’s not important in that case as it’s publicly shared on Facebook anyway.
Thanks,
Martin4 years ago in reply to: Changing the language of language displayHello Kris,
I think it would make sense to use the same language names as in wp-admin -> Settings -> General -> Site Language. So the subtitle options for your videos would show up as:
- Polski
- English
Adding all the translations for all the languages would be quite a bit of work.
Thanks,
MartinHello Francis,
yes, the fix will be part of the next FV Player Pro release. We have worked on it about a month ago, so we need to finish all the testing to be able to release it.
Thanks,
MartinHello Sammy,
the issue is that the HLS live streams do not send any special event when the stream ends.
Please let us know what do you use for the live streams. I would like to check the documentation for any mentions of the live stream finish event.
Or perhaps we could be checking the live stream m3u8 file and once we detect that it’s no longer changing we could safely trigger the video finish event.
Thanks,
Martin4 years ago in reply to: Need to hide add based on user’s role.Hello Bruno,
do you use any membership plugin? I wonder if this could be a plugin a not a custom code build just for your website to ensure it works long-term.
Thanks,
MartinHello Gus,
I’m running into the same issue on https://foliovision.com/player/demos/hls-stream – if the CDN hosting the HLS stream is set to require the URL tokens, then we serve the stream through our Stream Loader component of FV Player.
And unfortunately it seems like Chromecast doesn’t like it. It seems that it has a problem with the absolute paths in HLS m3u8 files. If that’s true then it’s a problem as we won’t be able to support playback of these HLS streams with URL token on Chromecast unless the CDN supports it natively (generate m3u8 files with URL tokens for video segment files).
I will test some other stream with the absolute URLs as I haven’t found any documentation regarding this.
Thanks,
MartinHello Bruno,
please check your ad network dashboard for any stats. Do you see any decrease in the video plays? Do you see any decrease in the ads played?
I wonder how detailed stats you get.
Thanks,
MartinHello Bruno,
as I was mentioning it’s a normal behavior. Just leave the ad enabled and then check the ad serving stats in your ad network to see what if the ad fill percentage.
Regarding the Silent Start – I have an idea how to improve this autoplay handling. Perhaps we could use the Silent Start at all times and then try to enable the ad sound once it starts playing. That way it would work better on autoplay and users who get audible autoplay (since browser remembers they interacted with videos on your website before) would get it with sound.
Thanks,
MartinHello Bruno,
I had to play the video a couple of times to get some ad to load. But once it finally loaded it wouldn’t play – see screenshot. It was using the URL for the video https://adsvideo.club/Campaigns/ContinueV2/?vid=42Jm8Jj3xAk&rsrc=3 and the play button was not doing anything.
So I wanted to test with some other VAST player – using Google Video suite inspector at https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/vastinspector and your VAST ad unit actually worked there, although with a different video. But also only after a couple of retries – that’s normal as the ad network doesn’t have an infinite number of ads to serve.
I think the issue with FV Player VAST in your case is that once the ad is finally loaded it’s not permitted to play due to autoplay (it’s the “The browser prevented playback initiated without user interaction.” error on console). So then our plugin tries to play the ad again but with muted audio to ensure it’s allowed to autoplay (browsers only permit autoplay without audible sound). But when that happens the ad is no longer available – as your ad network just run out of ads to serve in that first attempt (it’s that “The VAST response document is empty.” error).
Here’s how you can see that on browser console:
FV VAST load (0,html5) https://syndication.exosrv.com/splash.php?idzone=..
FV VAST Ads init.
FV VAST Ads loaded.
FV VAST Ad event: loaded
FV VAST Ad event: contentPauseRequested
FV VAST Ad ContentPauseRequested for real!
FV VAST Ad error: AdError 400: There was an error playing the video ad. Caused by: AdError 1205: The browser prevented playback initiated without user interaction.
FV VAST load (0,html5) https://syndication.exosrv.com/splash.php?idzone=..
FV VAST Ads init.
FV VAST Ad error: AdError 1009: The VAST response document is empty.
FV VAST – No more ads to fetch, skipping.
FV VAST Ad event: contentResumeRequestedSo please – enable wp-admin -> Settings -> FV Player VAST -> “Silent Start”. Then let us know, I would like to see if it helps.
Thanks,
MartinHello Gus,
what Cloudfront settings did you change? Did you only disable the requirement of signed URLs and that was it? Could you please post the link to your test page?
Signed URLs should not stop Chromecast from working, but I see it could run into issues is the URL signature times out. I will test that out and feed the new URL with new singature into Chromecast when necessary. I hope it works, it’s getting quite complex that way.
We also need to handle subtitles.
Thanks,
Martin4 years ago in reply to: Make video undownloadableHello Bruno,
the first encrypted video which you created with FV Player Coconut wouldn’t play for you. It should play with that new FV Player Pro version in the Beta release.
Perhaps you already removed that video and moved on, in that case there is nothing to test anymore.
Thanks,
MartinHello Bruno,
please upgrade to FV Player VAST 7.4.39.727, there was a bug in the URL parsing.
Thanks,
Martin