Any Hana flv/FV Wordpress Flowplayer experts in the house?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jel
    Confirmed User
    • Feb 2007
    • 6904

    #1

    Any Hana flv/FV Wordpress Flowplayer experts in the house?

    ok so I'm converting a members area into wordpress & flv vids, and run into the following problems:

    FV Wordpress Flowplayer:
    Autoplays videos, no matter what the settings, or specific parameters within the post. I run this on quite a few blogs, with no such problem. Cannot figure out why it insists on auto-starting in this particular instance (wp 3.3.1, theme elements-of-seo) so attempted to use;

    Hana Flv Player:
    1. Can't set a startimage
    2. When playing, it brings up the first few lines of html from the tour index and overlays it on the video Now, the html is in another directory entirely (obviously, beings tour is on root) so that one is severely doing my nut in.

    Anyone have any ideas?
  • AdultKing
    Raise Your Weapon
    • Jun 2003
    • 15601

    #2
    FV Wordpress Flowplayer has an autoplay parameter

    [flowplayer src='example.flv' autoplay=true]

    or

    [flowplayer src='example.flv' autoplay=false]

    Why not provide MP4 instead of FLV so a wider selection of users can view them ?
    Last edited by AdultKing; 04-30-2012, 02:15 AM.

    Comment

    • Jel
      Confirmed User
      • Feb 2007
      • 6904

      #3
      yeah, autoplay is set to false, and even additionally stipulating false within the post doesn't work. I'm thinking it might be the theme actually, basically because I can't think wtf else it can be.

      I'm not an expert by any means on the best format to use - what are the limitations of flv? I basically went for what youtube use, thinking that's pretty popular, and almost everyone can view youtube; whichmembers/users are not going to be able to view flvs? Thanks

      Comment

      • AdultKing
        Raise Your Weapon
        • Jun 2003
        • 15601

        #4
        Originally posted by Jel
        yeah, autoplay is set to false, and even additionally stipulating false within the post doesn't work. I'm thinking it might be the theme actually, basically because I can't think wtf else it can be.

        I'm not an expert by any means on the best format to use - what are the limitations of flv? I basically went for what youtube use, thinking that's pretty popular, and almost everyone can view youtube; whichmembers/users are not going to be able to view flvs? Thanks
        People on iPads can't view FLV for example.

        As for Flowplayer, which version are you using ?

        Comment

        • Darkhorse
          Horsing Around
          • Sep 2002
          • 5885

          #5
          Originally posted by Jel
          Hana Flv Player:
          1. Can't set a startimage
          2. When playing, it brings up the first few lines of html from the tour index and overlays it on the video Now, the html is in another directory entirely (obviously, beings tour is on root) so that one is severely doing my nut in.

          Anyone have any ideas?
          What is the current code you are using for Hana? Just so I can see if there is any issue with it.

          Comment

          • Jel
            Confirmed User
            • Feb 2007
            • 6904

            #6
            ok it was the theme, damn what a pita.

            and really ipads/flv? There's something I just learned. These people can't see youtube vids?

            Comment

            • Jel
              Confirmed User
              • Feb 2007
              • 6904

              #7
              Originally posted by Darkhorse
              What is the current code you are using for Hana? Just so I can see if there is any issue with it.
              [hana-flv-player video='fullpathto_source.flv' splash='fullpathto_source.jpg' /]

              Comment

              • AdultKing
                Raise Your Weapon
                • Jun 2003
                • 15601

                #8
                Originally posted by Jel
                ok it was the theme, damn what a pita.

                and really ipads/flv? There's something I just learned. These people can't see youtube vids?
                Youtube video works fine on an iPad. Youtube uses a HTML5 player to present different formats such as H.264. All Youtube content was transcoded to H.264 some time ago.

                Comment

                • DamianJ
                  Too lazy to set a custom title
                  • Jul 2006
                  • 15808

                  #9
                  [QUOTE=Jel;18916352
                  and really ipads/flv? There's something I just learned. These people can't see youtube vids?[/QUOTE]

                  Flash doesn't work on any iOS device.

                  h.264 ftw.

                  Comment

                  • Jel
                    Confirmed User
                    • Feb 2007
                    • 6904

                    #10
                    Originally posted by AdultKing
                    Youtube video works fine on an iPad. Youtube uses a HTML5 player to present different formats such as H.264. All Youtube content was transcoded to H.264 some time ago.
                    Ah ok. Wish I'd started this thread a couple of days ago Any specific parameters I should be setting for mp4? Original files are wmv and mpg

                    Comment

                    • Darkhorse
                      Horsing Around
                      • Sep 2002
                      • 5885

                      #11
                      Originally posted by Jel
                      [hana-flv-player video='fullpathto_source.flv' splash='fullpathto_source.jpg' /]
                      This will auto load a splash image from the movie if you use the code below.

                      Code:
                      [hana-flv-player
                      video="flvlinkhere"
                      player="4"
                      autoload="true" autoplay="false"
                      more_4="onStart: function() { 
                         if (!this.bufferingStopped){
                            if (!playersArray) var playersArray=new Array();
                            playersArray.push(this.id());
                            setTimeout( function() { name=playersArray.shift(); $f(name).stopBuffering(); },  1000 );
                            this.bufferingStopped = true; 
                         }  	
                      }" /]
                      This only works with Flowplayer v3 (player=?4″). Once it initiates the download , it will stop buffering after 1 second. If you want to increase the 1 second delay, change ?1000′ to something else. It?s in miliseconds.

                      I have got it working with other players (then flowplayer) Hope that helps you in some way.

                      Comment

                      • Jel
                        Confirmed User
                        • Feb 2007
                        • 6904

                        #12
                        Originally posted by Darkhorse
                        This will auto load a splash image from the movie if you use the code below.

                        Code:
                        [hana-flv-player
                        video="flvlinkhere"
                        player="4"
                        autoload="true" autoplay="false"
                        more_4="onStart: function() { 
                           if (!this.bufferingStopped){
                              if (!playersArray) var playersArray=new Array();
                              playersArray.push(this.id());
                              setTimeout( function() { name=playersArray.shift(); $f(name).stopBuffering(); },  1000 );
                              this.bufferingStopped = true; 
                           }  	
                        }" /]
                        This only works with Flowplayer v3 (player=?4″). Once it initiates the download , it will stop buffering after 1 second. If you want to increase the 1 second delay, change ?1000′ to something else. It?s in miliseconds.

                        I have got it working with other players (then flowplayer) Hope that helps you in some way.
                        Ok thanks - for some reason that has got rid of the html code overlay, though it's not loading any splash image

                        Comment

                        • AdultKing
                          Raise Your Weapon
                          • Jun 2003
                          • 15601

                          #13
                          Originally posted by Jel
                          Ah ok. Wish I'd started this thread a couple of days ago Any specific parameters I should be setting for mp4? Original files are wmv and mpg
                          I'd convert them all to H.264 then run MP4Box on them with this command

                          MP4Box -inter 500 filename

                          Running that command will make them all fast start MP4 files.

                          Do you have a Mac ? or a linux box capable of running MP4Box ?

                          Comment

                          • Jel
                            Confirmed User
                            • Feb 2007
                            • 6904

                            #14
                            me no speaky tech.

                            I see hana won't play the mp4 file I just created though '_'

                            Comment

                            • AdultKing
                              Raise Your Weapon
                              • Jun 2003
                              • 15601

                              #15
                              Originally posted by Jel
                              me no speaky tech.

                              I see hana won't play the mp4 file I just created though '_'
                              If you're on a Mac, download the excellent and free software called Handbrake to use to convert your videos to web optimized H264 m4v files.

                              Then run MP4Box on them all to shift the MOOV atom from the end to the beginning of the file.

                              (MP4Box needs to be compiled on your machine, I can give you instructions to do that if wanted)

                              That's how I deal with videos I need to convert to MP4 for web use. It's easy and I don't actually need to be hands on. Short of just starting the batch convert there's no work involved, just waiting.

                              Someone else might be able to tell you the best way to do it on Windows, I have no idea.

                              Comment

                              • Jel
                                Confirmed User
                                • Feb 2007
                                • 6904

                                #16
                                Originally posted by AdultKing
                                If you're on a Mac, download the excellent and free software called Handbrake to use to convert your videos to web optimized H264 m4v files.

                                Then run MP4Box on them all to shift the MOOV atom from the end to the beginning of the file.

                                (MP4Box needs to be compiled on your machine, I can give you instructions to do that if wanted)

                                That's how I deal with videos I need to convert to MP4 for web use. It's easy and I don't actually need to be hands on. Short of just starting the batch convert there's no work involved, just waiting.

                                Someone else might be able to tell you the best way to do it on Windows, I have no idea.
                                thanks, windows here

                                Comment

                                • Darkhorse
                                  Horsing Around
                                  • Sep 2002
                                  • 5885

                                  #17
                                  Originally posted by Jel
                                  thanks, windows here
                                  Handbrake will work on windows as well see below for download link.

                                  http://handbrake.fr/downloads.php

                                  I prefer Mediacoder for converting files but only because it's what I have used for ages now, Handbrake is good and everyone uses it as well.

                                  http://www.mediacoderhq.com/

                                  I take it you never sorted out the issues with the splash image?

                                  Comment

                                  • Jel
                                    Confirmed User
                                    • Feb 2007
                                    • 6904

                                    #18
                                    thanks mate will have a butchers at that now. Splash image - nope. I'll get this sorted then go from there

                                    Comment

                                    • Jel
                                      Confirmed User
                                      • Feb 2007
                                      • 6904

                                      #19
                                      MP4Box help would be appreciated also

                                      Comment

                                      • Darkhorse
                                        Horsing Around
                                        • Sep 2002
                                        • 5885

                                        #20
                                        Originally posted by Jel
                                        MP4Box help would be appreciated also
                                        Never used that myself, so hopefully Adultking can help you there

                                        Comment

                                        • Jel
                                          Confirmed User
                                          • Feb 2007
                                          • 6904

                                          #21
                                          ok installed that and YAMB, google search pointed me in the direction of just running it through 'mux' which is what I've done - did I do good, or did I do baaad?

                                          Comment

                                          • Jel
                                            Confirmed User
                                            • Feb 2007
                                            • 6904

                                            #22
                                            ah yep sorry, got mixed up there

                                            Comment

                                            • AdultKing
                                              Raise Your Weapon
                                              • Jun 2003
                                              • 15601

                                              #23
                                              I don't use Windows but I did some research for you.

                                              MP4Box will run on Windows.

                                              You can download MP4Box for Windows here

                                              http://adultking.co.uk/software/MP4B....6-rev2735.zip

                                              (Note: I did not compile this)



                                              Run the following commands on each file:

                                              MP4Box.exe -inter 500 filename.mp4

                                              This will shift the MOOV atom to the front of the file allowing fast start and pseudo streaming.

                                              MP4Box.exe -hint filename.MP4

                                              This adjusts the MP4s metadata to allow for Flash players to play them right away.

                                              You run this program from the command line, so get into Command on your Windows computer.

                                              Comment

                                              • Jel
                                                Confirmed User
                                                • Feb 2007
                                                • 6904

                                                #24
                                                awesome, many thanks - 1 last thing, does Hana play mp4 format ok once these processes are done? Or do I need a different player?

                                                Comment

                                                • AdultKing
                                                  Raise Your Weapon
                                                  • Jun 2003
                                                  • 15601

                                                  #25
                                                  Originally posted by Jel
                                                  awesome, many thanks - 1 last thing, does Hana play mp4 format ok once these processes are done? Or do I need a different player?
                                                  I use Flowplayer for MP4 files. I am not familiar with Hana as we're happy with Flowplayer so don't explore using anything else.
                                                  Last edited by AdultKing; 05-01-2012, 02:57 AM.

                                                  Comment

                                                  • Jel
                                                    Confirmed User
                                                    • Feb 2007
                                                    • 6904

                                                    #26
                                                    cool, hana played the first converted file fine, but damn, still no splash image ><

                                                    Comment

                                                    • AdultKing
                                                      Raise Your Weapon
                                                      • Jun 2003
                                                      • 15601

                                                      #27
                                                      Originally posted by Jel
                                                      cool, hana played the first converted file fine, but damn, still no splash image ><
                                                      IMHO the best splash image is a created splash image. This involves capturing a frame from the video and then saving it as an image.

                                                      You can do this with VLC by using the snapshot menu option.

                                                      Comment

                                                      • Jel
                                                        Confirmed User
                                                        • Feb 2007
                                                        • 6904

                                                        #28
                                                        yeah, though it's not loading when I set startimage= or splash= in fv/hana :|

                                                        Comment

                                                        • Darkhorse
                                                          Horsing Around
                                                          • Sep 2002
                                                          • 5885

                                                          #29
                                                          Originally posted by Jel
                                                          yeah, though it's not loading when I set startimage= or splash= in fv/hana :|
                                                          If you want can take a look and see if I can fix that, email is below.

                                                          pinkjunky'at'gmail.com

                                                          Comment

                                                          • Jel
                                                            Confirmed User
                                                            • Feb 2007
                                                            • 6904

                                                            #30
                                                            Thanks mate, will convert all the content, get it all up etc and give you a shout as and when - much appreciated

                                                            Comment

                                                            • Darkhorse
                                                              Horsing Around
                                                              • Sep 2002
                                                              • 5885

                                                              #31
                                                              Originally posted by Jel
                                                              Thanks mate, will convert all the content, get it all up etc and give you a shout as and when - much appreciated
                                                              Not a problem buddy.

                                                              Comment

                                                              • Jel
                                                                Confirmed User
                                                                • Feb 2007
                                                                • 6904

                                                                #32
                                                                I suck at the tech... Sent you an email

                                                                Comment

                                                                • Jel
                                                                  Confirmed User
                                                                  • Feb 2007
                                                                  • 6904

                                                                  #33
                                                                  Originally posted by AdultKing
                                                                  I don't use Windows but I did some research for you.

                                                                  MP4Box will run on Windows.

                                                                  You can download MP4Box for Windows here

                                                                  http://adultking.co.uk/software/MP4B....6-rev2735.zip

                                                                  (Note: I did not compile this)



                                                                  Run the following commands on each file:

                                                                  MP4Box.exe -inter 500 filename.mp4

                                                                  This will shift the MOOV atom to the front of the file allowing fast start and pseudo streaming.

                                                                  MP4Box.exe -hint filename.MP4

                                                                  This adjusts the MP4s metadata to allow for Flash players to play them right away.

                                                                  You run this program from the command line, so get into Command on your Windows computer.

                                                                  Ok couple of issues -

                                                                  1. converted via handbrake to m4v, no problem there, but then using mp4box & command, with those parameters left videos not loading/playing, so I gave up on that and have no pseudo-streaming (when you can 'fast forward to point x in a video I assume you mean by pesude-streaming?)

                                                                  2. when viewing on an android smartphone, using my home wifi connection (so speed is/should be fine), the video freezes after a few seconds, though audio continues. Any idea what that problem is?

                                                                  Comment

                                                                  • Jel
                                                                    Confirmed User
                                                                    • Feb 2007
                                                                    • 6904

                                                                    #34
                                                                    Also; using handbrake to optimize for universal devices/web optimized = it spits it out in m4v, which using mp4box, doesn't do what I need it to do.

                                                                    Handbrake spitting out in mp4, and then using mp4box means the vids start/pseudo-stream fine on my PC, but not on my mobile device.

                                                                    Obviously I'm doing something wrong, the question is, what?

                                                                    Comment

                                                                    • AdultKing
                                                                      Raise Your Weapon
                                                                      • Jun 2003
                                                                      • 15601

                                                                      #35
                                                                      Originally posted by Jel
                                                                      Ok couple of issues -

                                                                      1. converted via handbrake to m4v, no problem there, but then using mp4box & command, with those parameters left videos not loading/playing, so I gave up on that and have no pseudo-streaming (when you can 'fast forward to point x in a video I assume you mean by pesude-streaming?)
                                                                      What settings are you using in Handbrake ? It's unlikely that MP4Box will kill the video without reporting an exception.


                                                                      2. when viewing on an android smartphone, using my home wifi connection (so speed is/should be fine), the video freezes after a few seconds, though audio continues. Any idea what that problem is?
                                                                      What if you play it on another device ?

                                                                      Comment

                                                                      • AdultKing
                                                                        Raise Your Weapon
                                                                        • Jun 2003
                                                                        • 15601

                                                                        #36
                                                                        Originally posted by Jel
                                                                        Also; using handbrake to optimize for universal devices/web optimized = it spits it out in m4v, which using mp4box, doesn't do what I need it to do.

                                                                        Handbrake spitting out in mp4, and then using mp4box means the vids start/pseudo-stream fine on my PC, but not on my mobile device.

                                                                        Obviously I'm doing something wrong, the question is, what?
                                                                        Use Handbrake for web optimized then simply rename the .m4v files to .mp4 the run MP4Box on them. The file name doesn't matter.

                                                                        Comment

                                                                        • Jel
                                                                          Confirmed User
                                                                          • Feb 2007
                                                                          • 6904

                                                                          #37
                                                                          Thanks mate;

                                                                          I did note it kept saying Track ID 3 disabled:



                                                                          Is that correct?
                                                                          Last edited by Jel; 05-18-2012, 01:38 AM.

                                                                          Comment

                                                                          • AdultKing
                                                                            Raise Your Weapon
                                                                            • Jun 2003
                                                                            • 15601

                                                                            #38
                                                                            Originally posted by Jel
                                                                            Thanks mate;

                                                                            I did note it kept saying Track ID 3 disabled:



                                                                            Is that correct?
                                                                            Try not running the -hint option and only using -inter 500 and see if that works.

                                                                            Comment

                                                                            • Jel
                                                                              Confirmed User
                                                                              • Feb 2007
                                                                              • 6904

                                                                              #39
                                                                              yeah just trying that now as it happens, using the -hint is stopping it from playing at all until it's fully auto-loaded

                                                                              Comment

                                                                              • Jel
                                                                                Confirmed User
                                                                                • Feb 2007
                                                                                • 6904

                                                                                #40
                                                                                nah can't get it to pseudo-stream at all, no worries.

                                                                                Comment

                                                                                • Jel
                                                                                  Confirmed User
                                                                                  • Feb 2007
                                                                                  • 6904

                                                                                  #41
                                                                                  oh, android issue was my phone - for some reason it was playing up, I can view in android now, just gotta check on the iphone, and vids will be able to be played by all, so thanks for that

                                                                                  Comment

                                                                                  • Jel
                                                                                    Confirmed User
                                                                                    • Feb 2007
                                                                                    • 6904

                                                                                    #42
                                                                                    ok so no go on the iphone, could use some help with this. Vids converted from wmv using handbrake, settings 'universal' & 'web optimized', m4v as the output.

                                                                                    Simply rename mp4, or?

                                                                                    Comment

                                                                                    • Jel
                                                                                      Confirmed User
                                                                                      • Feb 2007
                                                                                      • 6904

                                                                                      #43
                                                                                      bump for timezone difference.

                                                                                      Comment

                                                                                      • Jel
                                                                                        Confirmed User
                                                                                        • Feb 2007
                                                                                        • 6904

                                                                                        #44
                                                                                        bump....

                                                                                        Comment

                                                                                        • Jel
                                                                                          Confirmed User
                                                                                          • Feb 2007
                                                                                          • 6904

                                                                                          #45
                                                                                          bump....

                                                                                          Comment

                                                                                          • Jel
                                                                                            Confirmed User
                                                                                            • Feb 2007
                                                                                            • 6904

                                                                                            #46
                                                                                            bump....

                                                                                            Comment

                                                                                            • tonyparra
                                                                                              Confirmed User
                                                                                              • Jul 2008
                                                                                              • 4568

                                                                                              #47
                                                                                              Omg you still having trouble with this ??? Just give me your domain and ill set it up for you

                                                                                              High Performance Vps $10 Linode
                                                                                              Manage your Digital Ocean, Linode, or Favorite Cloud Server. Simple, fast, and secure Server Pilot

                                                                                              Comment

                                                                                              • Jel
                                                                                                Confirmed User
                                                                                                • Feb 2007
                                                                                                • 6904

                                                                                                #48
                                                                                                not as simple as setting it up (I don't believe, anyway, I could be wrong of course) - the vids aren't playing on ipad/iphone as m4v or mp4. On a desktop & android they play fine.

                                                                                                Comment

                                                                                                • SGS
                                                                                                  Confirmed User
                                                                                                  • Dec 2002
                                                                                                  • 5176

                                                                                                  #49
                                                                                                  You are not using a Wowza server for the video are you?
                                                                                                  See sig...

                                                                                                  Comment

                                                                                                  • Jel
                                                                                                    Confirmed User
                                                                                                    • Feb 2007
                                                                                                    • 6904

                                                                                                    #50
                                                                                                    Hi mate, nope.

                                                                                                    Comment

                                                                                                    Working...