Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)
  • Thread Starter chiaroscuro1

    (@chiaroscuro1)

    I want to add to my post above. I fiddled around with my videos a bit and got one video to show without the black columns. I also double-checked and discovered that the aspect ratios for my videos are slightly different. The aspect ratio of the video that fits the player without showing black columns is roughly 5.8:3. The aspect ratios of the other videos are 4.8:3. and 4.66:3.

    Is there a way to customize the size of the player to fit videos with non conventional aspect ratios so vertical black columns to the left and right of the video don’t show in the player?

    If not, is there a way to change the color of the vertical black columns on the left and right of the videos to be white?

    Please also answer the question about fast forwarding in my post above.

    Thanks for your help!!

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    I am opening a new thread with the color change issue since the resizing issue is resolved.

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    Never mind about the resizing problem, that is fixed. However, I’m wondering if there is a way to change the color of the video player background from black to white? I’ve looked at all the skinning options and none seem to apply.

    I’m guessing that I need to change a hex color code value in this file: fv-wordpress-flowplayer/css/flowplayer.css. Can you tell me the specific name of the value I need to change to change the background color of the flowplayer video player from black to white?

    Ulrich,

    Yes, the code now works fine. And, now the solution is posted, so other people can see it who have this problem.

    Thanks for your help!

    Ulrich,

    Thanks for your very fast reply:).

    Yes, I tried the CSS code provided earlier in this post, but it doesn’t work. i would prefer to use CSS code since it is the easiest to use. I put it in the style.css sheet for my theme, since that is where I usually put css code.:

    .fp-embed {
    display: none
    }

    Any other ideas?

    Thanks!

    Can anyone who participated in this thread tell me what the solution to this issue is?

    I found this code to remove the embed icon on the video player on the flowplayer site: flowplayer.conf.embed = false;

    However, there are no instructions regarding where to put it!

    Thanks!

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    I figured out that the PJW MimeCode plugin I was using apparently doesn’t enter mimetypes into the htaccess file, which is needed to stream video. So, I entered them myself and that solved the problem with videos playing with some plugins and the native WordPress embedder. HOWEVER, I never did get the JW Player to show up in Firefox.

    i also figured out that Android does not support MP4 h.264 AAC coded videos, which is the industry standard. They support MP4 h.263 coded videos and basic h.264 AVC coded videos. The recommended fix for this is to download a third party video player like MX player from Google play to watch MP4 h.264 AAC coded videos on Android platforms..

    Thanks for your great support!

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    The behavior i described is definitely there. i just took a screenshot of it planning to attach it to this post, but i don’t see a way to add attachments on the WordPress forums. I am using a theme from Elegant themes which is responsive.

    The flexslider I am using is a part of the metaslider plugin. I’m not sure that the same coding for the Woo Flexslider would work with Metaslider Flexslider.

    Thanks for the heads up about the disabled right click.

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    I just looked at the other options offered in metaslider and they all have this issue, so even if I opted to use a different slider, it would not resolve this problem.

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    Hi,

    I have my host looking into this problem, so far with no success. However, I did find this troubleshooting page for the JWPlayer and it refers to needing to enter code in the header for the JWPlayer to appear on the page. However, it seems that this step does not apply to the free version of the player unless you want to use analytics.

    Is this true? Or should I have entered code in the header of my site in order for the JW Player to appear in all platforms. Currently, there is no code referring to the jwplayer in the header.

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    That’s interesting. The file is formatted in MP4 h.264, as I noted. And, I used a change mime type plugin to get the server to recognize MP4 files. I guess my next step is to pursue this problem with my host to see if the problem is caused by a server issue. So, I will do that, but please don’t mark this topic as resolved until I report back that this was the cause of the problem, since I don’t want to open another thread if it wasn’t.

    Thanks for your help!

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    I just loaded a WordPress theme and tried your plugin and I get the very same results that I reported above. Except now, the JW Player DOES show up in Firefox rather than flashing and disappearing, but if you try to play the video you get the message “error playing media, file not found.”

    So, I guess that this eliminates the theme I was originally using as the problem? Any other suggestions?

    Thread Starter chiaroscuro1

    (@chiaroscuro1)

    Deactivating all the plugins except JW Player didn’t help.

    In fact, for awhile the JWPlayer did the same thing in Safari that it is doing in Firefox, that is, you see the black box background for the player flash when the page loads and then it disappeared completely, leaving a white page. This happened, EXCEPT if you cleared the cache a few times, closed the Safari browser window completely and then opened it up again, then the JW Player loaded on the first try. However, for some unknown reason this new problem resolved itself and now it is back to loading a white page on the first page load and the JW Player on the second page load in Safari.

    I also discovered that the native WordPress video player seems to be the only one that works in Firefox. However, for Safari, the native player appears but won’t load the media, and in Android a non-responsive native player appears but when you try to play it you get the message, “sorry can’t play this video.” I know you don’t support problems with the native WordPress player, but thought this info might contribute to figuring out what the problem is.

    I have no idea how to write code, alchymyth, so I didn’t know I had to precede and end the code with those tags. Not only did that solve that problem, but I was able to swap out the message for my custom message, which now appears on my password protected pages.

    Thanks A LOT for your help, this fix will help many people!!!

    alchymyth,

    Thanks for the code. If added directly to the functions.php file like the fix that used to work, it breaks the site.

    If added to a new, blank, functions.php page in the child theme, the code weirdly appears above the header on every web page on the site. See: http://www.catalysthealthmedia.com

    This is the code that used to work by adding it to the bottom of the functions.php theme file prior to the WordPress 3.7x update. Can it be edited some way to make it work again?

    // Password Protected Page Message
    function custom_password_form($form) {
    $subs = array(
    ‘#<p>This post is password protected. To view it please enter your password below:</p>#’ =>

    ‘<p>CUSTOM PASSWORD MESSAGE</p></br></br>’,

    ‘#<form(.*?)>#’ => ‘<form$1 class=”passwordform”>’,
    ‘#<input(.*?)type=”password”(.*?) />#’ => ‘<input$1type=”password”$2 class=”text” />’,
    ‘#<input(.*?)type=”submit”(.*?) />#’ => ‘<input$1type=”submit”$2 class=”button” />’
    );

    echo preg_replace(array_keys($subs), array_values($subs), $form);
    }

    add_filter(‘the_password_form’, ‘custom_password_form’);

Viewing 15 replies - 1 through 15 (of 19 total)