Forum Replies Created
-
-
3 years ago in reply to: URL parameters token, expires, expire, verify
Hello Matthias,
thank you, you can remove these pages now. I’m trying to create a bugfix for the issue, although it’s still a mystery.
Thanks,
Martin3 years ago in reply to: URL parameters token, expires, expire, verifyHello Matthias,
please post that video to a new page and also post it without use of the lightbox. I haven’t found any problematic code where it could start adding these arguments to a random URL, specially if you are not using any of Settings -> FV Player Pro -> Hosting.
I also do not see why it does change the splash URL which you posted to just /externer-datenschutzbeauftragter/
What happens if you leave the splash field empty?
Thanks,
MartinHello Luca,
we succeeded at adding a full-featured FV Player video box into a LearnDash LMS lesson editing interface. Unless there are some issues we should have the integration ready this week.
I see what you mean about enabling a button to mark the lesson as complete. Is that not the Learndash LMS “Video Progression” setting which can be enabled for each lesson? That’s the actual point of the LearnDash LMS + FV Player integration.
Thanks,
Martin3 years ago in reply to: Using FV Player Pro With WP REST APIHello adv,
FV Player outputs using a standard WordPress shortcode, so it should work.
Are you interested in showing the player using REST API in a mobile app? In that case you will have to also include the FV Player scripts as just showing the HTML coming out of the shortcode won’t be enough.
Thanks,
Martin3 years ago in reply to: URL parameters token, expires, expire, verifyHello Matthias,
it’s a strange issue, but I guess it could occur under some strange occurrences. It seems that your splash image URL is recognized as being loaded from one of the CDNs and then the URL token is added to it. But somehow it’s not using the CDN domain properly and instead just links to your website with the URL token added to the URL.
Please let us know what actual splash image URL do you use for the player.
Please provide a link to a page where I can see the issue.
Please let us know what you actually have configured in Settings -> FV Player Pro -> Hosting.
Thanks,
MartinHello Basma,
please check your PHP error logs. If you are not sure about how to check the PHP error log, the server technical support should be able to give you a hand.
Or you can install this plugin which makes a list of these errors available in wp-admin: https://wordpress.org/plugins/error-log-monitor/
Then try to upload another video and the error should be recorded in these logs.
Thanks,
MartinHello ByCD,
it sounds like a good improvement, we will take care of it. Currently FV Player Alternative Sources does not work well with live streams, but we can fix that.
That way you will be able to post a HLS stream which is live and also a MP4 video URL for its recording which only becomes available once the live stream is finished.
It works even now, but it’s a bit weird – giving user some confusing messages about the live stream loading.
FV Player Pro will not be required.
Thanks,
MartinHello Luca,
we would like to build a proper integration – if you have to put in the shortcode by hand, then it’s half-done.
But perhaps it will be impossible if there is no WordPress action hook that would let us do this. In that case we will need to use the shortcode only. That’s why it’s taking us more time to check this.
Thanks,
Martin3 years ago in reply to: HLS Live Stream Posting IssuesHello Jean,
FV Player 7.5.14.727 is out and it fixes the issue.
If you input a live HLS stream, the Live Stream checkbox shows up checked. If the HLS stream is not live, the checkbox is not there. If it cannot be checked, the checkbox still shows, but not checked – as we need you to flag it as a live stream as we are not able to check it if it’s currently not running.
Thanks,
Martin3 years ago in reply to: HLS Live Stream Posting IssuesHello Jean,
when the live stream is not live it can report an error like that. Please ensure you marked the stream as live: https://foliovision.com/player/video-hosting/hls -> “If you are using a HLS live stream, make sure you tick the Livestream button in the editor as well” Then it will show a 30 seconds count-down and then attempt to reload the video automatically and if it still won’t play repeat over and over again.
However I see that since we automated the live stream detection in the last FV Player release you are not able to check that “Live stream” checkbox for a stream which does load when you are posting it. So I will improve that to give you all of these options in such case.
We are also working on a dedicated FV Player Live Streaming addon as well. There we could let you schedule the live streams – so that you could put in a date and time of when the stream will go live and show that exact time and date countdown like:
This live stream starts in
1 day 5 hours 30 minutes 54 seconds
Thanks,
MartinHello Kerry A.,
this really depends on the theme you are using. I see it’s the Newspaper theme: https://themeforest.net/item/newspaper/5489609?_ga=2.241147275.945239491.1641193907-1757184971.1641193907
Do they provide any documentation on how the video output can be customized or what WordPress actions or filters does it use? At a glance I was not able to find what I was looking for: https://forum.tagdiv.com/search/video/
So this would likely require some custom programming to create a child theme which would use all of the Newspaper theme and only adjust the video display to use FV Player.
Thanks,
Martin3 years ago in reply to: Ok.ru videos doesn’t work in EgyptHello MoviHub,
the video at https://foliovision.com/player/demos/ok-ru-video plays for me without issues. Could you please check again to see if it stopped playing randomly or if it still won’t play for you?
Thanks,
Martin3 years ago in reply to: Bunny Stream SupportHello John,
FV Player 7.5.13.727 is out and it includes Bunny Stream support. The setup wizard is in wp-admin menu in -> FV Player -> Bunny Stream.
Then you can use drag & drop to upload your video to Bunny Stream right in the FV Player Editor – making the video posting much easier.
Maria is finishing up the user guide.
Thanks,
Martin3 years ago in reply to: No more Vimeo Splash imagesHello Renaud,
I found I forgot to put up the new plugin files. I’m sorry about that. Now it’s fixed and reinstalling will give you the new plugin files.
There’s no POST in these requests. added some code to the Vimeo library on my test site to see the full request and full response:
// Enable verbose log $curl_opts[CURLOPT_VERBOSE] = true; $verbose = fopen('php://temp', 'w+'); $curl_opts[CURLOPT_STDERR] = $verbose; // Call the API. $curl = curl_init($url); curl_setopt_array($curl, $curl_opts); $response = curl_exec($curl); $curl_info = curl_getinfo($curl); // Show the verbose log rewind($verbose); $verboseLog = stream_get_contents($verbose); echo "Verbose information:\n<pre>", htmlspecialchars($verboseLog), "</pre>\n";
Here’s how the request for /me looks like –
> GET /me HTTP/1.1 Host: api.vimeo.com Accept: application/vnd.vimeo.*+json; version=3.4 User-Agent: vimeo.php 3.0.8; (http://developer.vimeo.com/api/docs) Authorization: Bearer 50...80
And the response:
< HTTP/1.1 200 OK < Connection: keep-alive < Content-Length: 3757 < Server: nginx < Content-Type: application/vnd.vimeo.user+json < Cache-Control: private, no-store, no-cache < Strict-Transport-Security: max-age=31536000; includeSubDomains; preload < X-RateLimit-Limit: 1000 < X-RateLimit-Remaining: 998 < X-RateLimit-Reset: 2021-12-17T05:00:32+00:00 < Request-Hash: 0a17bc60 < X-BApp-Server: api-v18665-kvs5k < X-Vimeo-DC: ge < Accept-Ranges: bytes < Via: 1.1 varnish, 1.1 varnish < Date: Fri, 17 Dec 2021 04:59:32 GMT < X-Served-By: cache-iad-kjyo7100050-IAD, cache-vie6372-VIE < X-Cache: MISS, MISS < X-Cache-Hits: 0, 0 < X-Timer: S1639717172.452268,VS0,VE184 < Vary: Accept,Vimeo-Client-Id {"uri":...,"account":"pro"}"
And here’s how the request looks like when obtaining the Vimeo splash screen for a video:
> GET /videos/196881410 HTTP/1.1 Host: api.vimeo.com Accept: application/vnd.vimeo.*+json; version=3.4 User-Agent: vimeo.php 3.0.8; (http://developer.vimeo.com/api/docs) Authorization: Bearer 50...80
Thanks,
Martin3 years ago in reply to: No more Vimeo Splash imagesHello Renaud,
I updated the Vimeo PHP SDK in FV Player Pro. Please deactivate and delete the FV Player Pro plugin you are using, then hit “Install Pro extension” at the top of the wp-admin -> Settings -> FV Player screen. That will reinstall the plugin and will give you the latest version.
I’m not able to easily give you the body of these Vimeo requests, since it’s done in their PHP SDK. It seems to use bare GET requests with the Authorization Bearer header.
Thanks,
Martin3 years ago in reply to: vetsion 7.5.12.727 does not play in wordpressHello Michal,
I prepared a fix for this for the next FV Player version. To get it right now you can 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 will be fixed. I’m not sure why we didn’t encounter the issue in our testing though.
Thanks,
Martin3 years ago in reply to: vetsion 7.5.12.727 does not play in wordpressHello Michal,
please upgrade the plugin now and I will have a look right away.
Thanks,
Martin3 years ago in reply to: No more Vimeo Splash imagesHello Renaud,
I’m sorry to hear about the trouble, are you hosting your website on DigitalOcean perhaps?
The log file which you get for the “Verbose” setting of Settings -> FV Player Pro -> Pro Features -> Debug has a line like this for each request:
Vimeo API action on Tue, 22 Jun 2021 20:40:36 +0000 /me on /wp-admin/users.php
So the format is:
Vimeo API action on {date} {API request} on {referrer}
That “API request” information shold be all they need. You can also send you API key to them and explain that it’s using their PHP library: https://github.com/vimeo/vimeo.php
Please also check Settings -> FV Player Pro -> Hosting -> Vimeo (Pro), there might be a message like this:
There were {number} API errors, last one from {date}.
…with a show link to reveal the errors, please let us know what does it show. If it somehow ends up checking the same video over and over again then we should fix that first.
Thanks,
Martin3 years ago in reply to: I need help installing FV Player in Vue3 years ago in reply to: I need help installing FV Player in VueHello Udi,
our video protection works with the PHP code, so it won’t work with Vue. Perhaps there is a way of using a WordPress site just for the video loading, but it sounds pretty complex.
Thanks,
Martin3 years ago in reply to: FV Player Coconut License Key Not WorkingHello Ryan,
since the Flowplayer license covers all the sub-domains, we use the same principle for FV Player and FV Player Coconut. It’s fair use however, so we cannot provide support for infinite number of subdomains.
But you shouldn’t be running into any issue here. It seems that when you were setting up FV Player Coconut on passionately.com you entered the license key without the “fv” part. Please try again and let us know.
Thanks,
Martin3 years ago in reply to: I need help installing FV Player in VueHello Udi,
FV Player is a WordPress-only player, but we would like to support some other integrations as well.
Please let us know which exact feature you want to use in Vue and I can tell you if using the JavaScript library will be enough: https://github.com/foliovision/flowplayer
Thanks,
Martin3 years ago in reply to: Problems with vimeoHello Luis,
it seems these videos are not allowed to be embed anywhere.
Please check the “Privacy Settings” section of our Vimeo guide: https://foliovision.com/player/video-hosting/how-to-use-vimeo#privacy
You will have to use that “Only sites I choose” option.
Thanks,
Martin3 years ago in reply to: ok.ru and mail.ru supportHello Aiurel,
it works for us here: https://foliovision.com/player/demos/ok-ru-video
Please send over the Ok.ru video which fails to play for you.
Also, does it obtain the video splash screen properly?
Thanks,
MartinHello Austin,
I was able to test FV Player with Avada 7.2.1, but the playlist would appear without issues. I guess it can depend on a lot of factors as it’s a page builder theme.
A CSS rule like this should work for you as a quick fix:
.fp-playlist-external.fp-playlist-horizontal a { width: 200px !important; }
We also offer a service to work on player customization to match your theme: https://foliovision.com/downloads/making-player-theme
Thanks,
Martin3 years ago in reply to: Problems with vimeoHello Luis,
could you please post the Vimeo links of these videos? It would make it easier for us to figure this out.
Thanks,
MartinHello Ryan,
thank you for posting all these details.
I prepared a fix for this for the next FV Player version. To get it right now you can 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 once you visit wp-admin -> FV Player -> Coconut Jobs the table should be properly created and you will be able to submit encoding jobs (or use drag&drop upload).
Thanks,
MartinHello Austin,
your screenshot does not seem to show the playlist thumbnails at all.
Please let us know what theme you are using and try with a standard WordPress theme as well.
Thanks,
MartinHello Markus,
with that CSS code the control bar won’t show in the splash state.
We worked hard on ensuring the AB loop does not cover the actual video (not even in fullscreen), so reverting that might be fairly tricky and not a simple CSS tweak.
Thanks,
Martin3 years ago in reply to: Autoplay doesn’t work with AjaxHello Markus,
here’s an update to that code to do allow that:
<script> jQuery( document ).ajaxComplete( function() { fv_player_did_autoplay = false; fv_autoplay_exec(); jQuery('[data-fvautoplay]').removeAttr('data-fvautoplay'); }); </script>
Thanks,
MartinHello Markus,
I just added the “Make the controlbar visible at all times” part to our CSS modification guide: https://foliovision.com/player/advanced/css-tips-and-fixes
Thanks,
Martin3 years ago in reply to: Autoplay doesn’t work with AjaxHello Markus,
it’s true that we do not process autoplay for the Ajax requests.
Detecting a finished Ajax call and then running a check for Autoplay wouldn’t be a problem:
<script> jQuery( document ).ajaxComplete(fv_autoplay_exec); </script>
This might work for you, or perhaps you need to use the event which you theme is using for Ajax.
But I wonder what should happen if you then load another post with Ajax. Would that also autoplay?
That’s why I haven’t found a definitive answer for how this could be a core part of our player settings.
Thanks,
Martin3 years ago in reply to: FLV pro and VASTHello Glenn,
please reinstall FV Player VAST from a new ZIP file which you download at https://foliovision.com/my-licenses That will add “Do not show ads to logged in users” in wp-admin -> Settings -> FV Player VAST.
To do that you will have to first deactivate and delete the current FV Player VAST 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.
Thanks,
Martin3 years ago in reply to: Video Sitemap and Elementor problemHello Cirdec,
could you please use wp-admin -> Tools -> Export to send us the WordPress XML with one of your Elementor posts? I wonder how it’s storing the data.
If you are not sure about this, then please send us a screenshot of your post editing in Elementor so that I can see what layout you are using.
Thanks,
MartinHello David,
I was not able to reproduce this issue, please let me know if you still run into the issue on https://www.iamyoga.online/test-fv-player-audio-cracks/ when you uncheck Settings -> FV Player Pro -> Hosting -> Vimeo -> Disable MPEG-DASH and what Vimeo video link are you using there.
Thanks,
Martin3 years ago in reply to: Vimeo Video not playing ChromeHello David,
could you please deactivate and delete the FV Player Pro plugin you are using (just the “FV Player Pro” plugin, no data will be lost), then hit “Install Pro extension” at the top of the wp-admin -> Settings -> FV Player screen. That will reinstall the plugin and give you the fixed version.
Then that video should play.
Thanks,
Martin3 years ago in reply to: Error message while starting Coconut jobHello Bruno,
please enable the video qualities which you would like to use in wp-admin -> FV Player -> Coconut Jobs -> Settings -> “Select which video variants to generate”.
I will look for possible reasons why this was not set properly for you and get it fixed.
Thanks,
Martin3 years ago in reply to: FV Video Checker – Access Denied ErrorHello John,
what about step 4. of “Obtaining the AWS Access Keys” in https://foliovision.com/player/video-hosting/secure-amazon-s3-guide#managing-access-permissions ? In the proper policy attached to the user?
Thanks,
Martin3 years ago in reply to: Error message while starting Coconut jobHello Bruno,
please check wp-admin -> FV Player -> Coconut Jobs -> Settings – do you have any of the “Select which video variants to generate” enabled? Perhaps the update in your case didn’t set the proper default for that setting, although I do not see how it could fail.
If the above won’t help then please go to wp-admin -> FV Player -> Coconut Jobs -> Jobs and click output stream name in the “Target” column of the table. That will show a popup with text like:
{ "storage": { ... "outputs": { ... "httpstream": { ... "variants": [ "mp4:240p_320k", "mp4:480p_700k", "mp4:720p_4000k", "mp4:1080p_6000k", "mp4:0x1440_10000k", "mp4:2160p_16000k" ] },
I wonder what it looks like in your case. Please let us know.
Thanks,
Martin3 years ago in reply to: Odysee New version error can’t turn on soundHello HungTQ,
thank you for providing more information about that YouTube issue. If the video is getting stretched, then please let us know if you are using the logo setting in wp-admin -> Settings -> FV Player Pro -> Hosting -> YouTube. Will it occur without it?
The playback quality in the YouTube player API is always using ABR, while on YouTube.com (or with their iframe code) you get a chance to pick the quality by hand. This is their decision, I guess they were getting too much traffic from these API players and decided to make it more limited, see the announcement here: https://developers.google.com/youtube/iframe_api_reference#october-24,-2019
I’m sorry that this is taking too long, we should split the threads into two to keep our work better organized and focused.
Thanks,
Maria3 years ago in reply to: FV Video Checker – Access Denied ErrorHello John,
I see you are not able to play these videos, you mentioned that earlier.
In that case please check the file permissions on AWS S3. This part of our guide will help you find it: https://foliovision.com/player/video-hosting/secure-amazon-s3-guide#managing-access-permissions
Thanks,
Martin3 years ago in reply to: FV Video Checker – Access Denied ErrorHello John,
CORS would only be required for HLS videos.
Please let us know if you are able to play the video. If not, then the issue could be with your AWS access key – see the first 7 steps here: https://foliovision.com/player/video-hosting/secure-amazon-s3-guide#keys
Thanks,
Martin3 years ago in reply to: FV player pro is conflicting with Elementor.Hello Brayan,
does the issue occur also on a clean new page built with Elementor where you only add a single FV Player? Or does it seem to occur on some more complex editing page? Could you please send us a screenshot so that I can see what you have up?
Thanks,
Martin3 years ago in reply to: Player TooltipsHello Markus,
thank you for your request. I think this would improve the accessibility of our player.
I wonder how it should work on mobile as you do not have hover there.
Thanks,
Martin3 years ago in reply to: Odysee New version error can’t turn on soundHello HunqTQ,
we have prepared a fix for this for the next FV Player Pro version.
To get it right now please deactivate and delete the FV Player Pro plugin you are using (no data will be lost), then hit “Install Pro extension” at the top of the wp-admin -> Settings -> FV Player screen. That will reinstall the plugin and give you the update version.
I also see we haven’t checked that YouTube issue, so we will do so.
Thanks,
Martin3 years ago in reply to: FV player pro is conflicting with Elementor.Hello Brayan,
we have prepared a fix for this for the next FV Player Pro version.
To get it right now please deactivate and delete the FV Player Pro plugin you are using (no data will be lost), then hit “Install Pro extension” at the top of the wp-admin -> Settings -> FV Player screen. That will reinstall the plugin and give you the update version.
Thanks,
MartinHello Brayan,
the Bunny Stream DRM function is great. It’s just as powerful as what we do with FV Player Coconut, but it’s less controlled.
Since the player runs in an iframe, it’s easier to play with it for experienced users. For example the WordPress membership restrictions will not apply to it. The “Embed View Token Authentication” setting should allow you to avoid that, but then you have to create the iframe codes dynamically.
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
could you please double-check that the issue will be solved just by removing the code to load FV Player?
Are you using any WPLSM setting to track video progress?
Could you please ask WPLSM support if they track FV Player video progress in any way? It’s hard for us to check this as we do not have their license nor a test site. We contacted them regarding their documentation and haven’t heard back from them yet.
Thanks,
MartinHello Brayan,
I’m sorry that we were not able to solve this issue for you, but I just do not see how it could be still failing. We can only create a new version with a lot more debug output for you to send back to us.
The decryption key field is optional. We will make it so that it only shows if the stream is actually encrypted.
You shouldn’t have any issue with using of Bunny Streams in FV Player, you just cannot use their DRM protection. We are also finishing up a full drag&drop integration of Bunny Stream with FV Player.
Thanks,
MartinHello Brayan,
some other plugin must be breaking the PHP session here.
Please reinstal FV Player Coconut from a fresh ZIP from https://foliovision.com/my-licenses again.
Then run the FV Player Coconut Wizard again, it won’t use the session so it should just work for you.
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
thank you for sending it over to us privately.
I was able to see the issue in Safari. I wonder when deos the WPLMS unit_load event really occur.
Please try to increase the timeout in it:
document.addEventListener('unit_loaded', function(){ setTimeout( fv_player_load, 100 ); });
If this helps, then perhaps WPLSM just needs to provide an event which occurs once the new unit HTML code is set and not before that.
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
please just reply to the forum notification. You can use a service like https://revealit.me/ to share the access with reasonable security if there is any access password.
Thanks,
MartinHello Brayan,
this error won’t be related to WPLMS, but if we hear about more issues with it we will check them out if we can get a version of the plugin for testing.
Please reinstal FV Player Coconut from a fresh ZIP from https://foliovision.com/my-licenses
To do that you will have to first deactivate and delete the current FV Player Coconut 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 run the FV Player Coconut Wizard again and this time it should include all the information about why the Bunny.net API call has failed.
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
I thought I will be able to check this easily, but it’s not as simple. Appending a new player to page using Ajax, playing it, then appending another, playing it and finally playing the player in from that previous Ajax request didn’t trigger any issues.
I tested with Safari 14.1.1 and 15.0.
What specific featured you use with your MP4 videos? Are these in playlist, chapters, or with AB looper?
Could you please share a test page on your website where we can see this behavior?
Thanks,
Martin3 years ago in reply to: Every single Video is shown as a playlistHello Gerald,
I think this issue must occur only on videos with the FV Player Pro Video Ads. Please try to select “No ad” in FV Player Editor in “Actions” tab as seen in step 6. in our FV Player Pro Video Ads guide: https://foliovision.com/player/ads/using-preroll-postroll-ads
But I do not see why this would fail. Please send us a link to a test page where we can see the issue. This is a new issue so we would like to improve our code to ensure it doesn’t occur.
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
please let us know what video type you use. It seems like a bug in our handling of Safari for some video type. Is it Vimeo?
Please also let us know what Safari version you are using.
Thanks,
MartinHello Brayan,
these PHP error logs will help, but please start by doing this as it’s simpler:
Open the wp-admin -> FV Player -> Coconut screen again, there should be a button “Show wizard log”. Clicking that button will reveal the log of the wizard operations – hopefully including explanation why the API call with BunnyCDN has failed.
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Bryan,
could you please let us know what did you had to do to fix the WPLMS integration if you have a bit of time? I would like to report this back to WPLMS developers so that they can fix it here: https://wplms.io/support/knowledge-base/fv-player-support-for-wplms-4-0-in-unit/
I moved your question about FV Player Coconut Wizard to a new thread: https://foliovision.com/support/fv-wordpress-flowplayer/troubleshooting/fv-player-coconut-wizard-fails-to-setup-bunnycdn
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwa3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
please try to use this code instead:
document.addEventListener('unit_loaded', function(){ fv_player_load(); });
That should already check all the instances and load what’s necessary.
If that won’t help, here’s a variation:
document.addEventListener('unit_loaded', function(){ setTimeout( fv_player_load, 10 ); });
If that won’t help then please try to reinstall FV Player Pro, as I put in a fix into it.
To do that first deactivate and delete the FV Player Pro plugin you are using (no data will be lost), then hit “Install Pro extension” at the top of the wp-admin -> Settings -> FV Player screen. That will reinstall the plugin and give you the update version.
Then switch to the Beta release using the steps from here: https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta
Thanks,
Martin3 years ago in reply to: fv player not working inside the WPLMS pwaHello Brayan,
so does the issue only occur on your mobile phone app and everything works on your website?
How does your mobile app show your website content?
What video type did you use with the free version and what do you use with FV Player Pro? Did you perhaps switch from MP4 to Vimeo or so?
Please let us know.
Thanks,
Martin3 years ago in reply to: hyphenation in transcriptHello Edward,
please check https://foliovision.com/player/advanced/css-tips-and-fixes -> Allowing Hyphens for Transcript
Thanks,
Martin3 years ago in reply to: Bunny Stream SupportHello John,
that is correct, FV Player Bunny Stream will mainly make it a lot easier to add new videos. I hope we can also use their timeline previews which is a huge benefit.
Thanks,
MartinHello Luke,
the part which we didn’t figure out yet are the timeline preview thumbnails.
If we get lucky we might have the first version out next week.
Thanks,
Martin3 years ago in reply to: Bunny Stream SupportHello John,
the part which we didn’t figure out yet are the timeline preview thumbnails.
If we get lucky we might have the first version out next week.
If you need video download protection, then FV Player Coconut is the way to go. We are finishing a big upgrade there – allowing video drag&drop uploads right on your WordPress website. The FV Player Bunny Stream plugin will have that too.
Thanks,
Martin3 years ago in reply to: Audio Muted (Autoplay is disabled)Hello Gillian,
I prepared a fix for this for the next FV Player version. To get it right now you can 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.
The issue would occur if you muted the video and the reloaded the page and tried to unmute it again.
Thanks,
Martin3 years ago in reply to: Database Error when encoding new coconut jobHello Nathan,
thank you for sending over the fix!
I guess most MySQL servers do not mind this mistake, but in your case it did cause the issue.
Please reinstall FV Player Coconut from a fresh ZIP from https://foliovision.com/my-licenses again. Then it will work.
Thanks,
Martin3 years ago in reply to: Missing field “description” on FV Player.Hello Mark,
I do not see how would FV Player generated an empty description Schema.org tag. On top of that there are the linebreak br tags which shouldn’t be there.
Where is that FV Player posted? Is it in post content or in a widget?
Are you using some page builder with it?
Is there any other plugin that it taking care of SEO fields?
Thanks,
Martin3 years ago in reply to: Database Error when encoding new coconut jobHello Nathan,
something must be preventing the database table creation.
Please check your PHP error logs. If you are not sure about how to check the PHP error log, the server technical support should be able to give you a hand.
Or you can install this plugin which makes a list of these errors available in wp-admin: https://wordpress.org/plugins/error-log-monitor/
Then just go to wp-admin -> FV Player -> Coconut jobs again and another error should be recorded in the logs.
Thanks,
MartinHello futurodigital,
after having a closer look it’s clear that this is a big project – getting all the approval from Google and so on.
For now we will just hide the Chromecast button if the video is not going to play with it.
Thanks,
MartinHello Gus,
to conclude this thread, the issue is with separate audio track HLS streams: https://foliovision.com/support/fv-wordpress-flowplayer/bug-reports/chromecast-2
Thanks,
MartinHello rhys,
to conclude this thread – we have added Odysee support couple of month ago: https://foliovision.com/2021/09/odysee-youtube-alternative-hosting
Odysee is the successor of LBRY.tv.
Thanks,
Martin3 years ago in reply to: Database Error when encoding new coconut jobHello Nathan,
please, try reinstalling FV Player Coconut from a fresh ZIP from https://foliovision.com/my-licenses
To do that you will have to first deactivate and delete the current FV Player Coconut 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.
Let us know, if it helped. I think there was a bug in the database table creation code.
Thanks,
Martin3 years ago in reply to: Vimeo Video not playing ChromeHello David,
we fixed the API to cover this special case, but I see an update to FV Player Pro will be required too. So we will take care of that too and let you know.
Thanks,
Martin3 years ago in reply to: Missing field “description” on FV Player.Hello Mark,
thank you for posting the details. I guess it was not clear to Maria that you mean the SEO markup for videos and not the video sitemap.
In FV Player we always use some description for the Schema.org video markup. It uses the FV Simpler SEO meta description (post meta key _aioseop_description) or 10 words from the article, or in the worst case the WordPress Tagline for the website.
It does not put in “id” which seems to be present on your screenshot “it-should-be-there”.
Thanks,
Martin3 years ago in reply to: Remove “Copy link” and YouTube logoHello Uwe,
I do not remember seeing such display issues with FV Player.
Please post a link to the page (you can create a test page with password which you send to us and we won’t publish it) where we can see the issue.
Thanks,
Martin3 years ago in reply to: Videos start from 15 secondsHello Tiziano,
I prepared a bugfix for the next FV Player release.
The issue was related to the generic HLS m3u8 file names such as index.m3u8. If your user had no record of watching the video with the database ID, it would fall back to pick the position recorded for a index.m3u8 video. So we prevented use of such generic identifiers for position saving for non-database FV Player instances.
Thanks,
Martin3 years ago in reply to: Videos start from 15 secondsHello Tiziano,
I noticed this issue on one of our websites just the other day and I thought it must be some strange bug and that I will come to it later.
Thank you for your bug report, I will prioritize this fix. Now it’s clear that it’s not just some random issue.
Thanks,
Martin3 years ago in reply to: Coconut Jobs – error “api_version_not_valid”Hello Jörn,
the version of the FV Player Coconut plugin has not yet been increased, I’m sorry that it caused the confusion.
Please let us know if you did already reinstall the plugin and if you still get “You must use the Coconut API v2”. Also, what version you get on https://app.coconut.co/api ?
Thanks,
Martin3 years ago in reply to: transcript formatingHello Edward,
currently you can either use the automated transcript formatting or disable it (“Preserve original formatting” in editor).
We will have a team discussion if it could be beneficial to have another setting.
Thanks,
Martin3 years ago in reply to: Vimeo Video not playing ChromeHello David,
for some reason that video does not have the MP4 versions available. We will make that work.
Also thank you for a reminder about that audio glitch issue.
Thanks,
Martin3 years ago in reply to: Vimeo Video not playing ChromeHello David,
it seems you are using Settings -> FV Player Pro -> Hosting -> Vimeo (Pro) -> Disable MPEG-DASH. Could you please try again with that setting disabled?
Thanks,
Martin3 years ago in reply to: Vimeo Video not playing ChromeHello David,
I’ve done as much testing as I could, but the video did play for me on my test site.
Your test page https://www.iamyoga.online/test/ does not work without login. Could you please make it available for public?
Thanks,
Martin3 years ago in reply to: Remove “Copy link” and YouTube logoHello Uwe,
I guess you mean you have used Vimeo. Please let us know if you also set up the access token as required, you can see this in our guide: https://foliovision.com/player/video-hosting/how-to-use-vimeo#access-token-setup
Thanks,
Martin3 years ago in reply to: hlsjs-lite error with Bunny.net hls3 years ago in reply to: FLV pro and VASTHello Glenn,
that plugin surely provides a PHP function to check the user membership status.
We could also create a plugin to let you disable ads based on the user membership level set with Paid Member Subscriptions.
Thanks,
Martin3 years ago in reply to: hlsjs-lite error with Bunny.net hlsHello Mitch,
sorry about the mistake, in your initial message where you said you are streaming with Bunny.net it was not clear if you use Bunny Stream or Bunny CDN.
If the video still player for you in some other player, then I would guess it was some video application which does not require the CORS headers or so.
Do you mean the video won’t play in wp-admin -> FV Player screen, or some post editing screen when the Lightbox is enabled on it? We will test that.
Thanks,
Martin3 years ago in reply to: Odysee New version error can’t turn on sound3 years ago in reply to: FLV pro and VASTHello Glenn,
Pavel’s answer needs a correction – you would have to set the “vast” argument using the fv_flowplayer_args_pre filter which is documented in https://foliovision.com/player/advanced/api-programming That’s where you could check the user membership level too.
We also had a request for a plugin like this before. What membership solution would you like to work with?
Thanks,
Martin3 years ago in reply to: FV PLayer VAST license key invalidHello Amir,
I found there was indeed a bug which was preventing the license key check on websites where FV Player VAST was just installed.
please reinstall FV Player VAST from a fresh ZIP file which you get on https://foliovision.com/my-licenses
Then remove the license key, save the settings and put it in again. That will make sure the license check if attempted right away.
Thanks,
Martin4 years ago in reply to: Coconut API version and regionHello Sebastiaan,
we are about to finish some code refactoring to allow video uploads directly on the WordPress website with both Coconut and Bunny Stream. Once that is done, we will look into supporting these different Coconut API regions.
Thanks,
Martin4 years ago in reply to: How to hide AD for a logged in userHello Don,
we have worked on adding such ad rules for a project, we will look into that and let you know if we could release it as another addon plugin for FV Player.
If you have a PHP programmer working on your website it should be quite easy to write a custom function to disable these ads based on your exact needs too. We happy to provide the guidance for that as well. Our programming guide should provide a good start, you could use the “fv_flowplayer_ad_html” filter and take inspiration from the “fv_flowplayer_popup_html” sample code.
Thanks,
MartinHello Çapan,
it appears there is some ad which appear a div with the following class to the player element: wikim-below-video That causes the player dimensions to grow.
If that needs to happen, it should use some positioning to cover the video with a close button, or it should insert above the player, but into into its div element.
Thanks,
Martin4 years ago in reply to: Coconut API version and regionHello Sebastiaan,
I’m sorry about the inconvenience. Our new version release has delayed as we never got around to test the transition from old Coconut API to the new one.
Please reinstall FV Player Coconut from a fresh ZIP file which you obtain from https://foliovision.com/my-licenses
To do that you will have to first deactivate and delete the current FV Player Coconut 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 if that fixed the issue.
We could be adding the Coconut region selection as well.
Thanks,
MartinHello Çapan,
there is something setting CSS rule “height: auto !important” on the player container. We do not use such code in FV Player nor FV Player Pro.
Does it happen even without all the ad scripts?
Thanks,
Martin4 years ago in reply to: 0.05 speed step ?Hello Cirdec,
I tried to use a 0.05 speed increment and it seems to be working – although it was not easy to judge if it’s really playing faster or not.
However if we have so many different speed steps the user interface which is currently a menu in control bar becomes a bit clunky.
If you know how to edit functions.php you can easily put in the custom speeds which you need, see the “fv_flowplayer_conf” code sample here: https://foliovision.com/player/advanced/api-programming
Thanks,
Martin4 years ago in reply to: AWS Updates regarding AWS LambdaHello Joe,
FV Player doesn’t work with the AWS Lambda function. It only plays the files hosted on AWS S3 using the AWS Cloudfront CDN.
We also support the encrypted videos created using AWS Elemental MediaConvert, but do not automate it’s functioning in any way.
Some of our users use the AWS Video on Demand implementation, but it doesn’t appear to use Lambda either: https://aws.amazon.com/solutions/implementations/video-on-demand-on-aws/
Thanks,
MartinHello Christian,
since the videos are downloaded from Vimeo servers, FV Player Pro running on your website cannot tell the web browser what file name it should use for download of the video. This is blocked in the web browser to ensure online security and privacy.
If that other plugin did manage this then it was probably downloading the file using PHP and then passing it back to user’s browser from the website domain. That could work, but it might prevent users from resuming the broken downloads, lower the download speed and put extra strain on your server.
Thanks,
Martin4 years ago in reply to: Control Bar Makes Webpage Constantly ExpandHello John,
the new FV Player might be released next week. There is just no way around that bug in FV Player Pro 7.5.7.727 to 7.5.10.727, so we will be checking our license checks until we see almost everybody is on FV Player Pro 7.5.11.727 or any version before FV Player Pro 7.5.7.727.
I’m sorry about the inconvenience, please just upgrade the plugin by hand as described. There is no risk involved in deleting the FV Player plugin, no videos nor settings will be lost.
Regarding the iOS 14.8 issues – please try to play the HLS stream URL on your colleagues phone directly – by putting the m3u8 link to the browser location bar, or posting it to your colleague via email as a link to click.
On iOS iPhone FV Player completely relies on the core video playback engine. In past we heard reports of mp4 videos not playing in FV Player on some iOS iPhones and it always wouldn’t play in the device browser too. So we tried to look for solution, like figure out what makes these mp4 videos broken in way, but haven’t found anything. We also have a user with iOS 13.7 who is not able to play any of the video in FV Player, but not even any bare HTML5 video nor YouTube.
Also, currently the stream doesn’t play, it just reports 404 error.
Thanks,
Martin4 years ago in reply to: Link after 1hour10minHello Naoki,
I prepared a fix for this for the next FV Player version. To get it right now you can 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.
Thanks,
Martin