Forum Replies Created
-
-
4 years ago in reply to: Emails with no video links in woocommerce
Hello Ron,
please also send a link to your page where we can see the issue with the trailer not appearing. Or actually if you mean the WooCommerce Product page, then it’s currently not coded to show the player there. But I see it could.
Thanks,
Martin4 years ago in reply to: Emails with no video links in woocommerceHello Ron,
could you please use the Export function to send over the player data to us? First look up the player on wp-admin -> FV Player screen and click the “Export” for it. It should bring up a lightbox popup with data like this:
{"ab":"","ad":"","ad_height":"",...
I wonder if it will have the post_id value in it.
Could you please send a screenshot of the post editing screen where the player in inserted?
I think the issue occurs as the player is not associated to any post – we do check that when saving the player or the post. But perhaps you use some page builder where it fails to connect the player to post properly.
Thanks,
MartinHello Khem,
could you please use the Export function to send over the player data to us? First look up the player on wp-admin -> FV Player screen and click the “Export” for it. It should bring up a lightbox popup with data like this:
{"ab":"","ad":"","ad_height":"",...
I wonder if it will have the post_id value in it.
Could you please send a screenshot of the post editing screen where the player in inserted?
I think the issue occurs as the player is not associated to any post – we do check that when saving the player or the post. But perhaps you use some page builder where it fails to connect the player to post properly.
Thanks,
MartinHello Timothy,
I rephrased that documentation a bit and here’s the part which is relevant to your situation:
If you use WP Multisite with domain mapping the plugin should not be Network Activated and each sub-site should have the right license key for its domain entered in Settings -> FV Player Pro. In order to get the updates you will also have to enter the proper license key for the main site.
Thanks,
Martin4 years ago in reply to: Wplms theme CompatibilityHello Ahmed,
sorry about the late reply.
Could you please check if the issue goes away if you post some publicly available Vimeo video and if you disable “FV Player Vimeo Security” for minute? Will it work on the course pages that way?
Alternatively please setup a standard user account for us to let us sign up for the course to let us really see the issue.
Thanks,
Martin4 years ago in reply to: Preview not showingHello Bruno,
are you able to test the upcoming FV Player version to help us fix this issue for you? Please reinstall FV Player from this link: https://github.com/foliovision/fv-wordpress-flowplayer/archive/615-editor-preview-debug.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.
Once you have this new version up please open your browser developer console (here’s how https://foliovision.com/player/troubleshooting/javascript-browser-console), then try to load the page where you are editing the player and try to preview the player and you should see messages like this on console:
FV Player Editor: Preview requested... FV Player Editor: Preview Ajax finished (POST). FV Player Editor: Preview wrapper found. FV Player Editor: Preview shown.
Thanks,
MartinHello Khem,
could you please post a link to some video which we can buy? Please make the price $1 as we might need to actually buy it to see the issue.
Did you tweak anything in the wp-admin -> Downloads -> Add Downloads -> the PPV item edit page?
Thanks,
Martin4 years ago in reply to: Preview not showingHello Bruno,
it’s strange, none of these errors are related to FV Player. It’s all for JetPack.
Did you change your homepage recently? The way FV Player Editor preview works is it calls the website homepage with a special argument in the link and that gives you the preview if you are authorized.
Please let me know, perhaps we could add some debug information about the preview to signal preview errors on the browser console.
Thanks,
Martin4 years ago in reply to: Preview not showingHello Bruno,
please try to open your browser developer console (here’s how https://foliovision.com/player/troubleshooting/javascript-browser-console), then try to load the page where you are editing the player and see, if any error appears on the console.
Then try to bring up our editor again, once the preview starts loading and the circle starts spinning wait at least 10 seconds and see if anything appears in that console.
Thanks,
Martin4 years ago in reply to: Vimeo – dash: video not properly encodedHello Joanne,
are you getting the same issue on https://foliovision.com/player/demos/custom-start-time -> Vimeo ?
Please let us know what operating system and web browser you are using. Or does the issue occur on mobile?
What start time are you using and how long is the video? Could you please link to the page where we can see the issue?
Thanks,
Martin4 years ago in reply to: Hide FV Player logoHello Giulio,
the issue occurs as you have entered memo.uniud.it as a staging domain. However the license key for uniud.it currently also covers the sud-domains. So you need to use the license key for uniud.it.
Thanks,
MartinHello Crawford,
we did the basic check of the h264 codec already, I posted about it in my last message.
I also run into the exact same issue with JW Player.
So it’s hard for us to guess what could be the issue with Chromecast. We can only try some more players until we found which one is able to cast that m3u8 file.
Thanks,
Martin4 years ago in reply to: Conflict with the BuddyBoss Theme MenusHello John,
we had a report of that same issue here and I posted what is wrong about the BuddyBoss theme: https://foliovision.com/support/fv-wordpress-flowplayer/bug-reports/site-menus-not-working-after-wordpress-upgrade-to-5-6
Please send over the full notice of that FV Player Pro issue or let us know how you are getting it. We got a bunch of notices like that when using https://wordpress.org/plugins/enable-jquery-migrate-helper/ and we prepared a fix for these for next version, but none of these were for the ready event.
Thanks,
MartinHello talbotp,
it appears this is a bug in the BuddyBoss theme. It has this code which listens to the “ready” event and when it occurs it initializes the menu click action in BuddyBossTheme.init().
$( document ).on( 'ready', function () { BuddyBossTheme.init(); ... } );
However it just listens to any “ready” event in the document, including the child elements. So when the Flowplayer library which we use triggers “ready” for the video as it starts playing, BuddyBoss will init that menu handler again. And then when you click the menu icon it counts as two clicks – one to open it and the other to close it.
There was no recent change in FV Player that would cause this, but it’s possible this issue is more visible with new jQuery in WordPress 5.6
So I would recommend you do not update to WordPress 5.6 until BuddyBoss developers fix this as what they do is not listed among:
jQuery offers several ways to attach a function that will run when the DOM is ready. All of the following syntaxes are equivalent
Which you can check here: https://api.jquery.com/ready/
That document also says:
As of jQuery 3.0, only the first syntax is recommended; the other syntaxes still work but are deprecated.
They recommend using
$( handler )
…which is the second example here: https://learn.jquery.com/using-jquery-core/document-ready/
Thanks,
MartinHello talbotp,
recent versions of WordPress do contain some changes in jQuery library which is used by basically every theme and plugin. Pleaes try to install https://wordpress.org/plugins/enable-jquery-migrate-helper/ to see if that fixes the issue.
What theme are you using? Is it free to download, so that I can give it a try?
Please also send output of Settings -> FV Player -> Tools -> System Info.
Thanks,
Martin4 years ago in reply to: Hide FV Player logoHello Giulio,
please send us a link to your website where we can see the issue.
Thanks,
Martin4 years ago in reply to: Alternative sources: randomize serverHello Denny,
1) these improvement makes sense.
We were also considering to add a feature where you could pick a different CDN based on the user country. We needed that once when BunnyCDN was slow in Germany and Italy and we wanted to serve these users via KeyCDN.
2) Please let us know what video type you used in which web browser. Do you mean the issue occurred when starting the video or during the video playback?
Thanks,
Martin4 years ago in reply to: Can’t Get Rid of Watermark on FV Player ProHello Ákos,
the license key for FV Player changes with each new release of Flowplayer. If you are still on version 6 you will have to use the key for that version. Please try (redacted).
Thanks,
Martin4 years ago in reply to: Return the length of the video via the apiHello Kendell,
please check our documentation here if you want to do it in PHPProgrammer’s Guide -> Determining Video Length
Or check here is you need JavaScript: Programmer’s Guide -> Video and player properties
Thanks,
Martin4 years ago in reply to: Download video files from PlayerHello Nikolaos,
if it’s a Vimeo video, then the highest quality MP4 file is downloaded.
If you use a HLS stream, then unfortunately it won’t work.
If you use MP4 files with FV Player Pro Quality Switching it just uses what’s provided in that player ID. I see that could be improved to pick the HD, FullHD, 720p or 1080p stream instead. Is that what you mean?
Thanks,
Martin4 years ago in reply to: Download video files from PlayerHello Nikolaos,
as you can see it’s full of span tags. Some of them interfere with [fvplayer_download] shortcode.
I recommend you copy all of that text into some tool which will strip the HTML for you, like this one: https://www.striphtml.com/ Then put it back and save.
Did you copy that [fvplayer_download] shortcode from your documentation and is this what you got? Indeed, I can see that the code highlight which we have on it is responsible for it. So I removed it.
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
thank you for letting us know about your workaround.
I guess we have to do some more testing with tracking of live streams.
Thanks,
Martin4 years ago in reply to: Verwendung von Google Analytics mit FV PlayerHello Jörn,
are you able to test the upcoming FV Player version to see if we were able to fix this issue for you? If you please reinstall FV Player from this link: https://github.com/foliovision/fv-wordpress-flowplayer/archive/10918414-ga-load-module.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.
In this new version we use a newer Google Analytics library and we also fixed the “Video / Seconds played” even to use proper video name. Until now it didn’t use a proper video name and that could be the reason why you couldn’t find proper stats for the videos too.
Thanks,
Martin4 years ago in reply to: Download video files from PlayerHello Nikolaos,
thank you for these screenshots.
Please try to switch the editor from “Visual” to “Text” in the top right corner and see what you get – another screenshot of that “Text” view would be helpful.
If the [fvplayer_download] shortcode is not processed and shows as bare text on the website, then it must contain some hidden symbol which doesn’t belong there.
Thanks,
Martin4 years ago in reply to: Download video files from PlayerHello Nikolaos,
we have fixed that disappearing settings box issue.
If you want to get it back right now (it’s not required to get these download links working) you can deactivate and delete theFV Player Pro plugin and then let wp-admin -> Settings -> FV Player reinstall the Pro pack for you. Or you can grab a fresh ZIP file of FV Player Pro from https://foliovision.com/my-licenses and reinstall from that.
Please note that these buttons only work for logged in users.
Thanks,
MartinHello Dmitry,
seems like you already moved the files over, is that so?
To fix the database entries start by checking if all your players are in
wp-admin -> FV Player or if you also use [fvplayer src="..."] kind of shortcodes.In the first case you can do search and replace in MySQL on the wp_fv_player_videos table (on the src, src1, and src2 columns, add splash if you also store splash screens on S3). In the other case you need to search and replace in the post_content column of wp_posts table.
Thanks,
Martin4 years ago in reply to: VAST tag not working on testerHello Andrew,
I got that same ad playing on Chrome and Firefox on Windows 7 now, see attached.
I see that previously I did use the URL which you atteched in this topic – with URL encoded { and } symbols. That way ut doesn’t work. But when I enter these the way you didn on your screenshot it works.
Thanks,
Martin4 years ago in reply to: Add Video Popup not shownHello Oliver,
it’s strange that there is no error. Do you use a lot of plugins? One of them might be causing this behavior.
Please try to deactive the plugins one by one until you see that it worsk and let us know,
Or alternative you can try to save the source HTML code of that wp-admin -> FV Player page as HTML and upload it here to our forums. We will make sure do not publish it for security reasons and remove it quickly (there is nothing too sensitive in that HTML code, but it’s better to be careful).
Thanks,
Martin4 years ago in reply to: Post Interface Embeds into Custom FieldsHello Marcie,
you sent the right code as it does register the “wpmedia” box on the post editing screen which is where the issue occurs – accodring to you screenshots.
I tried to use that part of your code and I’m running into that same issue. And it turns out the issue is your wpmedia_html() function – it misses the closing table tag.
So that’s an easy fix for you to do and they it should all be running just fine for you. I don’t see how we could prevent this issue in FV Player – if there is broken markup on the post editing page, any plugin might suffer some damage to its editing interface.
Thanks,
Martin4 years ago in reply to: Problem Open graph Facebook etc.Hello Rosetta,
if you do not use the standard WordPress Featured Image feature, then you are not making it for any plugin to suit your needs.
As explained FV Simpler SEO does use exact that and if it’s not present it checks the post content – meainin the post_content field of the WordPress post object: https://github.com/foliovision/fv-all-in-one-seo-pack/blob/master/fv_simpler_seo.class.php#L3462-L3498
Does your custom post type use that? You can check if the standard WordPress post editor is enabled for it and where does it save in database.
Thanks,
Martin4 years ago in reply to: Add Video Popup not shownHello Oliver,
so the issue is with the first step of our guide https://foliovision.com/player/basic-setup/start-up-guide -> Inserting Videos, is that so?
Please, also try to open your browser developer console (here’s how https://foliovision.com/player/troubleshooting/javascript-browser-console), then try to load the page where you are adding the video again and see, if any error appears on the console.
Then try to bring up our editor again and see if anything appears in that console.
Thanks,
Martin4 years ago in reply to: Trouble with youtube performanceHello Nikki,
please repeat the same reinstall again and it should finally work. I forgot to save the file. Sorry about that.
Thanks,
Martin4 years ago in reply to: VAST tag not working on testerHello Andrew,
the ad doesn’t play for me in our test tool https://foliovision.com/player/vast/tester and it doesn’t play for me in Google Video suite inpector https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/vastinspector – it doesn’t matter if I used Chrome or Safari.
I tried to use a VPN in USA, but that wouldn’t help either.
I tried to enter something for description_url= and provide a correlator= value, but it didn’t change anything.
Are you sure it’s not restricted to your website domain only? It just kept giving back HTTP 400.
Thanks,
Martin4 years ago in reply to: Trouble with youtube performanceHello Nikki,
we found that the issue is caused by the FitVids script in your theme. It finds the YouTube iframe used by FV Player and it thinks it needs help with settings its responsive size.
Since it’s a pretty common mistake we decided to take action and prevent FitVids from processing the YouTube iframe in our player as it has a way of skipping some of the elements.
We have prepared this fix for the next FV Player Pro release, but first I would like to ensure it indeed works on your website. Please grab a fresh version of FV Player Pro from https://foliovision.com/my-licenses and switch to Beta.
Thanks,
Martin4 years ago in reply to: Post Interface Embeds into Custom FieldsHello Marcie,
I see no mention of a FLV Player plugin in your System Info, so I guess you mean FV Player.
It’s great that you were able to figure it out. Do you see anything suspicious in that function.php file?
Does it have a lot of “include” or “require” calls? If not, please send that file over to us – you can change the extensions from .php to .txt and then attach it here. I should be able to spot the suspicious call in it and figure out how to improve our FV Player’s compatibility.
Thanks,
Martin4 years ago in reply to: Post Interface Embeds into Custom FieldsHello Marcie,
looking at your screenshot https://foliovision.com/images/2020/12/Screenshot-2020-12-01-22.44.21.png it appears something is calling one of the WP action hooks in a non-standard way.
Do you get into the same issue when you try to use some standard WordPress theme such as Twenty Twenty?
If that won’t help, then it might be one of the plugins. That warning about JavaScript is worth checking – if some plugin is loading the secondary copy of jQuery library like that it’s a good indication that some plugin is outdated and might be resposnible for these editing issues.
I recommend that you try disabling plugins one by one until you find which one it is. Or you can download all your files using FTP and then look for https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js in the file contents with some advanced search tool.
Thanks,
Martin4 years ago in reply to: Video Duration not working all the timeHello Tio,
please check what does our Video Checker say. Here’s how to use it: https://foliovision.com/player/basic-setup/how-to-use-video-checker
Thanks,
Martin4 years ago in reply to: Transcript Box overlaps in full screen modeHello Kendell,
the idea is that when you enter fullscreen you want to be able to continue using the video transcript. And it has to appear somewhere. Plus there is a button to collapse the transcript box (in FV Player Pro Beta currently).
If you would like to hide it when in fullscreen you can use this CSS:
.flowplayer.is-fullscreen .fv_fp_transcript_wrapper { display: none; }
Thanks,
Martin4 years ago in reply to: Transcript Box overlaps in full screen modeHello Kendell,
I see that when you enter fullscreen we could size that transcript box more carefully. We will set it to use the same dimension as it was before entering the fullscreen.
Thanks,
MartinHello Mike,
does the issue occur when editing the page, or when viewing it?
Is the player shortcode inserted in content which is not in page HTML, but loaded with Ajax? That’s what might be causing our JS loading routine to not run on your page. We have no way of telling if there is potentially going to be some Ajax call which will require our scripts.
Thanks,
Martin4 years ago in reply to: Video Duration not working all the timeHello Tio,
I really do not think hosting a video for free like that on Archive.org is a good idea.
These videos are slow to load, so I guess our video duration check just times out on these.
Thanks,
MartinHello Mike,
sorry about the late reply. Please enable Settings -> FV Player -> Integrations/Compatibility -> “Load FV Flowplayer JS everywhere”, it might fix the issue.
With FV Player we are very careful to only load the plugin resources when they are needed to not slow down your page load times. In case of some page builder our plugin doesn’t know it might need to load these files, which can then result in that bad appearance.
Ideally we would be able to trigger the load for any page builder, but since each page builder is different we have to target them one by one.
Does the issue occur when editing the page, or when viewing it?
Please forward out message to Thrive Themes, perhaps they will have a suggestion.
Thanks,
Martin4 years ago in reply to: Play button loading slowly?Hello Johnny,
we haven’t run into any issues during our test. If you have some time, please try to enable JS Minify again without excluding fv_player_pro.min.js and see if the issue still occurs. Perhaps one of the recent updates did fix that issue.
Thanks,
MartinHello Bruno,
perhaps the CSS fails to create when you update the plugin. Please try to re-save Settings -> FV Player Pro and see if that fixes the issue.
Do you see any errors or warnings related to FV Player occurring at the time when you updated FV Player? It’s not easy to trace. If you run into this issue on update again you can enable Settings -> FV Player Pro -> Integrations/Compatibility -> “Disable saving skin CSS to a static file”. That will get rid of this issue once and for all, but there will be more CSS in your page header which we try to avoid.
Thanks,
Martin4 years ago in reply to: List of previous FV Pro versionsHello Edward,
the rollback is available in Settings -> FV Player Pro -> Tools -> Rollback. Currently the options are:
Are you having issues with version 7.4.37.727?
You can go back to the previous minor release here:
[ Reinstall version 7.3.19.727 ]
You can go back to the last version without FV Player Database here:
[ Reinstall version 7.2.8.727 ]
You can reinstall the last FV Player 6 here:
[ Reinstall version 6.6.6 ]
Thanks,
Martin4 years ago in reply to: DRM colorHello Edward,
in general if a FV Player Pro requires a newer version of FV Player you would see a wp-admin notice asking you to update. There were not changes like that recently.
Thanks,
Martin4 years ago in reply to: DRM colorHello Edward,
there was no change that would affect the AWS S3 hosted videos. Do you see that video checker warning even now when you reload that page? Do you use any other plugin for S3?
If you do not see the 7.4.38.727.beta version on the wp-admin -> Plugins screen even after switching to beta then please check if you are not using any plugin to extend the wp-admin interface. Or perhaps you were using Windows. I fixed that for the next release.
Thanks,
Martin4 years ago in reply to: Can’t activate license keyHello Nyein,
this issue is not realted to BunnyCDN.
Maria did ask you to send over Settings -> FV Player Pro -> Tools -> System Info. If you would send that it would be more clear what’s really the issue.
Please ensure you use the proper license key from https://foliovision.com/my-licenses
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
please check our API guide where you can find a JavaScript code sample for obtaining the currently playing player: https://foliovision.com/player/advanced/api-programming#js-properties
Perhaps you will have to adjust ‘.flowplayer.is-ready’ to ‘.flowplayer.is-playing’.
Thanks,
MartinHello elbadred,
when you restrict access to wp-admin, you must whitelist wp-admin/admin-ajax.php.
I’m not sure what technique you use, but if it’s .htaccess, this article might help you with the whitelisting: https://duo48.com/blog/whitelisted-wp-admin-admin-ajax-using-htaccess
Thanks,
MartinHello André,
I don’t think we need another option for this. If voice spans are present it should always process them like you described.
I like the idea of the indentation too. I hope we could get that without having to use tables. But what happens if there is a subtitle line without the voice span? Would that show without indentation?
Thanks,
Martin4 years ago in reply to: Polaroid playlist style thumbs per rowHello Eisen,
we will improve the code to keep the thumbnail size about the same regardless of player column width.
Thanks,
Martin4 years ago in reply to: Polaroid playlist style thumbs per rowHello Eisen,
our styling covers webpage widths up to 1020 pixels. Anything above will use the 4 videos in line.
How wide is your content column? Do you get much bigger thumbnails than on our demo page? https://foliovision.com/player/demos/playlist-styles#polaroid
Thanks,
MartinHello Sandor,
thank you for posting these details. I was able to reproduce the issue using that. I’m not sure why the steps which I did worked fine though.
We have prepared this fix for the next FV Player release. To get the fix 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,
MartinHello Sandor,
unfortunately I was not able to reproduce the bug. I opened https://foliovision.com/player/demos/hls-stream and played the last video. In that video I choose the 1080p quality. I could see the FVPlayerHLSQuality in browser localStorage was set to 3, as the qualities are internaly numbered as 0, 1, 2 and 3.
Then I played the first video, which only has 3 qualities. So there are internally numbered as 0, 1 and 2. But it would play just fine. Although with the auto quality selected as 1080p or the 3rd quality was not available.
I see that this is not perfect, but the issue we were facing is that during the video load the HLS.js doesn’t know which quality is using what bitrate. So our attempt to remember the choosen bitrate instead of a stream “number” has failed.
Maybe there is something special about your streams. For example I haven’t tested what happens if each video has different amount of audio tracks for different languages. But from what I’ve seen so far it should just work as these do not affect the internal numbering and in the worst case it would fall back to picking the quality automatically.
Thanks,
MartinHello Kendell,
I think the issue is that you compare the values with ==. Since the progress event only fires about 4 times a second it might not trigger for the exact time value. You should be checking for the range to be +- half second of your desired time and remember when it already occurred.
Or it could use the cues API: https://foliovision.com/player/advanced/api-programming#cuepoints
Our Pro support would let us check the issue right on your website and either fix the issue (if you prefer) or provide guidance to help you finish your scripting.
Thanks,
MartinHello André,
thank you for posting your notes!
We could parse these voice spans and save you the trouble of adding the CSS rules for each voice.
Thanks,
MartinHello Prakash,
we have added a preset setting for the DRM text which lets you use the Watermark mode in which the video overlay is always present. With the Flash preset it only appears for 1 or 2 video frames.
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
Martin4 years ago in reply to: DRM colorHello Edward,
we have added a preset setting for the DRM text which lets you use the Watermark mode in which the video overlay is always present. With the Flash preset it only appears for 1 or 2 video frames.
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
Martin4 years ago in reply to: Protecting Videos With DRM TextHello Federico,
we have added a preset setting for the DRM text which lets you use the Watermark mode in which the video overlay is always present. With the Flash preset it only appears for 1 or 2 video frames.
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
Martin4 years ago in reply to: How to set DRM Text to appear permanentlyHello Anton,
we have added a preset setting for the DRM text which lets you use the Watermark mode in which the video overlay is always present. With the Flash preset it only appears for 1 or 2 video frames.
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
MartinHello Seorim,
we have added a button to collapse/expand the transcript box: https://foliovision.com/player/demos/interactive-transcript
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
Martin4 years ago in reply to: Interactive Transcript for Playlist VideosHello Brian,
we have enabled the use of transcripts in video playlists. Both transcripts are then placed in the page HTML code, although only the first one is visible. When you switch to another playlist item the other transcript box is then revealed and so on.
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
MartinHello André,
we have added a “Preserve original formatting” checkbox below the transcript field in FV Player editor. When enabled the transcript won’t be formatted in any way, except for line break after each line.
To get this new feature you have to switch FV Player Pro to Beta (here’s how https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta) and then update to the latest version (7.4.38.727.beta). You can also grab a fresh ZIP from https://foliovision.com/my-licenses and switch to Beta afterwards.
Thanks,
Martin4 years ago in reply to: Play button loading slowly?Hello Johnny,
we are planning to test that plugin ourselves and fix what’s necessary to improve FV Player Pro compatibility.
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
I fixed the bug which prevented the Video start from being tracked for live streams which start with a non-zero time. You can reinstall from https://github.com/foliovision/fv-wordpress-flowplayer/archive/10918414-ga-load-module.zip again.
It’s strange that you only got 18 minutes tracked out of 35. I tried to watch a live stream for 21 minutes, it was playing in a background tab which I didn’t use for a while and it tracked just fine.
The “Video/Seconds played” even is tracked when unloading the player. How did you leave the page? Did you close the tab when it was still in background? Or did you go back to that tab and then close it? Or did you just leave it playing in background while using some other application on your computer? Could you hear the sound at all times?
The heartbeat only goes out once per 10 minutes, it’s there only to keep Google Analytics awake. But perhaps we will have to re-use it to send the video seconds watched more often to increase its reliability.
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
yes, FV Player Pro remains without changes as the tracking is part of the free plugin.
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
are you able to test the upcoming FV Player version to see if we were able to fix this issue for you? If you please reinstall FV Player from this link: https://github.com/foliovision/fv-wordpress-flowplayer/archive/10918414-ga-load-module.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.
In this new version we use a newer Google Analytics library and we also fixed the “Video / Seconds played” even to use proper video name. Until now it didn’t use a proper video name and that could be the reason why you couldn’t find proper stats for the videos too.
Thanks,
Martin4 years ago in reply to: File Not Found with ChromeHello Miles,
I’m able to play the video on https://tangotopics.com/five-lead-errors/ without issues.
When you check the Network panel of the developer tools you should see there are 2 requests for the mp4 file. The first one will get 403 error and it’s normal. Then there is a second request where the mp4 file link also has the AWS signature on it and that one should succeed.
Please let us know if you are using and browser extensions and if you tried to disable them all. Or try to click to open the Guest window in Google Chrome and try to test there. Such window opens without any browsing history and extensions and it’s a good place to test, even better than an incognito mode.
Thanks,
Martin4 years ago in reply to: Play button loading slowly?Hello Johnny.
it seems we can install that Litespeed WordPress plugin and try to use its JavaScript minify function to figure out the reason why it won’t minify FV Player Pro properly.
Thanks,
Martin4 years ago in reply to: Play button loading slowly?Hello Johnny,
I see there is a JavaScript error coming from the minified file at //cdn.foliovision.com/wp-content/litespeed/cssjs/f331b.js?13306
Please try to disable that optimization and see if that fixes the issue.
If that works, then try to exclude the fv_player_pro.min.js file from the optimization and see if that help. LiteSpeed has some nice documentation about it here: https://docs.litespeedtech.com/lscache/lscwp/ts-optimize/#test-the-list
I can see the issue occurs after vttCssDef in our code. But I want to be sure the issue is with our code and not some other plugin as we don’t run into these issues with minify.
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
we have updated our code to using the new Google Analytics library a while ago, but then we never finished the testing. So I will finish that testing and will see if we can do this in upcoming week or two.
Thanks,
Martin4 years ago in reply to: Google Analytics vs Wowza statisticsHello Alessandro,
the purpose of heartbeat event is to keep the Google Analytics tracking alive. I tried to start playing a video and then go to some other tab and then come back to the video later and I could see all the video quartile events were tracked.
But for a live stream these video quartiles are useless and I can see how that Video/Seconds Played could be failing if user simply closes the browser tab without coming back to it.
It’s bound to the window unload event and perhaps we need to revise that and use some more modern approach like the beacon or even track this when the video ends. But in some way that would work for a live stream which has ended as well.
Thanks,
Martin4 years ago in reply to: html5: video file not found (iOS)Hello Philip,
could you please send us a report via our built-in video checker? The way the video checker works is that you need to come in as admin and open the video checker and send us a report about the video. It works on desktops.
Using that we might be able to figure out what is the issue with video encoding.
Also – are you able to play that video on your iPhone directly? Just open the MP4 file link in a new browser tab and see if it plays.
Thanks,
Martin4 years ago in reply to: File Not Found with ChromeHello Miles,
if it works for you in incognito mode than it must be some Chrome extension which you are using. Please check chrome://extensions/ and try to disable the extension on-by-one until you find the one which is responsible for this.
If you know a bit about web development you can also try to open your browser developer console (here’s how https://foliovision.com/player/troubleshooting/javascript-browser-console), then try to load the page with the video again and play it. See if any error appears on the console. It might be caused by some browser extension.
Thanks,
MartinHello Colin,
Chromecast reports this error:
onMediaError code: "session_error", description: description: "LOAD_FAILED" details: {type: "LOAD_FAILED", detailedErrorCode:315, itemId: 1}
We found that the error 315 is HLS_NETWORK_INVALID_SEGMENT which means that the video segment is not using TS or AAC format: https://developers.google.com/cast/docs/web_receiver/error_codes
Looking at https://playertest.longtailvideo.com/adaptive/bipbop/bipbop.m3u8 I can see the video segments are using the h264 (Constrained Baseline) codec, while your HLS stream is using Video: h264 (Main). Both of which should work with Chrome Cast, even the old versions. And both streams are using TS segments obviously.
I tried to put in some fixes based on https://stackoverflow.com/questions/55385491/why-is-chromecast-unable-to-stream-this-hls-video-neither-id3-nor-adts-header but it wouldn’t work so far.
I also tested that video in JW Player and it wouldn’t cast either.
—
Regarding https://foliovision.com/player/demos/hls-stream – thank you for letting us know about that playback issue. It’s due to our new Stream Loader technology to serve HLS streams with URL tokens. We will fix it to work with different file extensions and then that broken video will play.
Thanks,
MartinHello Marc,
the VTT with preview images loads fine as the Stream Loader feature of FV Player Pro removes the CORS requirement – it loads from the same domain as your website.
BunnyCDN should use a better default list of file extensions for CORS.
Thanks,
MartinHello Marc,
I don’t see why it wouldn’t work if it worked before.
Please, also try to open your browser developer console (here’s how https://foliovision.com/player/troubleshooting/javascript-browser-console), then try to load the page with the video again and play it. See if any error appears on the console.
There should be a red notice with the subtitle VTT URL in it along with some error message. Otherwise you will have to open the Network tab of the developer tools, reload the page and play video again and see if the subtitles URL request goes out properly and what does it return.
Thanks,
MartinHello Marc,
yes, exactly. And according to my tests the VTT subtitles are not affected by the new Stream Loader technology which we put together. So I’m not sure why it’s not working for you.
Please end over your VTT file you are using, or even better a link to the page where we can see the issue.
Thanks,
MartinHello Marc,
please send over your VTT file. I was not able to reproduce this issue. The Stream Loader does adjust the VTT file if it contains the sprite image references only.
Thanks,
Martin4 years ago in reply to: Latest plugin creates an error in the consoleHello PatrickBrian,
I’m not getting that error here: https://www.optimize.me/greatest-year-ever/
Does it happen only when you are logged in? Does it seem to break anything?
Ideally you would be able to enable SCRIPT_DEBUG to be able to give us a better error trace. You can do so by adding this to your wp-config.php if you have experience with editing of PHP files:
define( 'SCRIPT_DEBUG', true );
Thanks,
Martin4 years ago in reply to: File Not Found with ChromeHello Miles,
I had a look at https://tangotopics.com/handpressyarm/ with Chrome and it plays without issues. Perhaps it doesn’t work when you are logged in, so test in the Incognito browser mode or in the Guest window.
Thanks,
Martin4 years ago in reply to: Timeline Previews setup?Hello Marc,
FV Player Pro 7.4.36.727 is out. You will have to activate Settings -> FV Player Pro -> Stream Loader -> Enable to make sure your VTT file is processed to support URL tokens for the actual images.
Thanks,
Martin4 years ago in reply to: Uncaught Reference errorHello tgos2012,
please update to FV Player 7.4.36.727. Since you are stripping the query string versions you will have to also clear your CDN cache and browser cache.
Thanks,
Martin4 years ago in reply to: Splash Bug Causing Persistent Image4 years ago in reply to: add mobile video to playlistHello andrew55,
the mobile video field is only supported for a single video player, it doesn’t matter if it’s built using bare shortcode or database.
We could be moving the quality switching from Pro to free plugin for the upcoming 7.5 release which will bring more changes. It might take 2-3 weeks to finish.
However there is a difference in these two features – the FV Player Pro quality switching requires that the video file names follow a certain naming convention. So your desktop videos file name would all have to end -desktop.mp4 and the mobile video would all have to end in -mobile.mp4. That applies for the players where the quality switching is enabled.
I added a new “Hiding the prev/next item buttons in overlay of the Prev/Next playlist style” chapter to our CSS modifications guide: https://foliovision.com/player/advanced/css-tips-and-fixes#playlist-prev-next-overlay
Thanks,
Martin4 years ago in reply to: Ios14 does not have full screen mode.Hello Shin,
do you mean you are using Settings -> FV Player -> Mobile Settings -> “Use native fullscreen on mobile” and it’s no longer working on iOS 14?
Actually it doesn’t work in any iOS version. I found it was caused by our “Compatiblity – Fullscreen appearance fix for Google Pixel 4” fix which was introduced in 7.4.35.727.
I prepared a fix for this to go out in the next release. If you want to get it right now please reinstall FV Player. 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 install FV Player again and you will get the fixed version already.
Thanks,
Martin4 years ago in reply to: add mobile video to playlistHello Andrew,
1) The mobile video field is a basic feature of the free FV Player. We provided a superior version of it in FV Player Pro: https://foliovision.com/player/basic-setup/quality-switching
And we would actually like to move that feature into the free FV Player to make sure users can get basic quality switching for MP4 videos in the free plugin.
2) I would suggest that you just keep using the current shortcodes which simply refer to the database ID:
[fvplayer id="1"]
We could fix that playlist_hide=”true” argument to work with it if it’s added by hand and ensure it’s never removed by the editor.
However is the prev/next playlist not enough? That one already hides the playlist item thumbnails: https://foliovision.com/player/demos/playlist-styles#prev-next
Thanks,
Martin4 years ago in reply to: Timeline Previews setup?4 years ago in reply to: Timeline Previews setup?Hello Marc,
we realized we need to process the VTT file in order to have it work with URL tokens. So we are working on fixing that.
Thanks,
MartinHello Francis,
thank you for the bug report, however I was not able to reproduce the error.
Do you get that same issue when you preview your website with a standard WordPress theme?
Is it happening with a playlist or is that a single video? How many players are on the page? Please share the link to your page where we can see the issue.
Thanks,
Martin4 years ago in reply to: Splash Bug Causing Persistent ImageHello Devin,
thank you for the bug report! We have worked on a fix, it will be part of the next FV Player release. To get the fix 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,
Martin4 years ago in reply to: Cancel SubscriptionHello Will,
most of the plugins have difficult to manage subscriptions and FV Player is not any better. We do offer a 2/3 discount on the renewal pricing however.
We would like to improve our licenses to work with subscriptions similar to how a web hosting companies bill their users – there would be a single subscription per user billed annually and you could easily add more licenses for different plugins by paying the difference in the prices etc. So no need to renew different plugins at different times. And a single payment/subscription would cover it.
Thanks,
Martin4 years ago in reply to: Error with the latest version of the pluginHello PatrickBrian,
FV Player Pro 7.3.35 was released yesterday. Hopefully it did fix your issues.
Thanks,
Martin4 years ago in reply to: Timeline Previews setup?Hello Marc,
the VTT thumbnail previews from Coconut.co do work and that Videohop service should work too.
FV Player Coconut which is a free plugin integrates the entire workflow of video encoding, encryption and thumbnail previews: https://foliovision.com/downloads/fv-player-coconut
Thanks,
Martin4 years ago in reply to: Vimeo access token appears to be invalidHello Cirdec,
it says you were banned. This could happen if FV Player Pro would access the same missing Vimeo video over and over again. We cache all the API calls and make sure we do not over-use it, but we had some user with similar issue before.
When you check your first screenshot you will see there is a log of errors – please check if you recognize these videos and if they actually exist.
If some of them doesn’t exist, you should be removing it from your website and then contacting Vimeo to remove the ban.
Thanks,
Martin4 years ago in reply to: Timeline Previews in FV Player ProHello Marc,
we are switching from using PNG-based thumbnails with fixed dimensions and intervals to VTT thumbnails which are much more robust. That will improve the way this feature works in FV Player Coconut.
We are also thinking about creating a service for the video thumbnails.
Thanks,
MartinHello Kristin,
please check Settings -> FV Player Pro -> Mobile Settings -> Force landscape orientation in fullscreen. Perhaps we should make it on at all times and remove that option. It should work reliably on Android phones.
Thanks,
Martin