Forum Replies Created
-
-
7 years ago in reply to: How to use RTMP streams with Flash

Hello Vj,
please use our video checker and submit the report using that: https://foliovision.com/player/basic-setup/how-to-use-video-checker
Thanks,
Martin
Hello Indi,
my guess is that there was some non-printable character in your shortcode which was breaking it. You can try pasting it into the Text or HTML editing more of your editor.
WordPress shortcodes are quite sensitive, which is why we moved to a database model.
Thanks,
Martin7 years ago in reply to: Automated Featured Image
Hello Crystal,
you can put it into your theme functions.php file or create a mini plugin.
More about the functions.php file can be found here: https://developer.wordpress.org/themes/basics/theme-functions/
If you have some experience with PHP it’s very easy.
Thanks,
Martin7 years ago in reply to: Speed Buttons – YouTube Videos
Hello Devin,
I see that YouTube API no longer likes us setting the playback speed as string and it was it as a float value. We will fix that.
Thanks,
Martin
Hello Peter,
if you enable Settings -> FV Player Pro -> Integrations/Compatibility -> “Handle WordPress [video] shortcodes” then FV Player will take over these YouTube links and use the global video ads configures in Settings -> FV Player Pro -> Video Ads.
Thanks,
Martin7 years ago in reply to: Add Video button malfunctionning
Hello Al,
thank you for sending that over, it suggests that the WP Media Library is not available on your post editing screen. Are you using any page builder or anything that alters the editing interface of WP Media Library? Cold you please send over a screenshot of your post editing screen?
Thanks,
Martin7 years ago in reply to: Automated Featured Image
Hello Crystal,
FV Player comes with some useful filters, just like WordPress does. You can put the code from https://foliovision.com/player/advanced/api-programming -> “fv_flowplayer_args_pre” -> “code snippet which will automatically use the post featured image” to your theme functions.php and it will do what you need.
Thanks,
Martin7 years ago in reply to: probleme with video intelligence Video Ads
Hello Homa,
I would recommend you give Google Analytics a try, it will be an interesting insight into your traffic anyway. It’s the only way of really knowing how many video plays you get.
I would recommend you ask video intelligence about your issue, perhaps they are not sure if they can put advertising onto your videos.
Please let us know if you don’t hear back from them in a couple of days.
Thanks,
Martin
Also, please check if a more simple shortcode like [fvplayer src="1"] will work. Of course it won’t play as “1” is not a video URL, but it’s worth trying to troubleshoot your issue.
Thanks,
Martin
Hello Indi,
I was not able to reproduce this issue using WordPress 5.0.3 with Classic Editor plugin installed.
Please post output of Settings -> FV Player Pro -> Tools -> System Info, perhaps we can find some clue there.
Thanks,
Martin7 years ago in reply to: Add Video button malfunctionning
Hello Al,
what I suggested above was a troubleshooting step. I was hoping to hear back from liwei to be able to fix the issue.
Could you please check if there is any JavaScript error occurring when the Media Library doesn’t open for you? To check that you need to open your browser JavaScript console (here’s how: https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis ) and then repeat your action and see if you get some error there.
Thanks,
Martin7 years ago in reply to: How to set subtitle default
Hello Medal,
is that your non-WordPress website? I’m noticing that your subtitle doesn’t have the ‘default’ key set to true in the data-item attribute of the player element.
Thanks,
Martin7 years ago in reply to: probleme with video intelligence Video Ads
Hello Homa,
you need to have a certain amount of video plays per day to see these ads. If you are not sure how many video plays you actually get you can setup Google Analytics for FV Player: https://foliovision.com/player/advanced/google-analytics-fv-player
Thanks,
Martin7 years ago in reply to: Video Sitemap For Post Format Style?
Hello Deirdre,
do you mean your Vimeo and YouTube videos are not found in FV Player video sitemap? It’s like that as each item in there needs to have URL of the actual video file or URL of the video player.
So for YouTube and Vimeo we could only use the URL of the video on YouTube or Vimeo which doesn’t help with your site rankings.
But we could improve this by linking to FV Player embed URLs. For example the video from https://foliovision.com/player/demos/vimeo-integration would be presented with URL https://foliovision.com/player/demos/vimeo-integration/fvp
Thanks,
Martin7 years ago in reply to: Automated Featured Image
Hello Crystal,
I see, so it’s the other way around. FV Player doesn’t have such feature currently.
What we want to do instead is to let you pick the splash screen by selecting a frame in the video directly.
Thanks,
Martin7 years ago in reply to: FV Player Vimeo API Rate Limits
Hello Philip,
the way it should work is that it should process any videos for which the duration is not set. You provided an export of one of your videos before and in that one there was no duration present. It might be good to check that one again, perhaps the duration is present now?
Please share your Vimeo Access token with us. We won’t publish it here and you can always reset it. Perhaps there is some issue with it with we are failing to detect. That way I could try to use it for a bunch of requests to see if it gives me the information I need.
Also, there is possibility that your Vimeo videos are private and they belong to some other account than the API key you are using. That could also explain why this fails.
Thanks,
Martin7 years ago in reply to: FV Player Vimeo API Rate Limits
Hello Philip,
please check if the Vimeo API warning currently appears and if not, then please open https://YOUR-SITE.com/wp-admin/options-general.php?page=fvplayer&fv_flowplayer_checker
That should add in the missing splash screens and durations. You should not notice that the Vimeo videos on wp-admin -> FV Player screen which didn’t had the thumbnails showing up before will have the thumbnails available.
Let us know, I have some more troubleshooting tips. We really need to improve this in FV Player.
Thanks,
Martin
Hello Neil,
I was about to send a reply to you, but I can’t see it here, so perhaps I forgot to send it.
Please also send the URL of the actual HLS stream and a screenshot of the post editing interface where the video is inserted. If the shortcode is like [fvplayer id="1234"] then please send the export of that player. You can get it from the wp-admin -> FV Player screen, it’s one of the actions in each row of the list table.
Thanks,
Martin7 years ago in reply to: FV Player Vimeo API Rate Limits
Hello Philip,
please enable Settings -> FV Player Pro -> Integrations/Compatibility -> “Scan video length” and all the missing video durations and splash screens (applies to Vimeo and YouTube) will appear in 5 minutes or so. It uses WP cron, so the actual time might depend on how many pageviews you get. If it fails due to Vimeo API limits it will try again in an hour.
The FV Player database model is pretty new. We are working on documentation to show you how to import videos to it etc. and also improving some of the function calls. But here is the basic idea:
$player = array( 'videos' => array(), 'player_name' => 'Name' ); while( $dzs_items_which_you_load_somehow AS $dzs_item ) { $video = array( 'caption' => $dzs_item['title'], // can remain empty for Vimeo or YouTube 'src' = $dzs_item['source'], 'splash' = $dzs_item['image'], // can remain empty for Vimeo or YouTube ); $player['videos'][] = $video; } global $FV_Player_Db; $player_id = $FV_Player_Db->import_player_data(false, false, $player );I recommend you to try this on a staging website first or at least backup your database.
Thanks,
Martin7 years ago in reply to: Start a video muted in the shortcode editor?
Hello Fair,
Chrome doesn’t permit autoplay videos to play sound. User has to unmute the video manually to hear the sound.
Once user interacts with the video like that Chrome increases the Media Engagement Index (MEI) for the website and will allow audible autoplay for that particular website in the future.
You can find out more about MEI here: https://foliovision.com/2018/05/video-autoplay-issues
Safari only allows muted autoplay under all circumstances.
Please let us know if you are not sure about anything or if your situation is different than what I described above.
Thanks,
Martin7 years ago in reply to: FV Player Vimeo API Rate Limits
Hello Philip,
please provide the export for the FV Player ID 20. The export link can be found in each player row on wp-admin -> FV Player. I wonder if the splash screen is there. If it’s not there, then it will try to obtain it automatically and cache it, but perhaps that routing is failing on your website.
we haven’t worked with DZS Video Gallery plugin before and it’s the first time I read about it. Do you have a programming team which could use some of our tips for the conversion?
Thanks,
Martin7 years ago in reply to: FV Player Vimeo API Rate Limits
Hello Philip,
how many Vimeo videos do you published on your website?
How does the shortcode of a typical Vimeo video look like? Is it just something like [fvplayer src="https://vimeo.com/310463116" splash="https://i.vimeocdn.com/video/751099985_1280x721.jpg?r=pad" caption="DIGITAL CONTENT"] (no splash argument present)?
Where are your [fvplayer] shortcodes typically inserted? Is it the post content or are you using some special field or a page builder?
Thanks,
Martin7 years ago in reply to: Download video files from Player
Hello Nikolaos,
what video type are you using? If it’s an HLS stream it can’t be downloaded easily. If it’s MP4 with quality switching, we could add a download button to the control bar. In my opinion it should not be easy to copy the video URL there, so that would need a layer of extra protection.
Do you mean the control bar doesn’t go away even after a couple of seconds? Are you using the option to show your control bar all the time and not just when moving your mouse?
Thanks,
Martin
Hello Neil,
please ensure that your license acquisition URL parameter matches your m3u8 URL. It should also only match a single m3u8 URL on your website.
You can also just post the URL here and let me check that out.
Thanks,
Martin
Hello Alan,
this issue appears if your theme is using z-index in a bad way.
We have a special setting “Alternative iOS fullscreen mode” in Settings -> FV Player Pro -> Mobile Settings which helps with similar issue in fullscreen mode. I think we could use the same approach for the sticky video feature as well, but currently we are quite overloaded with work, so I will ask our CSS designer to describe that z-index issue in detail and perhaps you CSS designer can fix it for you.
Thanks,
Martin
Hello Girish,
to conclude the previous issue you were having – in the end we checked the issue on your website and found there was indeed a bug in FV Player Pay Per View which we fixed. So now you are no longed having issues with linking the player to the EDD item.
We also found that the link to the EDD item is not created if you create the player on the wp-admin -> FV Player screen. We will have to restrict that as it needs the post ID and there is no such thing on that wp-admin -> FV Player screen – it’s not a post.
Now about the new issues you are having:
1) “Watch Full Video” on top of video not working – thank you for the bug report, there was some change in EDD which caused this. New version of FV Player Pay Per View 7.3.8.727 is out now.
2) Not playing for non-logged in users – FV Player Pay Per View automatically creates the user account for anybody who pays. When using PayPal, you are redirected back to the website after making the payment and you are actually already logged in.
So on the “Purchase Confirmation” you can see the list of “Products” where you get a “Watch” link leading directly to the video which you purchased. It looks like on the “The user will see all the details of his purchase” screenshot found on https://foliovision.com/player/pay-per-view/how-to
The email which is then sent to the user contains a special viewing link which lets the user watch the video even without logging in. And the login details are sent in a separate email.
But I see that the popup with the buy buttons or the buy buttons below the player could mention that you must log in if you already paid for the video.
3) I was not able to reproduce the issue with “1 EUR — Purchase ->” appearing below the “You have xx hours to watch the video” message.
Thanks,
Martin7 years ago in reply to: Automated Featured Image
Hello Crystal,
the featured image is automatically assigned if:
1) you pick the video splash screen from your WP media library
2) you save a post with a Vimeo or YouTube video in itPlease let us know if one of the above if the issue you are noticing and also what WordPress version you are using.
Thanks,
Martin
Hello Carl,
thank you for the bug report. I was not able to reproduce the issue using Safari 11.1 on macOS High Sierra.
If you are using FV Player Pro 7.3.7.727.beta please make sure you update to 7.3.8.727.beta.
Thanks,
Martin
Hello Carl,
thank you for checking it out, we will include the fix in next release.
Thanks,
Martin7 years ago in reply to: Playbar – Hide on paused video
Hello Devin,
the new AB loop bar design which we have been promising for a while solves this issue – once activated both control bar and ab loop bar appear below the video – not covering anything. Same in fullscreen.
Thanks,
Martin7 years ago in reply to: Add Video button malfunctionning
Hello liwei,
I don’t see any problem on your screenshot.
What do you mean that it won’t open anything? Did you paste some video URL into the “Video” field and then it wouldn’t slow it in preview?
Does it save properly? When you use that shortcode in a post does it work?
Here’s our usage guide which you can use also for WordPress 5, but you have to add FV Player as the block first: https://foliovision.com/player/basic-setup/start-up-guide#insert-videos
Thanks,
Martin
Hello Medal,
sounds to me like a bug which we solved in FV Player VAST 7.3.4.727:
* Fix for VAST ads not appearing before YouTube videos since recent FV Player Pro update
Thanks,
Martin7 years ago in reply to: FV Player Editor not showing in Gutenburg
Hello Leho,
could you please reinstall FV Player from this ZIP file and see if that fixes the issue? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip
Note: To reinstall FV Player first disable the plugin and delete it. WordPress might say that will might loose some data, but that doesn’t apply to FV Player – no settings nor videos will be lost. Then you will be able to upload that ZIP file directly to WordPress Plugins wp-admin interface.
Thanks,
Martin7 years ago in reply to: Warning after the latest update
Hello George,
thank you for the bug report, could you please reinstall FV Player from this ZIP file and see if that fixes the issue? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip
Note: To reinstall FV Player first disable the plugin and delete it. WordPress might say that will might loose some data, but that doesn’t apply to FV Player – no settings nor videos will be lost. Then you will be able to upload that ZIP file directly to WordPress Plugins wp-admin interface.
Thanks,
Martin7 years ago in reply to: Playbar – Hide on paused video
Hello Devin,
does it cover an important part of the video? If so, then I would recommend the Settings -> FV Player -> Sitewide FV Player Defaults -> Controlbar Always Visible option.
However I see that it won’t help in fullscreen, so perhaps we should fix that.
Thanks,
Martin7 years ago in reply to: FV Player Editor not showing in Gutenburg
Hello Leho,
I was only testing this with WordPress 5 which comes with Gutenberg built-in. I see you are on WordPress 4.9.9 with the Gutenberg plugin installed.
I tried to use the Gutenberg plugin on WordPress 4.9.9 now and I’m getting the same issue. It seems it doesn’t contain the same hooks as Gutenberg does in WordPress 5.
So that’s another bugfix to take care of.
Thanks,
Martin
Hello Carl,
I don’t have iPad at hand right now. Are you able to add this to your CSS and see if it helps?
.flowplayer.is-fullscreen { border-radius: 0; }Thanks,
Martin7 years ago in reply to: Disable player controls
Hello Bradley,
thank you for the suggestions.
1) If you enable Settings -> FV Player Pro -> Post Interface Options -> Controlbar you will be able to hide it completely.
2) We could have an option to set the player to the disabled state – that’s when clicking it does nothing and it just plays. Perhaps it could be another level of the Controlbar setting – currently it’s On or Off, but it could be On (default), Hidden (controlbar gone, but you can still pause the video) and Off (no interaction at all).
3) You can freely combine autoplay and the Controlbar setting.
4) We had a feature request like this before. If you are really interested, we can send you some proposal for development of such feature.
Thanks,
Martin
Hello Çapan,
FV Player Pro 7.3.7.727 is out and it fixes the issue. It appeared only if the YouTube logo option was enabled.
If you posted there videos in FV Player 7.3.x.727 they were stored in database. So then downgrading to 7.2.x.727 or before means they won’t show up as that version didn’t contain the database feature yet.
Thanks,
Martin
Hello Davide,
FV Player Pro 7.3.6.727.beta is out now. If you are not on Beta already, here are the instructions: https://foliovision.com/player/basic-setup/switching-fv-player-pro-to-beta
Thanks,
Martin7 years ago in reply to: Cannot edit player
Hello Nikolaos,
I think I found the issue, there will be a new FV Player version out today with a fix.
Thanks,
Martin
Hello Davide,
please post https://foliovision.com/debug/ privately using Facebook and the go to it using the Facebook app and let us know how it works for you.
We disabled HLS.js and Dash.js libraries for Facebook browser there and it seems to help. Let us know about your experience please.
Thanks,
Martin7 years ago in reply to: Cannot edit player
Hello Nikolaos,
it’s a strange issue. That URL is the standard endpoint for the WP Ajax. So it has to exist. I tried to open that URL and it it gives back HTTP 400 (Bad request) properly. So I wonder why does it return HTTP 404 (Not found) when using FV Player.
Please go to your site wp-admin do a right mouse click in it and select “View source code”. You will see the page HTML code. Can you search there for admin-ajax.php and let us know what you find? These should be full URL somewhere which might be different than standard /wp-admin/admin-ajax.php
This could be caused by some security hardening.
Thanks,
Martin7 years ago in reply to: Cannot edit player
Hello Nikolaos,
so far I didn’t experience such issues when using WordPress 5.0.
That 404 issue doesn’t seem like it, however what resource URL does it occur for?
We are happy to fix the editing issue for you directly on your website, just order the Pro support here: https://foliovision.com/pro-support
Or we can also continue helping you with the troubleshooting. Does the issue go away if you deactivate all the other plugins?
Thanks,
Martin
Hello Girish,
are you sure you opened the wp-admin -> FV Player screen again after doing the plugin reinstalls?
It’s strange that #post_ID is not found. Does it also happen if you deactivate all the other plugins with exception of FV Player and FV Player Pay Per View?
Thanks,
Martin
Hello Girish,
before we get to that, could you please run the following on the browser console to help us understand the issue a bit more?
jQuery('#post_ID').val()Let’s see if that gives you the post ID properly. First open a post where your video is present, then do a right click anywhere on the page and select “Inspect”. That way the browser developer tools will open and there you will be able to open the console and run the above command in it.
Thanks,
Martin7 years ago in reply to: Cannot edit player
Hello Nick,
I’m sorry to hear about your trouble, do it work when you load the editor on the post editing screen directly? You can place your cursor into the [fvplayer id="12341"] kind of shortcode and then hit the FV Player button on top of the editor. Of if you are using WordPress 5 with Gutenberg (block editor) you can just hit that button.
Can you open your browser JavaScript console (here’s how: https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis ) and then repeat your action and see if you get some error?
Can you install the Error Log Viewer plugin and see if any new errors show up in it every time you try to edit a player?
Thanks,
Martin
Hello CCMT,
is that a HLS stream? Safari supports HLS directly and it has it’s own ABR routine. That’s why the quality switching doesn’t work.
By the way Safari’s built-in HLS ABR is far superior to HLS.js ABR for example.
Thanks,
Martin
Hello Medal,
it doesn’t matter if the ad in configured for that player only (data-vast) or if it’s global (fv_vast_conf).
Your ad doesn’t play on iPhone because of the reason:
The provided ad type: skippablevideo is not supported.
Unfortunately skippable ads are no permitted on iPhone as on older versions there would be no way of skipping the video ad as it can only play video in the native fullscreen mode.
Thanks,
Martin
Hello Girish,
please post a new FV Player to a different post and fill in the Pay Per View information in it as seen in the step 1 & 2 here: https://foliovision.com/player/pay-per-view/how-to#using-pay-per-view-with-shortcode-editor
Then inspect the EDD item again and see if the “This video can be found in” contains a link to that post.
I wonder how it could disappear for your video.
Thanks,
Martin
Hello Medal,
FV Player VAST 7.3.4.727 is out now and it fixes this issue. We haven’t spotted this issue as it only appeared on iPhone and not on iPad. Unfortunately these two devices have to handle things differently, even for the same iOS version.
Thanks,
Martin
Hello Davide,
so it’s actually the most recent Chrome version. I tried it on my onw phone and I go the same version 71.0.3578.99.
I was able to reproduce the same issue on https://foliovision.com/player/demos/roll-custom-video -> “VIMEO VIDEO WITH ANOTHER VIMEO VIDEO IN PRE-ROLL”. Sometimes it played fine, sometimes it failed to play the video after the ad. But the sound was always off, so I always had to unmute it.
No issues in original Google Chrome, not even after I upgraded it to the same version as what the Facebook app is using.
Problem with the Facebook app is that its built-in Chrome browser doesn’t support remote debugging..
Thanks,
Martin
Hello Davide,
the web browser in Facebook app seems to be just an old version of Google Chrome. That’s what I mean, I understand that you are using Facebook app and not Chrome. There is no problem with your English, I’m not a native speaker either.
I’ll get it installed and see what I can find. I guess it will be the same version as what you have.
Thanks,
Martin
Hello Davide,
please check the user agent string of your Facebook for Android app. You can do so by sharing a link to https://www.whatsmyua.info/ on Facebook and then opening that in your Facebook app.
My guess is that it’s some old version of Google Chrome, in the worst case we need to stop these video ads on it altogether.
I have seen some playlists on your website – do these play fine in Facebook app when you disabled the video ads? Can you play any of the items, or is it always limited to the first item only?
Thanks,
Martin
Hello Girish,
please check wp-admin -> Downloads -> All Downloads and find the item corresponding to your video. You should see the following when you open it for editing:
* a FV Player Pay Per View box
* text like “This video can be found in: {post title}” written inside of that box with a working link to the postAlso, did you please anything else into the shopping cart when making the purchase? Such as two or more items?
Please let us know.
Thanks,
Martin7 years ago in reply to: Error: hlsjs-lite network error fvplayer.
Hello Vinayaka,
please let us know where we can see he issue.
Could you please also check on https://foliovision.com/player/demos/hls-stream – I don’t see any error like that there. I used Edge with the following user agent string:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Thanks,
Martin7 years ago in reply to: FV Player Editor not showing in Gutenburg
Hello Leho,
could you please check the JavaScript console for errors?
When you check the HTML source of your post editing page, can you see HTML like this?
<div style="display: none">
<div id="fv-player-shortcode-editor">
<div id="fv-player-shortcode-editor-editor">
<table>
<tr>
<td class="fv-player-shortcode-editor-left">
<div id="fv-player-shortcode-editor-preview">
<div id="fv-player-shortcode-editor-preview-spinner" class="fv-player-shortcode-editor-helper"></div>
<div id="fv-player-shortcode-editor-preview-no" class="fv-player-shortcode-editor-helper">
<h1>Add your video</h1>Could you please provide output of Settings -> FV Player Pro -> Tools -> System Info?
Thanks,
Martin
Hello Patrick,
thank you for the heads-up, next version of FV Player will no longer feature the Google+ button.
That API change is for Google+, the API which we use to fetch video information from YouTube remains active.
Thanks,
Martin
Hello Bruno,
thank you for your reply, could you please reinstall FV Player from this ZIP file and see if that fixes the issue? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip
Note: To reinstall FV Player first disable the plugin and delete it. WordPress might say that will might loose some data, but that doesn’t apply to FV Player – no settings nor videos will be lost. Then you will be able to upload that ZIP file. No need to do anything about FV Player Pro.
That warning has been added in PHP 7.2 it seems and it affected a lot of plugins.
FV Player database doesn’t actually use post types, it’s custom database to make it more efficient. The WordPress database model would add more overhead and make the player less portable.
Thanks,
Martin7 years ago in reply to: Warnings after saving/updating a page
Hello Nikolaos,
thank you for posting these details!
Could you please reinstall FV Player from this ZIP file and see if that fixes the issue? https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip
Note: To reinstall FV Player first disable the plugin and delete it. WordPress might say that will might loose some data, but that doesn’t apply to FV Player – no settings nor videos will be lost. Then you will be able to upload that ZIP file. No need to do anything about FV Player Pro.
The above plugin file contains a hotfix for the issue. Can you also post the Export of the player data from wp-admin -> FV Player for the player which is causing the issue? But it might be caused by some other plugin as well.
Thanks,
Martin
Hello Bruno,
are you sure there is no real error in the PHP error log? Have you checked the error log file? You can also try to check it using the Error Log Monitor plugin.
If there is still no fatal error to be found – did you switch the PHP version recently? Perhaps switching to a different version (if that option is easily available for you) will fix the missing error log entry issue. We had such issue recently, PHP sometimes fails to log certain fatal error (FV Player or not).
Or you can use Settings -> FV Player Pro -> Tools -> Rollback to go back to 7.2.7.727. Will that fix the issue?
Please let us know how it goes.
Thanks,
Martin7 years ago in reply to: FB Mass Import to DB (API Custom Endpoint?)
Hello Leho,
you can keep using the
[fvplayer src="..."]kind of shortcode. Over time there might be some functionality which might work only for the database shortcode though. And we might add a feature to convert at least these simple shortcodes to FV Player database entries.Thanks,
Martin7 years ago in reply to: How to Create Subtitles
Hello Meir,
to get full YouTube support you need a FV Player license: https://foliovision.com/player/download
Thanks,
Martin
Hello Leho,
please upgrade to latest version (7.3.4.727) that one supports Gutenberg, so that error won’t occur.
Thanks,
Martin7 years ago in reply to: Warnings after saving/updating a page
Hello Nikolaos,
this issue might be caused by switching PHP versions. What version are you on now? You can find that in Settings -> FV Player Pro -> Tools -> System Info. It’s a big text area where you can look for “PHP Version”.
We found no issues when using PHP 7.1.12, 7.1.15 and 7.2.1.
What other plugins are you using? You can just send the full content of that “System info” box too.
Thanks,
Martin
Hello Peter,
we did check Amazon Media Convert before. I was really looking forward to it as Elastic Transcoder is not the best interface I have seen. Unfortunately Media Convert is not much better.
But I’m sure it has other advantages. It seems it’s easier to import presets so perhaps we should be offering that.
Thanks,
Martin7 years ago in reply to: YouTube/self-hosted mixed playlist
Hello Pádraig,
with the YouTube it works as you described. The tap has to be targeted to the iframe directly. So if the user clicks the playlist thumb, it has to bring up that iframe into the player area asking user to tap it once again. On new mobile OS we could change this a bit to play the video muted – only requiring a single tap.
After you switch to FV Player Pro Beta you should see the upgrade to version 7.3.5.727 available on your Plugins screen.
Thanks,
Martin
Hello Kelly,
please check if each file plays in its full length if you post it as a single audio track and not in a playlist.
Are you getting the same issue when you use these audio files?
https://cdn.foliovision.com/images/2017/01/book1-prelude02.mp3″
https://foliovision.com/video/Vivaldi%20-%20Spring%20from%20Four%20Seasons.mp3I tried to replicate that “Add Image” issue on WordPress 5, but it just worked no matter if I used Gutenberg (the new block editor) or if I installed Classic Editor plugin to bring the old editor back. Please open your browser console (here’s how: https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis ), hit that button and see what error appears.
Thanks,
Martin7 years ago in reply to: Video Playback Error on IE?
Hello Devin,
the Vimeo API requests are used to obtain video splash screens and durations. So if you got such warning on December 16th, it appears that you inserted a lot of videos on that way, or perhaps you have some videos posted without splash screens – then these are obtained automatically. Are you noticing some of your videos not having a splash screen?
Regarding these playback issues – it appears as if the video loading Ajax didn’t respond properly. Please post the Vimeo URL of at least a single video for which the issue was reported. There is also a slim chance that the Ajax just failed to load as you web host was overloaded.
Thanks,
Martin7 years ago in reply to: Video Playback Error on IE?
Hello Devin,
checking on IE 11 (11.471.17134.0) on Windows 10 Home the Vimeo videos play just fine for me. I tested on https://foliovision.com/
What specific video seems to cause the issue? Is there any specific error that appears, or does it just keep loading forever? Can you ask them to check the video on https://foliovision.com/ too?
Thanks,
Martin7 years ago in reply to: YouTube/self-hosted mixed playlist
Hello Pádraig,
the fix has been released in FV Player Pro 7.3.5.727 Beta. You can check it on https://foliovision.com/player/demos/youtube-embedding -> Checking mixed playlist issues on the YouTube, MP4 playlist right there.
Thanks,
Martin7 years ago in reply to: Load Video in ADs lightbox
Hello Ran,
playback of your Vimeo videos doesn’t count to the Vimeo API calls limit. The number of cached videos (it’s information about the video file paths etc.) is purged when you save the FV Player settings, so that must be why you are noticing value of 0 there.
But I wonder where are all your Vimeo API calls spent. When you look at Settings -> FV Player Pro -> Hosting -> Vimeo can you see a message like “There were {number} API errors, last one from {date}” followed by a “show” link? When you click that, how often do you see that “Too many API request” error?
Thanks,
Martin
Hello Kelly,
please let us know what video types are used in that playlist. Are these self-hosted, Vimeo or YouTube?
What WordPress version are you using? Best if you can just provide output of Settings -> FV Player Pro -> Tools -> System info.
Thanks,
Martin7 years ago in reply to: Youtube Maxresdefault fallback
Hello Patrick,
the naming convention of these images is not very strict on YouTube. The only way of getting it reliably is to use the Google Developer API which FV Player Pro supports: https://foliovision.com/player/video-hosting/youtube-with-fv-player#Connecting-with-Google
Thanks,
Martin7 years ago in reply to: Play from different CloudFront distributions?
Hello Girish,
the URL signature is not supported for HLS streams, as all the segment URLs would have to get such URL signature too and AWS doesn’t work that way.
What would work (at least in new browsers) would be using a cookie.
Besides that you can use multiple ClloudFront distributions with the single key pair, if it’s on the same AWS account.
Thanks,
Martin7 years ago in reply to: Load Video in ADs lightbox
Hello Ran,
new FV Player version will contain a background updater of these videos in database with no duration or splash screen present. Currently a Vimeo video can end up stored with no splash screen if you insert it too fast or if you run out of API allowance for that moment.
Thanks,
Martin7 years ago in reply to: The ad will disappear.
Hello dong,
it works for me. You have specified the ad width to be 480 pixels, perhaps the video player was smaller than that when you were testing it. It can easily happen on mobile.
Thanks,
Martin7 years ago in reply to: Preroll autoplay, video no autoplay
Hello Angel,
is this about FV Player Pro video ads or about FV Player VAST?
It’s possible, but so far it’s the first request for such feature. I’, not sure if ad network like such setups though.
Thanks,
Martin
Hello Barney,
this could happen if you have a lot of logged in users watching your videos. The video position is stored when you close the browser tab, but also periodically to ensure the position is not lost if your browser crashes or you use some older browser.
To make sure the position is stored less often you can tweak sendPositionsEvery variable in the main plugin JS file, it’s this line: https://github.com/foliovision/fv-wordpress-flowplayer/blob/master/flowplayer/fv-flowplayer.min.js#L2479 The hard coded value is 60 which equals about 15 seconds (might be more, depending on browser and media type). I would suggest you to try a value of 240 there (60 seconds).
Also, to make sure your users get the new JavaScript file and not what’s cached in their browser change the plugin version form 7.x.x to 7.x.x.1 and increment that as you make more changes at: https://github.com/foliovision/fv-wordpress-flowplayer/blob/master/flowplayer.php#L30
This way you should really see an improvement. The performance matters a lot to us, so please let us know how it goes and we will be able to make this a setting. Or we can even provide some code (a mu-plugin) which would disable all the other plugins for these Ajax calls – making them a lot faster.
Thanks,
Martin
Hello Devin,.
the new AB loop styling which we are working on (I know it’s taking a while) addresses this issue – the AB loop appears as a markers above the control bar only, so it doesn’t cover the video a lot. On top of that the video height is reduced a bit to ensure it appears above the controlbar, so it’s not covered at all.
Thanks,
Martin
Hello Tucker,
I had a look and that issue appears on your site regardless of that setting.
It seems to me the issue must be caused by the td_resize_videos function in your theme JavaScript file.
Please reinstall FV Player from https://github.com/foliovision/fv-wordpress-flowplayer/archive/master.zip and let us know if that fixes the issue for you. We made a mix there (using a CSS !important rule, but it’s the only way to help with these templates). To reinstall a plugin you have to first deactivate and delete it. No settings nor videos will be lost.
Thanks,
Martin7 years ago in reply to: FB Mass Import to DB (API Custom Endpoint?)
Hello Leho,
our plan is to allow that sort of mass importing. Currently you can only paste one player JSON export as you noted.
I see REST API could be useful, but it’s not planned at this point. I guess just making it work with importing would be a big help. What exactly is your goal with REST API here?
Thanks,
Martin7 years ago in reply to: Load Video in ADs lightbox
Hello Ran,
when you run out of Vimeo API credits (it’s 200 per 15 minutes) FV Player Pro won’t be able to fetch the Vimeo splash screens and video durations automatically anymore. Did you add a lot of Vimeo videos recently? When you open wp-admin -> FV Player screen do a lot of Vimeo videos appear without splash screens?
Looking at your app URL it seems you might be using outdated scripts in that one. Itseems like it’s some sort of HTML template with fixed content which doesn’t reflect what’s on your website where the videos actually play.
Thanks,
Martin
Hello Libby,
we have fixed the Vimeo MPEG-DASH related issue, but we still need to finish all the testing.
Thanks,
Martin
Hello Libby,
we have worked on this and on iOS it’s a bit tricky – you really just can’t start an ad without user interaction… unless the ad starts muted. So these post-roll or mid-roll ads will just play with no sound unless user hits the unmute button.
Thanks,
Martin7 years ago in reply to: Random stop for Viewers
Hello Gianluca,
we will discuss in our team if we could add this Netflix style “Are you still watching” feature.
Thanks,
Martin7 years ago in reply to: fvplayer in php template
Hello Sietze,
there are some functions like that, but we have to clean them up a bit and update our guide too.
What you can safely use is:
<?php echo do_shortcode( '[fvplayer id="'.intval($vid).'"]' ); ?>Thanks,
Martin
Hello Alan,
I see, so you are relying on the enclosure tags in the feed. That’s something which WordPress puts in if it finds an MP4 file link in the post content. With FV Player database there is no MP4 file link in the shortcode, so it doesn’t find it anymore.
We can get this fixed, but I can’t promise it before the Christmas holidays, as there are some other fixes which we are working on already. And there is a safe workaround which you can use in the meantime:
a) you can just downgrade back to FV Player 7.2.x
b) or just type your shortcodes by hand (that would works if you are only using something like [fvplayer src="https://your-cnd.somewhere.com/file.mp4"] and not a lot of other features).If you would like to accelerate this fix, we are happy to help, just order our Pro support: https://foliovision.com/pro-support
Thanks,
Martin7 years ago in reply to: YouTube/self-hosted mixed playlist
Hello Pádraig,
due to the mobile limitations we preload the YouTube iframe before the playback actually begins. So in case like this when you play a MP4 video before YouTube we will have to hide the iframe and then make it visible again when it’s needed.
Thanks,
Martin7 years ago in reply to: Load Video in ADs lightbox
Hello Ran,
please send over a link to that page, it appears the data-item attribute on that player is badly JSON encoded. Does it contain any special characters?
Thanks,
Martin7 years ago in reply to: How to use RTMP streams with Flash
Hello Adeleke,
can you get it to play here? https://www.wowza.com/testplayers
What RTMP messages do you see on browser console once you execute this command on it and play the stream afterwards?
localStorage.flowplayerDebug = true
Thanks,
Martin7 years ago in reply to: Wordpress 5 – Gutenberg issue
Hello Sebastian,
FV Player 7.3.4.727 adds Gutenberg support – the WordPress 5 block oriented editor.
Thanks,
Martin
Hello bebopblues,
you can just right click these elements and look for some div with a clear class or ID which is a parent of these elements and add that to your CSS selectors.
Thanks,
Martin7 years ago in reply to: FV Player Gutenberg Block
Hello Alan,
I guess you mean the XML sitemap and not the RSS feed. FV Player 7.3.4.727 released now should fix that for you.
Thanks,
Martin7 years ago in reply to: when i try add a video
Hello halit,
please send over the information from Settings -> FV Player Pro -> Tools -> System Info.
Can you use the wp-admin -> FV Player -> Import function with the code which you posted in your first message here? That did work for me and it should work for you as well if it was just some JavaScript error.
Can you open your browser JavaScript console (here’s how: https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis ) and then repeat your action and see if you get some error?
Are you able to check the PHP error logs? Simply repeat your action and see what was added to the logs.
Thanks,
Martin7 years ago in reply to: Wordpress 5 – Gutenberg issue
Hello Sebastian,
we strongly recommend disabling the WordPress core auto updates for the major versions. An upgrade from 4.9.8 to 4.9.9 doesn’t hurt, but an upgrade from 4.9 to 5 can cause issues.
Please install this plugin, it will bring up the old WordPress editor back and thus the FV Player button will keep working before we get around to add support for Gutenberg (the new WordPress editor); https://wordpress.org/plugins/classic-editor/
Thanks,
Martin7 years ago in reply to: I can’t had shortcode with divi theme