Forum Replies Created
-
-
Hello Sjoerd,
yes, YouTube videos can be used in a playlist, but at this point you can’t put in other kinds of videos (mixes playlist – self-hosted or Vimeo).
Demo of this was put up here: https://foliovision.com/player/demos/youtube-embedding
Thanks,
Martin10 years ago in reply to: Vimeo Splash Screen in WidgetHello Filip,
the splash screens are currently only parsed in posts. Unfortunately widgets don’t have the same save hooks as posts, so for now you have to put in the splash image manually.
Simply add splash=”http://your-site.com/your-image.jpg” to the shortcode. Or you can insert the shortcode with the image into some post and then move it over by copy-paste to the widget. More on that in step 9. here: https://foliovision.com/player/how-to-use-vimeo-pro
Thanks,
MartinHello Bruno,
I had a quick look at your code and there is no reason to use any get_fv_flowplayer_meta_data() function to determine the cue time. That whole block should be moved to the filter on fv_flowplayer_attributes.
The JavaScript bit should just be put into wp_footer with priority 999 if the post meta is found, no need to put any PHP into it etc.
If this is a programming project which you are working on, feel free to order our programming services here: https://foliovision.com/about/contact
Thanks,
MartinHello Bruno,
for start you can call in global $post and then check the post meta. So you can then assign the post meta value using “Custom fields” when you edit the post and then check if the value is present and only then execute the above code.
The script part should hook into wp_footer at priority of 999 so that the Flowplayer library is loaded.
Thanks,
MartinHello Bruno,
1) I see what you are trying to achieve. Let’s have a look at our Flowplayer API guide: https://foliovision.com/player/api-programming
First you need to define the “cue point” for 1 minute and 30 seconds. This can be achieved with the fv_flowplayer_attributes filter hook:
add_filter('fv_flowplayer_attributes','my_fv_flowplayer_cue');
function my_fv_flowplayer_cue( $attrs ) {
$attrs['data-cuepoints'] = '[90]'; // this expects an array of values in seconds
return $attrs;
}Then you can put in JavaScript like this:
flowplayer(function (api) {
api.bind('cuepoint', function(e,api,cue) {
if( cue.time == 90 ) {
// put in your actions here
}
} );
} );This will make it work for each player on your site. You can change the PHP part of it to only hook it in for certain players are required.
2) MaxCDN – could you please send us any documentation about how this works? There is good chance that MaxCDN will have a PHP library to work with this.
Thanks,
Martin10 years ago in reply to: __page-url__ in VAST URL not parsed10 years ago in reply to: Lightbox, Share buttons, Quality switchingHello Tim,
yes, you only enter one file URL in the shortcode and then our plugin will figure out the URLs of the other quality versions. What you put in will be the default. Please note that our player uses browser cookies to remember the quality settings.
Around 70% of browsers support MP4 video format. The rest needs the Adobe Flash plugin or WebM format.
Thanks,
Martin10 years ago in reply to: Lightbox, Share buttons, Quality switchingHello Tim,
3) Quality switching – if you have Vimeo Pro account, simply put your video on Vimeo and let our plugin take care of the rest. No need to host SD video in one location and the HD location in the other. No need to only host long videos on Vimeo.
By only using Vimeo, you will use a single workflow which will make things easier for you. We will improve our player to allow quality switching for Vimeo videos. This will also take care of the mobile video issue for you as Vimeo encodes for mobile separately.
Defaulting to mobile – I’m not sure about this, it appears your shortcode is setup like this (I omitted the splash screen etc.):
[fvplayer src="http://video.your-site/video-HD.mp4" src1="http://video.your-site/video-SD.mp4" src2="http://video.your-site/video-mobile.mp4" qsel="true"]
This is actually not needed and this must be what breaks the quality switching for you. You only need to enter:
[fvplayer src="http://video.your-site/video-HD.mp4" qsel="true"]
Then our plugin will see that you enabled quality switching for the video and that the video matches the -HD quality and will add up -SD and -mobile automatically.
This is not perfect, as if you skip the mobile version for one video, it will still show the mobile quality button. However our aim was to provide a simple workflow. We recommend to follow the same practice for each video.
Thanks,
Martin10 years ago in reply to: Lightbox, Share buttons, Quality switchingHello Tim,
2) Yes, it’s in the style.css file of your template (which is “Newspaper”.
3) You are right that it won’t work with the Vimeo Pro video URLs. That’s currently a limitation. We will work on making this work with our Vimeo integration.
Thanks,
Martin10 years ago in reply to: __page-url__ in VAST URL not parsedHello Mahmood,
I see that you didn’t replaced the [LR..] tags in the URL with their equivalents. I also see they use [LR_AUTOPLAY] which is not supported yet.
So we fixed this and released version 0.2.8.1 – the [LR…] tags now get automatically filled in and [LR_AUTOPLAY] is set to 1 if the video was auto-played.
Thanks,
Martin10 years ago in reply to: Lightbox, Share buttons, Quality switchingHello Tim,
thank your for the details!
1) Facebook share link – the link only contains the page URL and nothing else. So if Facebook generates improper description for the share it’s caused by your website. I can’t test this with your test post as it’s private (it says “There is no excerpt because this is a protected post.”).
I see you use Yoast WordPress SEO plugin – so I’m a bit surprised it dosn’t work properly for you.
Can you copy what the description looks like on Facebook?
2) Lightbox issue – this is caused by your theme which contains different styling for colobox Lightbox library (which we use).
So we should change our Colorbox prefix – that will change the element IDs and will be more resilient. We will work on that. As a quick fix you can comment out the Colorbox CSS rules in your theme CSS (look for “Gallery popup”, that’s where the section starts).
3) Quality switching – it appears you provided your MP4 file from two locations:
video.your-domain.com – containing only your HD video
cdn.your-domain.com – containing only your SD videoUnfortunately this is not how it works and I see what you tried to do (provide URL for each quality version hoping that it will be picked up by the matching quality setting), but I believe what we have is simple to use as well:
You need to put your video at URL like ‘http://video.your-domain.com/your-video-HD.mp4’ and then put the SD version into the same location, only change the “-HD” part of the file name to “-SD”: ‘http://video.your-domain.com/your-video-SD.mp4’
So when you have a look at the video directory listing, you should see:
your-video-HD.mp4
your-video-SD.mp4
your-video-mobile.mp4All of them should be on (nearly) the same URL:
‘http://videos.my-site.com/lessons/my-lesson-HD.mp4’
‘http://videos.my-site.com/lessons/my-lesson-SD.mp4’
‘http://videos.my-site.com/lessons/my-lesson-mobile.mp4’Then it will work perfectly, as you can see on our demo: https://foliovision.com/player/demos/flowplayer-quality-switching
Please let us know if it makes sense now.
Thanks,
Martin10 years ago in reply to: __page-url__ in VAST URL not parsedHi Mahmood,
we just released FV Player VAST version 0.2.8 which fixes this issue (it was a typo which escaped my attention).
Thanks,
Martin10 years ago in reply to: Lightbox, Share buttons, Quality switchingHello Tim,
as you own the FV Flowplayer license, could you please send the exact URL on your website where we can see these issues? That will make troubleshooting much easier. We will keep the URL private if you wish to.
1) Lightbox styling problem – this looks like a conflict in CSS. Could be fixed by reenforcing our CSS.
2) Facebook descriptions – this might be caused by some plugin conflict. We should be able to put in better filtering for any shortcodes etc. which don’t make much sense to be used in short post descriptions.
3) Quality switching – if you are using the Vimeo Pro video URLs, then this could in theory work, but the signature changes for each file, so unfortunately it won’t work.
If you use our integration then this is something which we need to add. At this point, the mobile devices get the mobile quality video automatically, but there is no manual selection.
4) Could you please let us know which instructions should be improved? We will be more than happy to work on these and make this work for you.
Thanks,
MartinHello boom360,
you need to put up the splash image, you can see this in the 2nd step here: https://foliovision.com/player/user-guide
If you would like an automated splash image, it could be done server side (ffmpeg which won’t run on most shared hosting environments) or it could be done using auto buffering (currently not supported by our plugin, but on the list – however this might not work in all the browser as HTML5 video support in each browser is a bit different).
If you want to save yourself from a lot of trouble (video encoding, splash screens, video hosting, mobile support), you can purchase FV Flowplayer license and then you will be able to embed YouTube and Vimeo videos using our player.
Thanks,
Martin10 years ago in reply to: Turn off social sharing for members areaHello Brian,
share bar (and embedding) can be disabled in Settings -> FV WordPress Flowplayer -> Player Skin -> Disable sharing.
Thanks,
Martin10 years ago in reply to: Subtitles in playlistHello exilod,
unfortunately this is not supported by core Flowplayer at this point. It should be available in next major version, which might be out in a couple of months. Other playlist improvements should be part of it as well (like mixing video types).
Thanks,
Martin10 years ago in reply to: Different VAST tag for some videosHello songsrpeople,
could you please confirm that you are using version 0.2.7.10?
Then look for following message “Add More for ad waterfall-loading (?). Click here for a list of URL tags if your ad network requires dynamic URL.” right below the “VAST URL” field.
Thanks,
Martin10 years ago in reply to: Different VAST tag for some videosHello songsrpeople,
it appears that you inserted one of the VAST URLs into the ad field which accepts HTML only, like in step 5.: https://foliovision.com/player/adding-ads
To properly configure multiple VAST ads with waterfall loading follow the steps:
1) open Settings -> FV Player VAST
2) paste your first VAST URL into the “VAST URL” field and make sure proper “Engine” is selected.
3) click “Add More” and another row will appear
4) insert your second VAST URL into this new row and pick the right engine againThanks,
MartinHello David,
our plugin allows you to specify noindex on per-post(page) basis. You just have to enable the feature in advanced options and it might be dangerous to your site SEO if you use it improperly: https://foliovision.com/2013/03/fv-simpler-seo-noindex-feature
Thanks,
Martin10 years ago in reply to: Different VAST tag for some videosHello songsrpeople,
the new version 0.2.7.10 was just released. You should see it in your upgrades soon, or you can grab it at https://foliovision.com/edit
We still need to document this, but the user should be pretty straight forward, just check the plugin settings and it should be obvious.
Thanks,
Martin10 years ago in reply to: Different VAST tag for some videosHello songsrpeople,
we updated the documentation with this, please see the step number 6.: https://foliovision.com/player/vast/player-vast-use
The new version of our plugin will allow you to use multiple ad tags at once – meaning that playing the video will load the first one and if it’s empty, it will try the second one and so on.
Thanks,
Martin10 years ago in reply to: How to change subtitle font size?Hello exilod,
thank you for the suggestion, in the meantime you can use CSS like this:
.flowplayer .fp-subtitle p {
background-color: rgba(255, 255, 255, 0.2);
}To remove it completely, just put in “background-color: transparent;”.
Thanks,
Martin10 years ago in reply to: ver 2.1.2 start video muted10 years ago in reply to: How to change subtitle font size?Hello Cinetime,
this setting was added in version 2.3.5 which we just released. Check the following: Settings -> FV WordPress Flowplayer -> Player Skin -> Subitle Font Size.
Thanks,
Martin10 years ago in reply to: changing logo position in lightbox player10 years ago in reply to: 100% quartile is not workingHello Jonathan,
I used your test and and I’m attaching screenshot of JavaScript console in Chromium (open-source version of Google Chrome) and Firefox with Firebug.
1) Notice that the AdVideoComplete event is present.
2) However notice that there is a failed request to htttp://as3_100/ Next open up the tag http://shadowcdn-01.yumenetworks.com/ym/1B3uA91O2152/1349/HifvrHol/vpaid_as3.xml in your web browser and check CDATA from Tracking event=”complete”. It says exactly that.
So it seems like this URL is not properly translated into a real URL, while it works for other Tracking events.
https://foliovision.com/downloads/yume-tracking-complete-fail.png
https://foliovision.com/downloads/yume-tracking-complete-fail-network.png3) This all could indicate a problem bug at this point I’m not sure if it’s a problem on our side or in the VPAID ad unit itself.
I had a look at the VPAID inspector as suggested and I’m seeing the same error with “as3_100/” in there: https://foliovision.com/downloads/yume-tracking-complete-fail-google.png
Could you please send this back to YuMe?
Thanks,
Martin10 years ago in reply to: 100% quartile is not workingHello Jonathan,
thank you for sending your password protected site privately.
I had a look and I’m seeing these 5 events as the video ad plays:
`YuMe VPAID Wrapper event >> AdVideoStart
YuMe VPAID Wrapper event >> AdVideoFirstQuartile
YuMe VPAID Wrapper event >> AdVideoMidpoint
YuMe VPAID Wrapper event >> AdVideoThirdQuartile
YuMe VPAID Wrapper event >> AdVideoComplete`Please have a look (or better send it to YuMe) at chapter 4.9.9 here: http://www.iab.net/media/file/VPAIDFINAL51109.pdf
It says: “AdVideoStart, AdVideoFirstQuartile, AdVideoMidpoint,
AdVideoThirdQuartile, AdVideoCompleteThese five events are sent by the ad to notify the player of ad’s video progress. They match the VAST [4] events of the same names, as well as the “Percent complete” events in Digital Video In-Stream Ad Metrics Definitions [2], and must be im plemented to be IAB compliant. These strictly apply to the video portion of the ad experience, if any.”
Notice that there is no even for “100% quartile” or “AdVideoFourthQuartile”, but there is “AdVideoComplete” and that one fires properly as far as I can see.
Thanks,
Martin10 years ago in reply to: 100% quartile is not workingHello Jonathan,
could you please provide a URL where we can see your ads playing? Is there any Yume test ad which we can use?
Thanks,
Martin10 years ago in reply to: ver 2.1.2 start video mutedHello Matthew,
we found the issue here. The fix will be included in the next release, or as a hotfix you can change api.mute() to api.mute(true) in fv-flowplayer.min.js.
Thanks,
Martin10 years ago in reply to: How to change subtitle font size?Hello Cinetime,
we might just add this as an setting in the plugin. We will discuss this in our team.
Thanks,
Martin10 years ago in reply to: Translate name of the fields to portugueseHello Marcelo,
you can edit this in the plugin files but then you must remember to block the plugin updates (change the version number to “1000” in fv-testimonials.php.
However our plugin doesn’t contain the fields which you mentioned: “Full Name”, “Email”, “Company Name”, “Company Website”, “Heading”, “Testimonial”, “Photo”
Perhaps you are using some other plugin?
Thanks,
Martin10 years ago in reply to: Protection video from downloadHello Nizami,
I see you purchased the FV Flowplayer license, so there is nothing that should stop you from fully using the potential of your Vimeo account.
Please check our full step-by-step guide here and let us know if you have any questions: https://foliovision.com/player/how-to-use-vimeo-pro
Thanks,
Martin10 years ago in reply to: Translate name of the fields to portugueseHello Marcelo,
thank you for your interest in our plugin!
Unfortunately we haven’t publicly updated this plugin for a long time. We are currently working on a new version which we already using for some of our websites.
Once the new version is out, we will remember to add the language hooks.
Thanks,
MartinHello Chenille,
this would be possible. We have done a similar feature for one of our clients, but it’s depending on the page scroll position – the video which is in the center plays, as soon as you scroll away it gets paused.
The key to success here is to have the videos auto preload and then it’s easy to hook in play() action on the right JavaScript event: https://foliovision.com/player/api-programming
We will discuss this feature in our team, perhaps we would like to make it a part of the plugin.
Thanks,
MartinHello Matthew,
we fixed the autoplay bug and added multiple fallback VAST tags and we will release the new version as soon as we finish testing.
The demo of the multiple fallback VAST tags can be seen here: https://foliovision.com/player/demos/vast-vpaid-ads
Thanks,
MartinHello Matthew,
we should be able to take care of these issues later this week (mainly the autoplay bug).
However could you please post any website where the ads start muted? I wonder what kind of user interface could be used to turn the ad sound on.
Thanks,
MartinHello Matthew,
we should be able to take care of these issues later this week.
Thanks,
MartinHello Matthew,
we are working on the Multiple fallback ads and that slowed down our progress on autoplay fix.
Regarding the ad volume setting – are you sure your ad network will permit that? They might not like it. We will have to think about it some more, like what user interface could be used for it and so on.
Thanks,
Martin10 years ago in reply to: Ads stopped workingHello Thorin,
as you are our licensed user, I checked the issue on your site directly. The ad was loading, but it was not visible as it was using max-width and max-height (apparently this causes display issues with your template). We used that to make sure the ad container is only as big as the player.
However since FV Flowplayer 2.3.3 this is no longer needed as we check the player dimensions before showing the ad and only show the ad if it’s big enough.
We fixed this to static dimensions in 2.3.4 which was released now.
Thanks,
MartinHello Khoi,
as you are our licensed user, we were able to have a look at your website directly and figured out this is caused by the new popup and ad encoding which we use to make the ad codes work in WordPress shortcodes.
The fix for this issue will be released in a new version today. Thank you for your co-operation!
Thanks,
Martin10 years ago in reply to: wp is null error on admin sectionHello Manish,
finally we were able to replicate this bug. It will be fixed in the next version.
Thanks,
Martin10 years ago in reply to: Skip button for VAST adsHello Jonathan,
this document should help you to get this feature: https://support.google.com/dfp_premium/answer/3376934?hl=en
We could add this feature into our plugin, but we need to be sure it’s permitted by the ad network. You should ask your ad network if you can enable such feature if it’s not provided by the ad unit itself (described in above link).
Thanks,
MartinHello Khoi,
1) The license key won’t remove the logo on your localhost, as it’s for your actual domain.
The PageSpeed module appears to badly encode “var fv_flowplayer_popup = [];” into “var fv_flowplayer_popup = ;” on your website.
Could you please install the latest dev version of our plugin from here? We changed the way this variable is inserted, so it should not longer cause issue with your server setup: https://foliovision.com/downloads/fv-wordpress-flowplayer.dev.zip
2) If you say the video plays from localhost, but not from the live server, are you sure the video mime type is correct? Please use our video checker to report the exact video, it will stay private: https://foliovision.com/player/faq#properties-built-checker-report-playing
Can you also disable the “Prefer Flash player by default” option? It should make the video loading faster.
Thanks,
Martin10 years ago in reply to: Template Invert – RTLHello Mahdi,
are you use a RTL (Right-to-Left) language?
This might be caused by a declaration like this in your CSS:
body {
direction: rtl;
}If you want to revert that, simply add the following CSS rule:
.flowplayer {
direction: ltr;
}Thanks,
MartinHello Khoi,
on a second look, it seems like fv-flowplayer.min.js library is not recognizing the fv_flowplayer_conf variable which is defined using wp_localize_script.
Could you please let us know what plugin are you using for the PageSpeed JavaScript optimization?
Thanks,
MartinHello Khoi,
sorry about that, you use some Google Page speed plugin or module, could you please disable it for a minute or force refersh and see if that helps?
I also see that it converts var fv_flowplayer_popup = []; into var fv_flowplayer_popup= and that’s causing issues as well. We will fix that one.
Thanks,
Martin10 years ago in reply to: Ads stopped workingHello rehan007,
it works for us in landscape mode on Sony Xperia P with Android 4.0.4. The reported resolution is 960x540px (could you please check this using http://www.whatismyscreenresolution.com/ ?).
If it won’t show up in portrait mode, then it’s the desired behavior – as long as the player is too narrow to display the ad in its full dimensions. Otherwise the ad company might complain about that the ad gets cut off to narrower size.
I’m noticing a different bug though – your theme is putting in a <div> with class background-cover which seems to cover the video content during playback on Android. I’m not sure how to fix this aside from removing the element in the theme right now.
Thanks,
Martin10 years ago in reply to: Issues with SI CAPTCHA Anti-Spam pluginHello rehan007,
I’m not able to reproduce the problem. We use Akismet on most of our client websites.
Could you please send us the URL where we can see the issue? We won’t publish the URL if you want to keep it private.
Thanks,
Martin10 years ago in reply to: Ads stopped workingHello rehan007,
could you please check what is your configured ad width? Could you please check your mobile screen size using http://www.whatismyscreenresolution.com/ ?
We only show the ad code if the player is big enough to fit the ad.
Also, what mobile device are you using? Not all the devices allow us to fully control the video playback (iPad and Android 4.0 and above does, but not iPhone or older Android).
Thanks,
Martin10 years ago in reply to: Ads stopped workingHello Jorge,
please have a look at your browser error console or network traffic console to check if the request for the ads is happening or not.
Thanks,
MartinHello rehan007,
we will release it no later than on Monday.
In the meantime the workaround is to make sure the player aspect ratio matches the video aspect ratio. Or you can just install the dev version if you don’t have too many websites to maintain.
Thanks,
MartinHello Matthew,
thank you for your interest in our plugin!
1) Autoplay – thank you for the report, we will fix this.
2) Multiple fallback ads – we already have this on our list of features to add.
Thanks,
Martin10 years ago in reply to: Ads stopped workingHello rehan007 and parrjj01,
this should be fixed in next release, you can try it here: https://foliovision.com/downloads/fv-wordpress-flowplayer.dev.zip
We fixed how the ads load (the only load once the video start playing, no more loading into hidden div) and same goes for the popup feature.
We also fixed how it’s entered into shortcode. Just use our shortcode editor and you can include any HTML. No longer there is problem with src= something in the ad code.
Thanks,
MartinHello rehan007,
this should be fixed in next release, could you please check if it also happens with the latest dev version of FV Flowplayer? https://foliovision.com/downloads/fv-wordpress-flowplayer.dev.zip
Thanks,
Martin10 years ago in reply to: Simple ads like on YouTubeHello Viktor,
use Settings -> FV WordPress Flowplayer -> Ads -> Default Ad Code. That’s where you can enter a sitewide ad. Complete guide is here: https://foliovision.com/player/adding-ads
However you need to make sure that your ad company will be ok that the ad code loads into a hidden element and only becomes visible when the playback is started. Perhaps we could improve this and load the ad dynamically when it needs to be displayed.
It also shows up instantly, there is no 10 second delay.
Thanks,
Martin10 years ago in reply to: Problems on Windows Lumia PhoneHi Samik,
thank you for your input, so it appears core Flowplayer doesn’t play on your device either. We will have a look and see if we can figure this out. I have one more test in mind which might help, but I should be able to do test with your user agent.
Thanks,
MartinHello boom360,
does the ad work for you when you put it into Settings -> FV WordPress Flowplayer -> Ads -> Default Ad Code?
The ad code uses the src attribute, which is in conflict with WordPress shortcode parser. This is currently our limitation, but I may have just figured out a clever way of fixing this.
Please let us know if my suggestion helps or not.
Thanks,
Martin10 years ago in reply to: Ads stopped workingHello parrjj01,
normally ads like this only work good in Settings -> FV WordPress Flowplayer -> Ads -> Default Ad Code. If the ad code contains src=”” attribute, then WordPress thinks it’s the shortcode attribute and our player fails. But it seems like you were able to circumvent this by skipping “” altogether.
In our test, the above ad worked. If you think it’s because of FV Player Pro, please let us know what is your domain and what particular feature of the Pro plugin you use (CloudFront signed URLs, YouTube, Quality Switching etc.).
Thanks,
Martin10 years ago in reply to: How to change subtitle font size?Hello Exilod,
although there is no such setting available right now, you can use your CSS with the following selectors right now to accomplish what you need:
.flowplayer .fp-subtitle { /*this one is for subtitles in the normal player*/ }
.flowplayer.is-fullscreen .fp-subtitle { /*this one is for full-screen, so make the font bigger*/ }Thanks,
MartinHello Amanda,
this is caused by invalid volume setting. Please make sure that the Settings -> FV WordPress Flowplayer -> Player Skin -> “Default Volume” is a number between 0 and 1. 1 means that maximum volume will be used by default.
That should resolve your issues, could you please let us know how it goes?
We already created a fix for this issue, it will go out in the new plugin version.
Thanks,
MartinHello Amanda,
I just noticed the email, sorry about that. We will have a look now.
Thanks,
MartinHello Amanda,
please let us know when this is ready, we want to get this right for you.
Thanks,
MartinHello Eric,
please re-enter your domain in https://foliovision.com/edit -> My Products. I see you put in “202.3”, so I removed that domain as you probably made a mistake there.
Thanks,
MartinHello Meg,
we are already working on this, as we handle this in private support.
The reason why Flowplayer stops working in your lightbox is that your template (or your custom JavaScript code) clones the HTML into the lightbox. That breaks all kinds of JavaScript events and I would consider it a bad practice in general.
So we tried to add something into Flowplayer to help with this situation – if it detects it was cloned, it moves itself to the new instance, so it plays ok.
We have one more bug to fix – if you close the lightbox popup and open it again, it won’t display at all.
Thanks,
Martin10 years ago in reply to: Flowplayer logo showingHello Meg,
sorry about that, your TLD co.nz was not properly handled. I re-entered your domain name and now you should be getting the proper license key in https://foliovision.com/edit -> My Products.
Thanks,
MartinHello Amanda,
you can send it here, the thread is not published. Or you can send it to support@foliovision.com or using LastPass to martinv@foliovision.com.
Thanks,
MartinHello Amanda,
could you please let us know at what exact URL your video is not playing? We need to have a look if there is some JavaScript error.
We won’t publish the URL here if you don’t want us to. Let us know if it’s a membership website which requires us to log in.
Thanks,
Martin10 years ago in reply to: Custom Pre-rollHello Mateusz,
the pre-roll feature was added to FV Player Pro. It’s currently in beta testing, you can look for “Video Ads (Pro) (Beta)” in the Settings panel.
It allows you to add custom video ads in front of your videos. First you define them in the settings (video file URLs and the ad link) and then you enable them for your videos in the individual video settings (or add ads=”random” to the [fvplayer] shortcode).
We are still testing it on some client sites, once it’s fully tested, we will add user guide and all.
Thanks,
MartinHello all,
the pre-roll feature was added to FV Player Pro. It’s currently in beta testing, so if you know your way around new technologies, you can look for “Video Ads (Pro) (Beta)” in the Settings panel.
It allows you to add custom video ads in front of your videos. First you define them in the settings (video file URLs and the ad link) and then you enable them for your videos in the individual video settings (or add ads=”random” to the [fvplayer] shortcode).
We are still testing it on some client sites, once it’s fully tested, we will add user guide and all.
Thanks,
MartinHello Amanda,
does the video play for you here on our temporary test page? https://foliovision.com/video-test
What device are you using? Your report was sent from Windows 8.1 with Firefox 32. The video works for us in Firefox 32 on Windows 7.
Firefox is sometimes weird when playing mp4 on Windows. Have you tried restarting the browser? Have you tried closing any other browser? (I’m using also PaleMoon – a Firefox clone – and I found that these two interfere in MP4 HTML5 playback).
Thanks
Martin10 years ago in reply to: Problems on Windows Lumia PhoneHi Samik,
thank you, we might be closing in on the solution. Could you please let us know which on plays?
http://lifeinamovie.com/h/wmp3.html
http://lifeinamovie.com/h/wmp4.htmlCould you please also post your user agent string? You can find it here: http://www.whatsmyuseragent.com/
Thanks,
Martin10 years ago in reply to: Problem with Youtube Videos in LightboxHello David,
FV Player Pro version 0.1.15 is out, could you please let us know how it works for you?
It’s packed with new features like custom start/end time or custom video ads (pre-roll, post-roll), but these features are currently in beta testing.
Thanks,
Martin10 years ago in reply to: Problem with Youtube Videos in LightboxHello David,
we are fixing this in the upcoming release, hopefully we can release it today. We will notify you here.
Thanks,
MartinHello Lorran,
this is a bigger customization and requires some PHP skills:
If you want to generate the user info dynamically, then you can put it in via the fv_flowplayer_ad_html or fv_flowplayer_inner_html filter documented here: https://foliovision.com/player/api-programming
If you use the fv_flowplayer_ad_html filter, it will show up in a box which can be customized in the Settings -> FV Worpdress Flowplayer -> Ads section and you will also have to enter ad=”something” into the [fvplayer] shortcode to make sure it’s initialized.
If you use fv_flowplayer_inner_html, then you have to put in position: absolute on the resulting div to make it visible.
The most advanced solution would be to plug your PHP script into the subtitles attribute: https://foliovision.com/player/subtitles It would have to be php script on the server which would generate the required output.
Thanks,
MartinHello RikaNM,
we are creating a sales page for FV Player VAST here: http://foliovision.com/player/vast
Thanks,
MartinHello Amanda,
sorry about the delay, could you please use our video checker to report the exact video which is not playing? Here’s how you enable and use our video checker: https://foliovision.com/player/faq#properties-built-checker-report-playing
Thanks,
MartinHello Sandy,
this looks like an issue with your WordPress. You might want to have a look at some troubleshooting guide, like here: http://wordpress.stackexchange.com/questions/59763/how-to-fix-http-error-when-uploading-images
You can also try to upload something small (like an image) and see if that one goes well.
Thanks,
Martin10 years ago in reply to: Problems on Windows Lumia PhoneHi Samik,
let’s compare FV WordPress Flowplayer 2.2.22 and 2.3. Please let us know which one of these plays on your Windows Mobile Phone:
http://lifeinamovie.com/h/wmp1.html
http://lifeinamovie.com/h/wmp2.htmlThank you for your input!
Martin
Hello rehan007,
FV Player VAST license was added to your account. You will find it in your account in “My Products” section.
If you have a static (non-video) ad code which you want to show above the video, you can put it in Settings -> FV WordPress Flowplayer -> Ads. You should check if it’s ok if the ad code only appears once the video starts playing with your ad provider though.
Thanks,
Martin10 years ago in reply to: Problems on Windows Lumia PhoneHi Samik,
please send us URLs to your file, then we can figure out what could be breaking the playback – it might be an encoding issue or an issue with our player.
Thanks,
Martin10 years ago in reply to: Automated quality switchingHello Viktor,
you can find everything about our quality switching here: https://foliovision.com/player/switch-video-quality
Currently the limitation is that the use has to start the video playback and only then the quality can be switched. This approach has following issues:
1) If the use is on mobile device, the initial video load might be very slow or might fail to play at all (video resolution or MP4 profile too high for mobile). We are preparing a fix for this – we will let our users mark which of the video qualities is suitable for mobile and serve that to mobile user agents by default.
2) If the connection is too slow, the initial video load might take a lot of time. Perhaps we could add in a detection of user bandwidth based on the current page load and then default to the mobile video if it’s slow.
If you are using our advanced YouTube embedding provided by the FV Player Pro extension – it uses all the mechanisms as original YouTube player – that means mobile users get the appropriate video stream and quality.
Thanks,
MartinHello AdHocMediaSolutions,
if you want to join our FV Player VAST beta testing, please purchase our FV Flowplayer license and we will give you a test license: https://foliovision.com/player/download
Thanks,
Martin10 years ago in reply to: VAST VPAID ad tag in FlashHello songsrpeople,
support for tablets and mobile is on our list, while supporting iPad will be our priority. VPAID ads require Flash, so only VAST ads will be supported.
If you want to join our FV Player VAST beta testing, please purchase our FV Flowplayer license: https://foliovision.com/player/download
Thanks,
MartinHello Thomas,
thank you for your input on this!
Could you please let us know what Firefox version you are using?
Thanks,
Martin10 years ago in reply to: _fv_flowplayer data10 years ago in reply to: Conflict with WP Job ManagerHello elja,
so the permalinks of WP Job Manager now work when you create a new posts category (that’s when FV Top Level Categories flushes the rules), but the permalinks of WP Job Manager – Company Profiles get broken?
I had a look and the “WP Job Manager – Company Profiles” plugin class gets initialized on init. That’s quite unusual.
Could you please re-do the tweak form one of my posts above? https://foliovision.com/support/fv-top-level-categories/bug-reports/conflict-with-other-plugin#post-4022 Then try to add some post category and see if the WP Job Manager – Company Profiles pages still work and let us know. It helped on my test site.
Thanks,
Martin10 years ago in reply to: _fv_flowplayer dataHello David,
we were fixing the VAT form today and we fixed it before you replied here. So we will have another look tomorrow.
You can also buy the Pro support now and we will refund the tax afterwards when you send us the VAT details.
Thanks,
Martin10 years ago in reply to: Using Vimeo and YoutubeHello majorpakz,
thank you for the details.
The video player is supposed to be the original player from YouTube (that’s the basic embed code) – unless you have a FV Flowplayer license. Entering the license key will auto-install our Pro extension which then allows YouTube playback in the customized player.
Thanks,
Martin10 years ago in reply to: Vimeo on Windows mobileHello Greg,
2) Vimeo loading bug – please fix your Settings -> FV WordPress Flowplayer -> Player Skin -> Default Volume. As the tooltip says, you should “Enter number between 0 and 1, like 0.5”.
You are currently using “10” and that’s breaking IE11. When you fix that, your issues should disappear. We will put in a fix into next version of the plugin.
The previous versions of FV WordPress Flowplayer are available at https://wordpress.org/plugins/fv-wordpress-flowplayer/developers/
Thanks,
MartinHello all,
we support both VAST and VPAID now: https://foliovision.com/player/demos/vast-vpaid-ads
Thanks,
Martin10 years ago in reply to: VAST VPAID ad tag in FlashHello songsrpeople,
we added the VPAID support: https://foliovision.com/player/demos/vast-vpaid-ads
Thanks,
MartinHello rehan007,
FV Player VAST is a separate addon for FV WordPress Flowplayer. It adds support for both VAST and VPAID ads in pre-roll or mid-roll.
Hello AdHocMediaSolutions,
let us know if you are interested in beta testing of our plugin. It’s easy to use, the documentation is on our list of things to do.
Thanks,
Martin10 years ago in reply to: Vimeo on Windows mobileHello Greg,
1) The alignment issue must be then caused by your template. Perhaps we can add something to make sure our CSS is more resilient.
2) Vimeo loading bug – your homepage video works for me in Firefox on both Mac (32.0.2) and Windows (31.0, 32.0.2), but I can see issues in IE 11. However it works fine on our page: https://foliovision.com/player/how-to-use-vimeo-pro
I can see some error being triggered in the main FV Flowplayer library on your site, we will debug it tomorrow.
Thanks,
MartinHello rehan007,
1) We are behind on finishing the custom pre-roll video ads. Thank you for the suggestion about a skip button.
2) You can check our integration with both VAST and VPAID ads here. The ad codes used in the demo also provide the skip button: https://foliovision.com/player/demos/vast-ads
It’s done using FV Player VAST which is currently in beta testing, let us know if you are interested.
3) Custom skins – currently we only support the color settings. We tweaked the original skip created by Flowplayer.org, so it would be quite a bit of work to support all the skins.
Thanks,
Martin10 years ago in reply to: Quality switch on Ajax contentHello David,
thank you for the suggestion!
Were you able to tweak this on your current version and does it work for you? I’m asking as we are generating some of the player specific code in site footer, so if you only load the post content using Ajax, it might not have all the data it needs to operate. That’s something to improve.
It looks like quality switching should work as long as you don’t use it in palylist.
Thanks,
Martin10 years ago in reply to: Vimeo on Windows mobileHello Greg,
1) we just released FV WordPress Flowplayer 2.3 which might fix the issue first issue.
2) Do you see the same display bug here? There are two videos at the very bottom: https://foliovision.com/player/how-to-use-vimeo-pro
Thanks,
Martin10 years ago in reply to: Using Vimeo and YoutubeHello majorpakz,
could you please paste in the exact shortcode which you are using? What other plugins are you using on your website?
Thanks,
Martin10 years ago in reply to: How to create a video lightboxHello Daryl,
we promised we will add this feature at the start of this month, but we are only caught up with our work now, so we will work on adding it now.
Thanks,
Martin10 years ago in reply to: Using Vimeo and YoutubeHello majorpakz,
inserting YouTube videos with our plugin is the same as inserting any other video: https://foliovision.com/player/user-guide
If you want to enter it manually, you can just type in the shortcode like this:
[fvplayer src="https://www.youtube.com/watch?v=mzPxo7Y6JyA"]
Thanks,
Martin