Closed (fixed)
Project:
SWF Tools
Version:
6.x-1.3
Component:
SWF Tools
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
28 Nov 2008 at 01:27 UTC
Updated:
16 May 2024 at 00:49 UTC
Jump to comment: Most recent
Comments
Comment #1
Stuart Greenfield commentedDo you have a link to a live page where this is happening? Or can you post a code extract from the code that is producing the player? It sounds like the "autoPlay" parameter is not getting to false, but not sure why that should be.
Also double check that on your FlowPlayer settings page autoPlay is showing as False.
Comment #2
Anonymous (not verified) commentedHi Stuart,
You can see the video here: http://drupal.brat.info/
And here's the code that produces it:
Autoplay setting for FlowPlayer is set to false.
Comment #3
Anonymous (not verified) commentedJust to let you know:
As the site is going live soon, I've changed the settings to make the video play automatically (so as to remove the play button that does nothing).
I would still prefer it to not play automatically though...
Comment #4
Anonymous (not verified) commentedI just changed everything back to my preferred settings and the video still plays automatically, even though everything is set to 'Autoplay=false'. Any update on this issue?
Comment #5
Anonymous (not verified) commentedAny update on this?
Comment #7
Stuart Greenfield commentedThis looks like it is related to playback of FLV files that are missing metadata in their header (which is also the cause of #395502: No video in FlowPlayer3).
If I playback a known good flv locally, using
<swf file="test.flv" player="flowplayer_mediaplayer" autoPlay="false">Then I get a FlowPlayer with a play button in the middle, and it waits to be clicked before starting.
If I download your video file from brat.info and use the same filter
<swf file="welcome.flv" player="flowplayer_mediaplayer" autoPlay="false">then FlowPlayer ignores the autoPlay setting and starts automatically.
We know from the #395502 that welcome.flv doesn't have any metadata. Adobe Flash Media Server includes a little tool called
flvcheck. I ran that on welcome.flv and it reports Error: -119 Missing FLV metadata..If you run a repair, using
flvcheck -m welcome.flvit tries to repair the file by adding the missing metadata. If you run the repaired file through FlowPlayer then it behaves and it waits for you to click.So, I'd suggest grabbing a copy of Adobe Media Server (the development edition is free, although that is quite a big download just to get the flvcheck tool!). Alternatively there are a number of files that show up on Google, but I have no idea if they are any good!
For other readers - you can check if your flv file is missing metadata without using any special tools by opening it in a text or hex editor. There's a description here of what to do.
I am going to set this thread to fixed since we have almost certainly identifed the issue here, although please re-open it if needed.
Comment #8
Anonymous (not verified) commentedThat makes sense. Thanks for the help Stuart!
Comment #9
Anonymous (not verified) commentedFor anyone interested, I use Ubuntu so was trying to find a Linux .flv editor. I found YAMDI, and while it wanted me to compile the source code from the website myself, I also found it in the Synaptic Package Manager.
It doesn't have a GUI, but is very easy to use (just give it the original file and the new filename and it does the rest).
This seems to have fixed the problem with the video playing automatically! Now to see if FP 3 works...