Forum Replies Created
-
-

Hello tcnet,
it’s not really ready for real use, I just posted that in case you like to play with JavaScript. You could inject it to the site footer using wp_footer action hook in your theme functions.php file.
To make it work you would also have to also add something like var pipButtonElement = document.getElementById(‘pipButtonElement’);
Thanks,
Martin5 years ago in reply to: Transfer plugin
Hello yairbr,
currently the plugin lets you only export the player instances on by one and then import then on the new website. However you probably need to keep the player instance IDs the same. If you have blog articles using [fvplayer id="100"] then than number must not change. This could be imported to let you export all the players and then have an option to keep the IDs when importing.
So the safest way is to export all the wp_fv_player_* tables (wp_fv_player_players, wp_fv_player_videos, wp_fv_player_playermeta, wp_fv_player_videometa) using the database tool like phpMyAdmin which is available in most web hosting control panels. And then import that using similar tool on the new website.
You probably also want to keep the plugin settings. These can currently only be moved with a database tool, although if you put the two settings screen on both website side by side it’s not a problem to move over the settings. In database the settings are stored in the fvwpflowplayer and fv_player_popups rows of the wp_options table. We started building an export/import feature for these settings, but then we got lost in some details and it was never released, so perhaps it’s time to revisit that.
Another option to consider would be to clone the whole website and then delete the unnecessary parts. I did that a couple of times where I needed an almost identical website.
Thanks,
Martin5 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
1) would it help 1 you would create the FV Player using the old shortcode format?
[fvplayer src="https://{get your custom field Vimeo ID here}"]2) Regarding that live stream issue – have you reinstalled FV Player from? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip We done some improvements for live stream there last time I was mentioning it.
3) Video submissions – tying it into Gravity Forms is just the start. What format do you expect your users to submit videos in? If it’s just any video, then it needs to be properly encoded for web use which is another issue. With FV Player Coconut (the upcoming integration of Coconut encoding service) it would be possible though.
Thanks,
Martin
Hello Hoshang,
we have a routine to try different API servers when loading Vimeo videos, but I see it only detects when the server is down. Now we improved it to deal with bad server response as well.
Please switch FV Player Pro to Beta: https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta Once you are on beta, you should see the update to version 7.4.26.727.beta available. That update will fix the issue you are having.
If you do not see the update yet, you can just deactivate and delete the current FV Player Pro plugin and then let wp-admin -> Settings -> FV Player reinstall the Pro pack for you, or grab a fresh ZIP file of FV Player Pro from https://foliovision.com/my-licenses and reinstall from that and the issue will be fixed.
You also mentioned the email notification reporting a fatal error in FV Player to you. Please try to find it and copy the error message here. Did it occur only once or does the issue keeps reoccurring?
Thanks,
Martin
Hello Andy,
Start again – it’s not hard to achieve, but two play arrows would be too confusing. Perhaps something like the Rewind button could work if it would appear next to the big play button with word “Restart” in it.
Regarding your encoding needs – we are finishing FV Player Coconut which integrates the Coconut encoding service with FV Player and WordPress. It lets you store your videos in AWS, DigitalOcean, or SFTP. You will also need a CDN and BunnyCDN works well with all of these video storage options.
Thanks,
Martin5 years ago in reply to: Amazon Drive
Hello Bruno,
please reinstall FV Player Pro and it should be working for you.
Please just deactivate and delete the current FV Player Pro plugin and then let wp-admin -> Settings -> FV Player reinstall the Pro pack for you, or grab a fresh ZIP file of FV Player Pro from https://foliovision.com/my-licenses and reinstall from that.
Then switch to Beta, here’s how: https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta
Thanks,
Martin5 years ago in reply to: Playing MP3 cuts out on iPhone
Hello Crystal,
I was testing this on iOS 13.3.1 and didn’t had an issue with it on https://foliovision.com/player/demos/mp3-in-fv-player The audio kept playing even if I put the phone to sleep.
Your video on https://www.getalifemedia.com/mobile/ai-invasion-audio-part-5/ plays for me as well.
I’m noticing that if I pause the track on the lock screen and try to resume it, it fails. But I have the same issue even with a bare bones HTML audio tag.
Please let us know which exact iOS version you have used.
Juraj, please let us know about your iOS version too.
Thanks,
Martin5 years ago in reply to: Automating AWS MediaConvert Encryption
Hello Slogin,
you should be able to do this without issues. You know what will be the target S3 bucket path like, so you can easily use part of that path for step 10 and 16.
If you are able to do AWS automation then this really should be the easy part of it. When you are submitting a new encoding job you will have to adjust these paths of course, but that really should be possible to do in AWS.
Thanks,
Martin5 years ago in reply to: Autoplay can’t be disabled (Ionic framework)
Hello Punith,
what code do you use to disable the autoplay on revisit? Do you use the FV Player Pro feature? https://foliovision.com/player/basic-setup/autoplay#autoplayOnlyOnce
Or do you actually mean some other issue, like that the video keeps playing even though you switch to some other article?
Thanks,
Martin5 years ago in reply to: Encrypted HLS videos not playing
Hello anshbhawnani,
please try the troubleshooting steps I mentioned in my last message:
Figuring out what’s causing that redirection is not easy. I usually end up logging PHP debug_backtrace(2) in wp_redirect() into some file to see if it’s happening inside of WordPress or not.
I see you are using Cloudflare, perhaps that’s what’s causing the redirection. Can you disable their proxy cache for test? Are you able to exclude just the fv_player_hls_key addresses from their procesing?
In the end the easiest solution might be to use fv_player_hls_key= without slashes or any other special chars. Can you edit these m3u8 files to use fv_player_hls_key=8.1+Introduction+to+System+Hacking ? As long as it’s unique it will work.
Unfortunately I was not able to identify a possible bug in FV Player Pro which could cause your stream to not play. In the worst case you will have to change the fv_player_hls_key arguments in your m3u8 files.
We are also happy to do these troubleshooting steps for you if you order our pro support: https://foliovision.com/pro-support
Otherwise please do through these steps and let us know the result, then we might have some more ideas if it won’t help already.
Thanks,
Martin6 years ago in reply to: Encrypted HLS videos not playing
Hello anshbhawnani,
I think the problem is that https://bittentechsolutions.in/?fv_player_hls_key=module-8/1/ is redirected to https://bittentechsolutions.in/?fv_player_hls_key=module-8%2F1%2F
Figuring out what’s causing that redirection is not easy. I usually end up logging PHP debug_backtrace(2) in wp_redirect() into some file to see if it’s happening inside of WordPress or not.
I see you are using Cloudflare, perhaps that’s what’s causing the redirection. Can you disable their proxy cache for test?
In the end the easiest solution might be to use fv_player_hls_key= without slashes or any other special chars. Can you edit these m3u8 files to use fv_player_hls_key=8.1+Introduction+to+System+Hacking ? As long as it’s unique it will work.
Although on our websites we are not having any issue with slashes in that query argument. There is no redirection like in your case.
Thanks,
Martin
Hello tcnet,
I see it works when using a bar HTML5 video tag.
I see, you can also just put a button somewhere on your page:
<button id="pipButtonElement"></button>
And then add a script for it to work with video in FV Player.
pipButtonElement.addEventListener('click', function() { jQuery('.flowplayer.is-ready video')[0].requestPictureInPicture(); });I will check with Alec if we would like to add this as an optional button in FV Player control bar.
Thanks,
Martin
Hello stickwerks,
we haven’t concluded this thread. The guide for S3 Browser in FV Player is here: https://foliovision.com/player/advanced/how-s3-browser
Thanks,
Martin
Hello Andy,
Twenty Twenty sets global $content_width; to 580. That might be it: https://github.com/WordPress/twentytwenty/blob/master/functions.php#L47-L51
Can you send us any example of an existing player where that “start again” kind of feature works really well?
Thanks,
Martin6 years ago in reply to: Encrypted HLS videos not playing
Hello anshbhawnani,
I think I have a fix for your issue.
Please just deactivate and delete the current FV Player Pro plugin and then let wp-admin -> Settings -> FV Player reinstall the Pro pack for you, or grab a fresh ZIP file of FV Player Pro from https://foliovision.com/my-licenses and reinstall from that.
Then switch to Beta, here’s how: https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta
Hopefully that will fix the issue.
Thanks,
Martin6 years ago in reply to: layout issue on fwplayer page
Hello Edward,
we need to figure out something better, but this is what will help with your issue – click “Screen Options” in the top right corner of that wp-admin -> FV Player screen and uncheck:
* Player (or Playlist, if you have older version)
* Player Name (or Playlist Name, if you have older version) – you do not need this one if you embed each player in a post, as the post name shows up in Embedded On column
* Date (I suppose you do not need it)
* Shortcode (you can still copy it with the Copy button)Thanks,
Martin6 years ago in reply to: preview not showing
Hello Daniel,
sorry about the delay here, do you recall what popup it was? Was it the core FV Player lightbox, or did you use something else?
Thanks,
Martin6 years ago in reply to: Encrypted HLS videos not playing
Hello anshbhawnani,
does the issue occur in Chrome or Firefox? Does it play in Safari on OS X?
Is your WordPress homepage really https://bittentechsolutions.in? That means https:// and no www.
Do you see any errors on browser JavaScript console when you try to play the video? Here’s how to enable that console in your browser: https://wordpress.org/support/article/using-your-browser-to-diagnose-javascript-errors/#step-3-diagnosis Once you open that console, reload your page and try to play the video please. Do any errors appear on that console?
Thanks,
Martin
Hello Andy,
please let us know if you find anything interesting or if you think some FV Player CSS needs to be fixed.
Thanks,
Martin6 years ago in reply to: Vimeo Showcase with my own splashscreen?
Hello David,
sorry about that, I see that change was reverted as we refactored the code around these Vimeo showcases to work with background processing.
Please just deactivate and delete the current FV Player Pro plugin and then let wp-admin -> Settings -> FV Player reinstall the Pro pack for you, or grab a fresh ZIP file of FV Player Pro from https://foliovision.com/my-licenses and reinstall from that and the issue will be fixed.
Thanks,
Martin6 years ago in reply to: RTMP file not found – not working in preview
Hello Omar,
the Video field needs to stay empty. RTMP server needs to be rtmp://197.189.234.42:1935/vod and RTMP path needs just sample.mp4 in it.
However I see that the preview won’t work if there is nothing in “Video” field. We will fix that.
Thanks,
Martin6 years ago in reply to: Make embed code responsive
Hello Tio,
as you can see in that Stack Overflow answer, this would have to include some CSS code as well. You need some code like that even for YouTube embed codes to appear as responsive.
In our iframe code we already include that max-width CSS property to make sure it at least adjusts to the content column width if the iframe is wider.
We could include a whole bunch of code around the iframe to make it responsive though. It would look like this:
<div style="padding-top: calc( 56.25% + 156px); position: relative;"> <iframe src="https://foliovision.com/player/demos/amazon-signed-urls/fvp" allowfullscreen style="height: 100%; width: 100%; position: absolute; top: 0; left: 0" frameborder="0"></iframe> </div>
Thanks,
Martin
Hello Gillian,
I was not able to reproduce the issue. Did you modify the Twenty Twenty theme in any way? Is it a standard post or some page with special template?
That size of 1280×720 is applied to the .flowplayer element as max-width and max-height, unless it’s a playlist. In that case it get’s width: 100% which still won’t extend past your content column boundaries.
Please send over your system info found in Settings -> FV Player Pro -> Tools -> System Info.
Please also send a link where we can see the issue.
Thanks,
Martin
Hello tcnet,
I think the last time we had somebody wonder about the Firefox Picture in Picture the request was to get rid of it.
It’s actually a Firefox-only feature as you noted. FV Player can only do what’s possible in the browser window, so that is the Sticky video feature: https://foliovision.com/player/advanced/sticky-video
Thanks,
Martin
Hello Clark,
mp3 is the right format, it has wider support than aac:
https://caniuse.com/#feat=mp3
https://caniuse.com/#feat=aacThere is just something wrong with your files.
Thanks,
Martin
Hello Steve,
thank you for the bug report, we have prepared a fix for the next FV Player release to fix the mute button/speaker icon click behavior. The bug has occurred as we improved the cooperation of the volume bar and that mute button: https://foliovision.com/2020/04/reliability-usability-player -> VOLUME BAR IMPROVEMENTS
If you want to get the fix right away then 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.
Thanks,
Martin
Hello Torsten,
I was not able to reproduce the issue, it just works, see the second player here: https://foliovision.com/player/demos/vtt-chapters
Please send us a link to your website where we can see the issue.
Thanks,
Martin
Hello Steve,
it does work for me. I make that tweak here: https://foliovision.com/player/demos/align-settings
When you check the HTML code you can find these rules there:
.flowplayer .fp-volumebtn, .flowplayer.no-volume .fp-volumebar { ....What browser are you using? No issues here on Chrome, Safari and Firefox.
Actually I see the issue on iPad with iOS 13. We will get it fixed.
Thanks,
Martin
Hello Clark,
this is tricky. FV Player uses the HTML5 video engine of the browser to play the videos and it’s the same with audio track. So it’s hard for us to fix browser bugs.
Firefox and Safari say the video is only 06:42. On the other hand Chrome reports 54:30. Both play the video past that time until the real end of it. Even when not using FV Player – just try to open your mp3 file in the browser directly and you will see.
And it’s not just web browsers. When I play it with QuickTime Player I get 06:43 and it stops the audio track right there. In iTunes it’s 54:31 and after that it also stops playing. In VLC it reports 54:30 and stops at that time as well.
So actually the way it works in the web browsers – allowing you to get past that estimated play time – is better than these desktop applications.
I would recommend you to re-encode these audio tracks as that’s the only proper fix here.
It would be possible to do a workaround using the Flowplayer API, like for example this set the video duration to a custom value:
flowplayer(0).video.duration = 7200;
But for that to work you would have to fill in the real duration of each video somehow. So it’s not only fairly hard to code in the first place, it would also require some manual labor – and so does reencoding the files.
Thanks,
Martin6 years ago in reply to: Autoplay/Autopause in/out viewport
Hello Eric,
the way it works is not because it could cause issues, it’s a deliberate choice. Like you noticed it autoplays on your way down the page, but if you go up again it won’t autoplay again.
However that’s not always ideal, so in the Beta version (any license user can switch to that: https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta ) of FV Player Pro we did add another setting:
Also work when scrolling up and do not stop autoplaying other videos on page if user paused some video
That makes the autoplay work also when scrolling up.
For upcoming FV Player 7.5 we also prepared another improvement, where the videos that go outside of viewport do not stop the playback (reset the position) but only pause.
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
I would also like to thank you for going through this with us – adding support for Vimeo live events.
I’m not sure about the switching form you are creating. Do you mean that if there is no live stream it should pick some other video?
Currently FV Player Vimeo Live Streaming either plays the live video or the archived version.
The way we work with these Vimoe live events is that we always check what current Vimeo ID it really uses. So that way we get ttps://vimeo.com/428996095 for event https://vimeo.com/event/66279 Is that the player inside of a player functionality you mean?
Thanks,
Martin
Hello Asad,
sorry about the delay here, I found that there is a way of getting rid of that player on iOS lock screen: https://stackoverflow.com/questions/56783395/disable-ios-safari-lock-screen-scrubber-for-media
But it’s tricky as some users need this feature, while some like you would prefer to not have it. So I wonder if we can disable it only if the video embedding is not allowed for example.
We also got your refund request, we will follow up on that.
Thanks,
Martin6 years ago in reply to: Display Error of YouTube thumbnails
Hello Inderjit,
we improved the CSS to target the .fp-splash image in FV Player better so that kind of CSS rule you are using won’t take effect:
1) 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.
2) Grab a new copy of FV Player Pro from https://foliovision.com/my-licenses
Thanks,
Martin
Hello John,
so are you using DigitalOcean Spaces as a storage and BunnyCDN for the CDN? We use that same setup and so far there were no issues.
There was a couple of days when European BunnyCDN edge servers were slow to pull files from Northern America though. Their Origin Shield should help in that case.
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
I checked that page and read what it said:
It worked with the live event code, however after the stream ended the player got assigned the ID for the stream that happened.
You can’t stream a new livestream.
…
If you go to vimeo.com/430080528 you see the stream that happened.
Go live on that stream again and it does not work.
URL and video ID need to be purged and regenerated I think.
So did it play the live stream?
Once it ended and you tried to play again, did it play the recorded stream?
But then if you tried to do a new live stream, it wouldn’t play that, is that correct? We actually do purge the video ID every 2 minutes, so it should play.
You also asked about:
No shot at getting your player controls on the livestream huh?
Unfortunately Vimeo made that impossible by restricting the CORS for the live streams.
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
sorry about that FV Player Pro error, it occurred as you didn’t upgrade the FV Player first. But I fixed the FV Player Pro code now and you can get new version at https://foliovision.com/my-licenses with the fix in it.
These Vimeo API logs will be cleaner in that new FV Player Pro version too.
Please post the login using https://revealit.me to support@foliovision.com I’ll be able to have a look in about 5 hours from now.
Thanks,
Martin6 years ago in reply to: Display Error of YouTube thumbnails
Hello Inderjit,
these black bars are part of the splash image. I also see you are using this to add some padding to the image which make this more obvious:
.the-content img.aligncenter { margin: 0 auto; padding-bottom: 20px; padding-top: 5px; float: none; width: 100%; }Without that rule, this image would fit nicely into your player container.
I’m also not sure how does aligncenter get added to the image tag of FV Player. My guess is that you might be using some plugin or code to set the alignment of all the images in posts and it’s affecting FV Player as well.
Thanks,
Martin6 years ago in reply to: thumbnail not showing on playlist free
Hello Aerotaxi,
the JW Player conversion in FV Player would check your WordPress posts and pages for JW Player shortcodes and convert these.
In your player data export it’s obvious that none of your videos have the Splash images set – hence no images. You need to go through your videos and add these images in. The FV Player screenshot feature will be a big help: https://foliovision.com/2019/07/new-video-thumbnail-generator
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
we have made some improvements and hopefully things will start working now:
1) FV Player – live stream countdown fix for Vimeo live, please reinstall from https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip
2) FV Player Pro – fixed to support the https://vimeo.com/event/108386 kind of URLs, please get the new version from https://foliovision.com/my-licenses
3) FV Player Vimeo Live Streaming – fixed to support the https://vimeo.com/event/108386 kind of URLs, please get the new version from https://foliovision.com/my-licenses We also added some code to help us understand why it’s not loading for you.
If the above won’t help, please share an admin login with us if possible.
Once it all works these fixes will be part of the official plugin release.
Thanks,
Martin6 years ago in reply to: thumbnail not showing on playlist free
Hello Aerotaxi,
you sent use the System Info which might end up being useful, but we need to see the player export. It’s in wp-admin -> FV Player and shows up when you however over each player instance. It’s not the System Info in wp-admin -> Settings -> FV Player.
The basic introduction to it can be found here, I see we need to document how to use the export: https://foliovision.com/player/advanced/player-database
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
thank you for all the videos, however the issue is simpler – we only need to figure out why the FV Player Vimeo Live Streaming script didn’t load for you. With these fixed plugin versions it should all be working.
Regarding the URLs you are testing – the format like https://vimeo.com/event/108386 or https://player.vimeo.com/video/430080698 is not supported, we only support https://vimeo.com/430080698 This could be improved, but you posted that now you see where we got such URL from, so I haven’t touched that.
Going back to the live stream playback issues – please enable Settings -> FV Player Pro -> Integrations/Compatibility -> Load FV Flowplayer JS everywhere. That will force that script to load everywhere and we will see if that solved your issue.
Also, I found that when I asked you to reinstall FV Player from https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip I didn’t properly generate the minified JavaScript file in it, so please reinstall from that link once again.
You are also using a Cloudflare feature called Rocker loader, although I don’t expect it’s affecting anything here.
Thanks,
Martin
Hello Steve,
you can make the speaker icon visible with CSS: https://foliovision.com/player/advanced/css-tips-and-fixes#volume-bar-speaker-icon
Please read the introduction to that article to get some quick hints on where to place your CSS rules and how to ensure they work.
YouTube player shows the speaker icon only and you have to hover it to get the volume bar. On the other hand Vimeo doesn’t have it at all, it only has the volume bar. So perhaps we should just show it at all times on the YouTuby skin.
Thanks,
Martin6 years ago in reply to: thumbnail not showing on playlist free
Hello Aerotaxi,
please look up the player in wp-admin -> FV Player and use the export function to send us the player data. Are you sure the splash screen URLs are all set there?
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
I found some bugs related to recent code changes and fixed these.
Could you please reinstall FV Player from this link? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip
Please also reinstall FV Player Pro and FV Player Vimeo Live Streaming plugins – you can get the fixed version ZIP files from https://foliovision.com/my-licenses
To do that you will have to first deactivate and delete the current FV Player plugins 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,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
I had a look at https://celebrationbeachchurch.com/testing-3 and the first video should play, however – it appears FV Player Vimeo Live plugin is not activated. Could you please double check?
We can improve the parsing to work with URLs like https://vimeo.com/event/66279
Thanks,
Martin
Hello John,
we could add it, however we found that the DigitalOcean Spaces CDN doesn’t support signed URLs. So we are only using DigitalOcean Spaces as a storage for the video files with BunnyCDN pulling files from it with signed URLs. So we ended up not using DigitalOcean Spaces CDN.
Thanks,
Martin6 years ago in reply to: Vimeo Livestream Addon License won’t Validate
Hello Jonathan,
I see that you are using a Vimeo link which looks like https://vimeo.com/event/{number}/embed while that’s not the actual Vimeo video ID. It should be just https://vimeo.com/428996095 Are you able to get to that URL on Vimeo when posting the live stream?
Regarding the bad license check – please install this plugin https://wordpress.org/plugins/log-http-requests/ and then try to remove the license key, save the settings and then put it back in. Finally go o to wp-admin -> Settings -> Log HTTP Requests and look for the license check check HTTP request. It might end up with some error.
The problem is that the only FV Player Vimeo Live Streaming license check for your site which I ssee is from 4 days ago. We are going to rework the license checks.
I also refunded your second purchase of “FV Player Vimeo Live Streaming”.
Thanks,
Martin
Hello John,
I’m happy to hear that. The fix will be part of the next plugin release.
I’m sorry I didn’t realize we could fix it like this before, but it’s very unusual.
Thanks,
Martin
Hello John,
I just realized how to fix this properly.
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.
The license key has the format required by the Flowplayer library. But the above fix will help.
Thanks,
Martin
Hello John,
that’s crazy, I’m not sure what’s wrong with your theme, but I would say you should complain to the theme developers. There is also a chance that it’s your web host, but since you say it works with default theme I don’t think that’s the case.
Perhaps splitting the string in two might help:
<script> if( window.fv_flowplayer_conf ) { fv_flowplayer_conf.key = '$'+'62'+'WHATEVER IS THE REST OF THE KEY HERE'; } </script>Thanks,
Martin
Hello John,
I see, so the issue is really that just the first part of the license key is being removed.
Please try to put this code into your theme footer.php file, right after wp_footer():
<script> if( window.fv_flowplayer_conf ) { fv_flowplayer_conf.key = 'ENTER THE REAL KEY HERE, including $'; } </script>If you have some basic experience with PHP or HTML file editing, you should be able to do this. Please let us know how it goes.
Thanks,
Martin
Hello John,
I haven’t found any code which would deal with FV Player nor Flowplayer. Is that the actual theme folder taken from your website? If so, then it must be because of some database entry, or some plugin.
Perhaps you can download your whole plugins folder and then look for that bad license key 2339419867284 in all the files using some file search tool.
Thanks,
Martin
Hello Leho,
for next FV Player release we have switched to using the add_rewrite_endpoint() WordPress function to add out rewrite rules for the embed codes. Then we still do some filtering to make it compatible with your URL structure. So we no longer check if the rewrite rules are there and you shouldn’t be running into any issues anymore.
You can get the new FV Player version before it’s released here: https://github.com/foliovision/fv-wordpress-flowplayer/archive/384-rewrite-rules.zip
Thanks,
Martin6 years ago in reply to: probleme with video intelligence Video Ads
Hello Live tvs,
how many video plays do you get every day? I would say you need at least couple of 1000 to be really able to use the vi Ads.
Thanks,
Martin
Hello John,
please send your theme to us as a ZIP file and we will have a look. Is it some freely available theme, or did you make any changes to it?
Thanks,
Martin
Hello Asad,
our refund policy is that publishers must work with us in good faith to resolve any technical issues in order to be eligible for refund.
So it’s good that you are bringing up these issues. We did some testing and described to you how it works currently:
we enabled the low power mode. In that case the video would not autoplay, but show the play button which you can hit and then it plays.
Regarding the iOS music player – I’m not sure what you mean. Do you mean the player which appears on the iPhone lock screen if you lock it during the video playback?
Thanks,
Martin
Hello John,
the video on https://americandollhouse.com/testing-video/ no longer shows, so I can’t check if this had any effect. However the license key is part of the page HTML code, so the CDN (offloading) would have no effect.
Do you run into the same issue when you use some default WordPRess theme such as Twenty Nineteen or Twenty Twenty? You can use the theme preview feature to test it out quickly, just click through the website menus to some page with a video.
Thanks,
Martin
Hello John,
I do not see anything suspicious there.
Have you used FV Player for some time before purchasing the license?
Have you used any other plugin which would use the Flowplayer library?
Does your theme have any field for Flowplayer license key?
Are you able to access phpMyAdmin in your web host control panel and search for that bad license key “2339419867284” in there? Once you are in phpMyAdmin you can use this guide: https://www.hostgator.com/help/article/searching-through-a-mysql-database-in-phpmyadmin In step 3 only enter that license key and in step 4 select “All words” and in step 5 select all tables.
I’m sorry that it’s so complex. I just don’t see how the license key could be changed to something else.
The last thing to do is to start disabling plugins one by one and see if that fixes the issues. But I may have some more suggestions before we go to that.
Thanks,
Martin6 years ago in reply to: playlist tab
Hello Edgar,
the lightbox should never be so small, please send over a link to your page so that we can check if it’s a general FV Player issue which we can fix, or if it’s specific to your website and perhaps we can make your code more resilient.
I still need to discuss the playlist options for the preview in editor and for lightbox. Which style would you like to see in lightbox? You could use CSS to hide these playlist items in lightbox. But then there would be no way of switching the items. Or actually there is the playlist menu in controlbar and the prev/next buttons as well.
So perhaps we need a playlist style which just makes it hidden as you can use these control bar buttons.
Thanks,
Martin
Hello John,
so they there must be some plugin manipulating the data. As I see it plays with your custom logo when you are in preview in editor.
Please send over Settings -> FV Player Pro -> Tools -> System Info information.
Thanks,
Martin
Hello John,
please check the license key on https://foliovision.com/my-licenses and make sure you enter that in Settings -> FV Player Pro at the top of the screen, you can see that in Step 6. here: https://foliovision.com/player/basic-setup/installation/pro-extension
I see you are using something different.
Thanks,
Martin6 years ago in reply to: pauses several times or interrup
Hello Edgar,
our video checker says that you should be using a lower bitrate for your video. Higher bitrate means bad playback experience on slow connections.
Your video is using resolution of 1280×702 pixels as 5 Mbps which is not too much actually. With CDN it should definitely play fine. Are you using the BunnyCDN “High Volume Tier” and “Optimize for video delivery” settings?
However you should still do something about your video on mobile. You can read out instruction for mobile video here: https://foliovision.com/player/basic-setup/encoding#mobile-video
If you need to post a lot of videos and want them to be optimized for both Full HD playback and mobile compatibility, it’s really not so easy to encode them all properly. We have a new plugin coming out soon – FV Player Coconut. It integrated with the Coconut video encoding service and BunnyCDN. Plus it also offers video encryption which is optional.
Here’s how the workflow looks like: https://foliovision.com/player/securing-your-video/encrypt-videos-directly-wordpress
Thanks,
Martin
Hello Asad,
we also tested on iOS 13.3.1 where we enabled the low power mode. In that case the video would not autoplay, but show the play button which you can hit and then it plays.
But it seems there are ways around it – to enabled muted autoplay even on low power mode: https://shaktisinghcheema.com/how-to-autoplay-video-on-mobile-devices-on-low-power-mode/
Thanks,
Martin
Hello John,
we checked your domain in your license details, however we couldn’t find and FV Player on it.
Please send us a link to some page with FV Player so that we can check the logo issue. Since your website is for members only it would be best if you could create some test page where you place some random video.
Thanks,
Martin
Hello Denis,
we are finishing the user guide for that FV Player Coconut plugin now: https://foliovision.com/player/securing-your-video/encrypt-videos-directly-wordpress
Thanks,
Martin
Hello Nikolaos,
so how does that video play for you on YouTube.com? Does it play it from beginning or does it play from some other time with a visual marker on the timeline?
Thanks,
Martin
Hello Nikolaos,
you said with “another account” – do you mean you hit the head icon in Google Chrome toolbar, log in as somebody else and the issue goes away?
In that case I would say that your Google account might have something stored on YouTube that is affecting this. You said you didn’t had issues with the YouTube start time at https://foliovision.com/player/advanced/custom-start-end-time so it’s possible.
Thanks,
Martin
Hello Timothy,
do you see that warning on any specific page? Or does it only appear in the log? If so, how often does it appear?
I’m trying to figure out if this is affecting the normal pageview or if it only occurs in background due to some background processing.
Thanks,
Martin6 years ago in reply to: Purchased domain change
Hello Kenneth,
sorry about that, this bug was introduced when we added support for staging domains. Now it’s fixed and you can change your domain.
Thanks,
Martin6 years ago in reply to: Error messages
Hello Nikolaos,
it appears you are using the Google PageSpeed module. So you shouldn’t be getting that “It appears there are stripping the query string versions ” warning. We prepared a fix for this issue for next FV Player release.
Going back to the PHP warning you are getting – it must be related to some plugin or theme you are using. Could you please ask your server tech support to see if they can give you a full trace (which file it was called from on what line) of that warning?
Or can try to install this plugin: https://wordpress.org/plugins/error-log-monitor/ Then try to preview a video again and see what was added to the logs. Perhaps the trace will be there.
Thanks,
Martin6 years ago in reply to: settings won’t save
Hello George,
I don’t remember getting a bug report like this before.
Could you please to check the PHP error logs?
If you are not sure where to get to these logs you can ask your serfver support, or can try to install this plugin: https://wordpress.org/plugins/error-log-monitor/ Then try to save the settigns again see what was added to the logs. There might be some PHP error which shows up every time you save the settings.
Thanks,
Martin6 years ago in reply to: pauses several times or interrup
Hello Edgar,
we don’t have any issues with BunnyCDN in United States on websites serving videos up to 1440p. Are you sure the video is propery encoded for web use?
Please use our video checker and submit the report to us. Here’s how: https://foliovision.com/player/basic-setup/how-to-use-video-checker
If you need to make posting videos easier, then we recommend using Vimeo our of new FV Player Coconut plugin which works with Coconut video encoding service and BunnyCDN. We will also provide setting up that workflow as a service.
Thanks,
Martin6 years ago in reply to: playlist tab
Hello Edgar,
the thing is that when you use the FV Player editor it always preview with the Slider playlist style, no matter what you have set. It’s like that as the Vertical and Text playlist styles wouldn’t work in the narrow FV Player editor preview. I will check the issue with Alec to improve the interface to make sure it’s not confusing like this.
The lightbox view has been coded to also use that Slider playlist style only. We will improve that.
Last thing is that tiny player size which you are getting. What exactly can we see in your 6_prev_next screenshot? I see that player is loaded in lightbox – is that the lightbox provided by FV Player?
Thanks,
Martin
Hello Leho,
thank you for bringing this to our attention.
We will improve this, in the meantime you can just comment out that flush_rewrite_rules() code in FV Player if you are not using the iframe embed functionality.
Thanks,
Martin6 years ago in reply to: I need work VAST add-on in my staging server
Hello Carlos,
sorry about that, it’s fixed now. Please let us know if you run into any other issue.
Thanks
Martin6 years ago in reply to: Check if live stream is on
Hello Alessandro,
since it works for you we can make it part of the next FV Player release.
The latest dev version can be found here: https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip That will get rid of the 7.4.21.727 update warning for you as well.
Thanks,
Martin6 years ago in reply to: Probleam VAST video
Hello Eleonora,
you can check our VAST autoplay demo here: https://foliovision.com/player/demos/vast-ad-with-autoplay
To simulate the experience of a first-time visitor on your website you should be using the guest mode of Google Chrome. Google Chrome remembers if you interacted with videos on a website before and will allow autoplay in such case (even in incognito window). So that guest mode is really useful for testing of autoplay issues.
The skip button is added by the ad unit itself. It must include the proper tag to allow ad skipping. Technically it would be possible to show the skip button regardless of that, but then you might get into a conflict with your ad network.
Thanks,
Martin6 years ago in reply to: I need work VAST add-on in my staging server
Hello Carlos,
now you can use the Staging Domains button on https://foliovision.com/my-licenses to enter you staging domain. We were able to add it as it has to be a subdomain, like test-site.company.com. So it’s not an extra free license.
Thanks
Martin6 years ago in reply to: I need work VAST add-on in my staging server
Hello Nikolaos,
are you using any Chrome browser extensions? Some of them enhance the video and I think it might be causing the bad start time issue here.
Thanks,
Martin
Hello Nikolaos,
please let us know if you run into that issue even if you use incognito mode of your browser and what browser on what operating system you are using.
Please also check the video at the end of https://foliovision.com/player/advanced/custom-start-end-time and let us know if it give you the same trouble.
Thanks,
Martin6 years ago in reply to: Probleam VAST video
Hello Eleonora,
I tested https://syndication.exdynsrv.com/splash.php?idzone=2916384 on our VAST testing tool https://foliovision.com/player/vast/tester and it played an ad every single time.
I didn’t get any ad when using https://syndication.realsrv.com/splash.php?idzone=3865518 but it might be because I’m testing on our domain. Juraj was mentioning an issue with “empty VAST response” which is exactly that.
There is no need to configure the default ad as seen in https://foliovision.com/player/vast/how-to-use-vast#default-ad-tags
You can set up VAST ad to play on on certain videos in the VAST tab of FV Player editor. The screenshot here is old, but it gives you the idea: https://foliovision.com/player/vast/how-to-use-vast#ads-for-individual-videos
If supports wonders why the VAST URL is not in a script tag but in a DIV element, then that’s normal if you haven’t set the ad in FV Player VAST settings.
Please enable wp-admin Settings -> FV Player VAST -> Debug and send us a link to the page where we can see the issue.
You might also be getting no ads if you are not getting enough video plays or if there are not enough ads in the ad inventory, but you have to ask Exoclick support about that.
Thanks,
Martin
Hello Nikolaos,
so you want the video to start at 11:20, but when you go and play the video it start at some other time, like for example 13:20 and it shows that as 02:00 ?
Please let us know if you run into that issue even if you use incognito mode of your browser.
I tested on https://bit.ly/2z3Sv6D with Chrome and Firefox and didn’t notice any issue.
Thanks,
Martin
Hello Delroy,
please double-check that you also updated FV Player Pro. If you don’t see the update available, you can deactivate and delete the FV Player Pro plugin you are using, then update FV Player and install new FV Player Pro from ZIP file which you get on https://foliovision.com/my-licenses
Thanks,
Martin6 years ago in reply to: pay no link appears
Hello Eleonora,
sorry about the inconvenience. Now you can find your licenses at https://foliovision.com/my-licenses
There is some bug which caused your license to not be linked to your account. It affected some other purchases as well, so we are having a look now.
Thanks,
Martin
Hello Delroy,
does it happen with YouTube videos? There was some critical bugfix which we had to make to ensure YouTube videos keep playing with FV Player Pro.
If your license has expired you are simply not getting that important fix. (Un)fortunately the web technologies change. So we have to charge something for the license renewals, but we do provide discounts if you renew the license on time.
Thanks,
Martin
Hello Peter,
the video on https://hmk.flicap.com/player-4/ plays fine for me.
Perhaps that countdown plugin is not enabled. So pleaes first open up console (instructions for different browsers can be found here: https://wordpress.org/support/article/using-your-browser-to-diagnose-javascript-errors/#step-3-diagnosis ), then enable the plugin and open your page and see what appears in that console. There should be some errors in red color.
We were using the WP Deadlines plugin for a countdown and didn’t run into any issues with it. But I guess the one which you use is synchronized with the events.
Thanks,
Martin6 years ago in reply to: Video stalls on iOS | High priority issue!
Hello Kristin,
I will have to test how the recovery routine works when the quality switching is in place. I didn’t test that previously.
Thanks,
Martin
Hello dplum,
AWS lets you protect the videos agains hotlinking and some basic video downloading tools. But these days you can get browser extensions which let you download such videos.
We set the minimal expiration time to 900 seconds (15 minutes) to provide a safe minimal time to buffer the video. Recently we did some improvements on that part, so even a much shorter values could be used. With exception of iOS which just doesn’t trigger proper errors for us to catch when the link times out.
But to really protect the videos from downloading you need a proper DRM. FV Player Pro does give you encrypted HLS which is about to get a lot easier with our new plugin which will integrate the Coconut video encoding service.
Then we would like to explore the DRM provided by EzDRM service.
Thanks,
Martin6 years ago in reply to: Check if live stream is on
Hello Alessandro,
1) I think we can just set some good time value for the retries. Does 30 seconds seem like too much?
1,5) The overlay text will likely be hardcoded too, but it should be translated (so you would be able to change it using the language hooks).
2) Checking the stream ending is more tricky. Are you able to check if the m3u8 file stops changing once the stream end or how does it work?
Thanks,
Martin6 years ago in reply to: Add Africa (Cape Town) Region for AWS
Hello Roxanne,
the new AWS regions in Milan and Cape Town were added.
If you can’t wait for the new FV Player version, you can reinstall it from this ZIP file: https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip You will have to first deactivate and delete the FV Player plugin you are currently using. No data nor settings will be lost. You can replace it using FTP too.
Thanks,
Martin
Hello Nikolaos,
if you have a o 36:45 long video and you set it to start at 11:20, then it will start at that correct time. But it will show it as 00:00 and the total video duration will not only 25:25.
So it is not necessary for the visitor to move the bar manually.
But there is no way of moving before that starting point. If you say that it was letting you go before the starting point before, then I think that was before you started using FV Player Pro. As we always had it working like what I described.
Please let us know as I’m really not sure if there is any bug or if you just expect this feature to work differently.
Thanks,
Martin6 years ago in reply to: VAST Ads Not Working At All
Hello Joe,
I’m glad to hear that it works for you now. Please let us know if there is anything else.
Thanks,
Martin6 years ago in reply to: VAST Ads Not Working At All
Hello Joe,
I see you have a FV Player VAST license for two websites. The plugin is a bit different for each domain, so you have to install the right domain version of each website.
Please make sure you go to https://foliovision.com/my-licenses, scroll down to FV Player VAST and download the FV Player VAST button for the correct domain using the Download button next to it.
My guess is that perhaps you are using the version for the other domain.
As a next step, please enable Settings -> FV Player VAST -> Debug and then send us a link for a video where the VAST ad should play but it doesn’t.
Thanks,
Martin6 years ago in reply to: VAST Ads Not Working At All
Hello Joe,
please check Settings -> FV Player-> Tools -> System Info. There should be some lines like this:
FV Player VAST version: 7.4.15.727 FV Player VAST license: Valid (next check 2020-05-18 21:50:38 GMT)
Please let us know what you find. I think there must be some error in the license check. If you send that whole System Info to us it will be helpful too.
Thanks,
Martin6 years ago in reply to: remove now playing
Hello Ratve,
since you didn’t enter any of the playlist item titles, it falls back to using “Now Playing”. If there would be item titles it would highlight the item title, but there are no title it wouldn’t have any way of marking the current item.
That huge spacing is caused by the fact that you have about 10 items in that playlist and none of them have titles nor splash images.
I see that this is not perfect. Some time ago we decided to remove any frames from the playlist item titles to provide a cleaner minimal look for people who do put in splash screen and item titles.
So we will wonder what improvement we could make to help in cases like yours. Personally I would even show the file name without extension if there is no title and no splash screen.
Thanks,
Martin
Hello Nikolaos,
so your video start is set to 11:20. The video is 36:45. FV Player shows the proper duration of the remaining part – 25:25. And even the part of the video which it shows is correct.
I also tried to seek to 0:55 on your website and the video shows the 3 people in the video converence and view of the school classroom which then rotates to some cleaning wipes and so on.
So perhas I’m missing the point – do you want to just play the video from the 11:20 time, but allow your visitors to seek before that time? That’s not how our start/end feature does. We built it so that it really locks you down to the exact part of the video and nothing else.
Thanks,
Martin6 years ago in reply to: Bug report – what’s happening here?
Hello Derek,
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? 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.
Thanks
Martin6 years ago in reply to: Issue playing Amazon S3 HLS
Hello Jacques,
it seems to me that you have progressed on resolving the issue. I tried to post your video to my test site and Video Checker reports that it’s all good. Notice that it reports a lot of details about the video, while in your case it was somehow not able to access it at all:
Mime Type: application/x-mpegURL Compatibility: CORS headers and crossdomain.xml found Duration: 00:21:11.02 Video: Stream #0:1: Video: h264 (Constrained Baseline), yuv420p(tv, bt709), 480x270 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Stream #0:3: Video: h264 (Main), yuv420p(tv, bt709), 640x360 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Stream #0:5: Video: h264 (Main), yuv420p(tv, bt709), 1024x576 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc Audio: Stream #0:0: Audio: aac (LC), 44100 Hz, stereo, fltp Stream #0:2: Audio: aac (LC), 44100 Hz, stereo, fltp Stream #0:4: Audio: aac (LC), 44100 Hz, stereo, fltp
Even CORS and crossdomain.xml are fine. And it plays without issues.
So it seems to me all is working now. If you have a minute please let us know what was the issue you had to fix.
Thanks,
Martin6 years ago in reply to: HLS Stream
Hello Ivan,
you said you get the same issue when you use dev tool in Chrome – that’s because you tried to emulate iPhone and iPhone has the HTML5 playback capability for HLS which Chrome doesn’t emulate. So our player thinks it can play HLS without HLS.js, but it can’t. That’s why you get the error.
Thanks,
Martin