HanaDaddy
Forum Replies Created
-
Hi can you provide the URL ? I will take a look.
Thanks
Forum: Plugins
In reply to: [Hana Flv Player] splash image e video controlsHello
You must have been using the player 3 (FLV Player maxi). It is not included since v2.7.1 due to the license issue. The player 4 (Flowplayer 4 ) is used if the player 3 does not exist. But the player 4 does not show the controls when flash image is used.v2.7.1 (04/11/2012):
Starting from V2.7.1 , FLV Player Maxi is no longer included by default because it is licensed under non GPL compatible licenses (CC, MPL 1.1). But you can still download and unzip it manually under your Hana FLV Player plugin path.You need to download the zip file from https://flv-player.net/players/maxi/download/ and unzip into the hana-flv-player plugin folder. The unzipped folder name must be ‘template_maxi_1.6.0’.
Or I recommend you to use the player 5.( MediaElement.js) .
Forum: Plugins
In reply to: [Hana Flv Player] Need Help with flow player 5I know , that was my mistake that I forgot to add the new flow player 5 option in the selection box. Just select one of the player from the selection box. Then after you create the shortcode, You can just replace the player attribute with ‘6’ to use flowplayer 5. I will fix that soon too.
Thanks.
[hana-flv-player video="https://wpmarketing.org/wp-content/plugins/hana-flv-player/hana_sleding.mp4" width="400" height="autow" player="6" /]
Forum: Plugins
In reply to: [Hana Flv Player] has_cap warningHello
I will fix this issue soon, but this error is supposed to show when WP_DEBUG is true//wp-config.php define('WP_DEBUG', true);
anyway, you can replace the ‘add_options_page’ line in hana-flv-player.php with these codes to fix it right away.
global $wp_version; if ( $wp_version < 2 ) $capability=8; else $capability='manage_options'; add_options_page($this->admin_setting_title,$this->admin_setting_menu, $capability, __FILE__,array(&$this,'hana_flv_options_page'));
Forum: Plugins
In reply to: [Hana Flv Player] Not Working in Chrome after installing WordPress 3.5I see you inserted the script tag within the <body> tag. You have to insert it within the <head> ~ </head> section.
Forum: Plugins
In reply to: [Hana Flv Player] Not Working in Chrome after installing WordPress 3.5yes, header.php would be the right place.
I will check out the media manager, but I really doubt that is affecting my plugin in anyway.
Forum: Plugins
In reply to: [Hana Flv Player] Not Working in Chrome after installing WordPress 3.5Not sure , but something is definitely not right.
flowplayer 3 javascript file should be included but your webpage does not have it. I don’t know why. I have seen some cases where security plugin removes the javascript tag added by other plugins. Not sure if this is the case.You can manually add this script tag into your theme file manually if you want to quick fix this.
<script type='text/javascript' src='https://lenonhonor.com/wp-content/plugins/hana-flv-player/flowplayer3/example/flowplayer-3.2.6.min.js'></script>
Thanks
Forum: Plugins
In reply to: [Hana Flv Player] Not Working in Chrome after installing WordPress 3.5Hello, If you are referring to the popup screen to add [hana-flv-player] shorttag, I tested myself but it worked OK with 3.5 for me.
Note that I only activated Hana Flv Player plugin when I tested. And usually any strange behavior is caused by conflict with other plugins.
I would like to inspect your page myself, but it would not be possible since it is under admin access.
For now, I suggest you to use below shorttag manually.
[hana-flv-player video=””
width=”400″
description=””
player=”5″
/]Thanks
Forum: Plugins
In reply to: [Hana Flv Player] [Plugin: Hana Flv Player] How to use on all browsers?Hello again, just to correct my statement.
For Firefox => mp4 is not supported natively with <video> tag therefore MediaElement.js automatically runs Flash player to play mp4 files.
Forum: Plugins
In reply to: [Hana Flv Player] [Plugin: Hana Flv Player] How to use on all browsers?Player 5 is MediaElement.js and it is said to play the video under iPad and iPhone. I am sorry I was not able to test myself because I don’t have either of the devices.
mp4 is not supported natively with <video> tag therefore MediaElement.js automatically runs Flash player to play mp4 files.
Thank you
Hello
Thanks for trying my plugin. However, Hana FLV player does not utilize custom fields (meta data) at all. I don’t know how you are experiencing such strange behavior, but probably other plugins are causing this. Please try to disable other plugins and try again.I did test and checked custom fields several times, but I didn’t see such custom fields (autoload, autoplay, autorewind…) are being created.
If you check the codex DOC (https://codex.www.ads-software.com/Custom_Fields), add_post_meta() must be used to insert a custom field. But , I never used ‘add_post_meta()’ function anywhere in my plugin.
Thanks.
Alvaro.
I am sorry, but Hana FLV Extension is not maintained by me. Please report it here. https://www.ads-software.com/extend/plugins/hana-flv-extension/Can you try to disable the Hana Flv plugin and see if the problem is resolved? I want you to check if this is really caused by my plugin.
Thanks.Hello, first I would like to thank you for through testing with various platform and browsers.
——————————-
Error.1 = Player shows up in post as a grey rectangle, no controls are seen.
>> I am unable to test since this is for Linux which I don’t have.
——————————-
Error.2 = Player shows up in post correctly, controls are seen, video is loaded with the proper length – but when it is played, the audio is heard but the screen remains black.
>> This is only occurred for Player 5 – mediaelement.js. I tried your shorttag myself with WP 3.4.2 and it worked OK. I was able to see and hear the audio too. I am not sure why your WP 3.4.1 showed video when WP 3.4.2 didn’t. One thing I noticed is the video file is big (over 100MB) and poorly encoded. This may be the cause of the problem. But it is impossible for me to troubleshoot.
——————————-
Error.3 = the above setup functions properly ONLY IF an absolute URL is passed as a parameter to the video’ tag. If a relative address is given (i.e. “video=’videos/KB_2011-08-07.flv’ “), the player shows up in the post, but the screen is black (as opposed to a frame from the video displayed when everything is fine) and the video clip length is listed as 0:00. This was observed with all 5 players and 3 OSs/4 browsers.
>> You have to use FULL absolute URL including ‘https://’. That’s a mandatory requirement. Because the URL itself will be used by the defined Flash video player or HTML5 , it’s something that I cannot help. (All the flash players included in my plugin are open source projects created by other developers. So they are not created by me) Some flash player might support relative path, but I strongly advise you to use absolute path all the time to avoid these kind of errors.——————————-
About the full screen feature: This is an issue with the player 5 – MediaElement.js itself. Please report this as a bug in the mediaelementjs.com support forum. Thank you.Hello, it’s really impossible to provide help without actually see the problem myself. Can you please provide the url of your webpage?