Error in playing .flv files

Hi,
I'm new in FMS
Recently, i create an application to record videos from my camera and recorded it
But, when i tried to play it in an HTML, i met errors.
The .flv jumps to the end when the progress is in the middle.And i tried to play in an .exe, it plays well.
Could anyone help me to solve this problem? Is it the error from the .swf player in the HTML?
Regards.

Thank you for your reply. I have another question: If I had recorded a
stream video using rtmp, should i play it using rtmp? Or http is also fine?
Regards,
zblhero1
2011/3/8 Amit Kumar <[email protected]>
Its very difficult to say where is the issue unless we know about test.swf,
how it is subscribing to server to fetch the flv file. Is it possible for
you to paste here some code for test.swf. Issue is probably in test.swf as
it is playing fine with exe.
>
Regards,
Amit
>

Similar Messages

  • Flash CS5 unable to play .FLV files on Macbook Pro

    I have a colleague who is trying to put together a Flash package for me  on her macbook pro.  It needs to play an flv file. She is unable to play  flv files on her computer either in Flash or using the Adobe Media  Player. I have no problem playing the same files on my macbook pro,  we're both running the latest OS and have version 1.8 of Adobe Media  Player.
    She went to the Adobe site to download the latest version of Adobe  Media Player, hoping that might include whatever component is missing on  her system. Because of Adobe's decision not to distribute AMP that  didn't help.  She has Flash Professional CS5 11.0.2 on her system.  When  she imports an flv video into a Flash project and tries to play it she  gets an error message saying it can't stream the video. Note that the  video is on her hard drive, it is NOT on the internet so no streaming  should be required.
    The actual error message is: "the video player is in the connection  error state. It enters this state when a video stream attempted to load  but was unsuccessful. There are two possible reasons for the error: no  connection to the server or the stream was not found."
    Since it's a file on her hard drive, and she has loaded the file  into the Adobe development environment successfully, the one thing we  know for certain is that neither of these reasons is correct. Something  is obviously missing on her system, what is it and what can we do to fix  it?

    I'm getting error too (Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Play.StreamNotFound). I'm getting this with CS5. This file was previously made in CS4 and never got this error.
    Everything (fla and flv too) is on external hard disk.
    As this work requires to be exported to mov, I've found out that everything needs to be on the mac (don't know for pc), like on desktop.
    So, let me wrap up disadvantages I got with Flash CS5:
    - TextField.embedFont makes the font disappear in CS5, so I can't use it, so I can't "play" with text in a comfortable way (in CS4, with embedFont = true, I was able to rotate and stuff). Now I have to make a bitmap out of it. It means 3 lines of code and a new variable, instead of just an easy one.
    - I have to rebuild my entire source path structure for AS classes, as my old one (that took me years of effort to be reasonable and used to work just fine in CS4).
    - I have to move stuff from my hard drive to the desktop, to make flv be played and to make a mov out of my animation.
    CS5 is making my job harder and making me lose a lot of time to find out errors that have no good reason to exist (it was not error. just "place CS5 doesn't like").

  • How to create a .f4m manifest files to play .FLV files

    I typically use .f4v files for my on demand playback media files, however I converted a .mov to a .flv file...  How do I create a .f4m and .m3u8 manifest file that plays .flv files?  Below is the code I normally use for the .f4m and .m3u8 files.  This works great with .f4v files.  I also included my player code.  What am I doing wrong?  The only difference is I'm using a .flv that I didn't use the f4vpp cleaner on..  That shouldn't give me the parse error I'm getting.
    022714.f4m is the name of my .f4m Flash manifest file.  Below are the contents.
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://IPaddress/hds-vod/</baseURL>
      <media href="02-27-14-640-480.f4v.f4m" bitrate="1000"/>
      <media href="02-27-14-320-240.f4v.f4m" bitrate="450"/>
      </manifest>
    022714.m3u8 is the name of my HTML 5 manifest.  Below are the contents.
    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1000000
    http://IPaddress/hls-vod/02-27-14-640-480.f4v.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=450000
    http://IPaddress/hls-vod/02-27-14-320-240.f4v.m3u8
    Flash multi bit rate player
    <object width="448" height="336">
    <param value="http://IPADDRESS/strobeplayer/StrobeMediaPlayback.swf" name="movie">
    <param value="src=http%3A%2F%2FIPADDRESS%2Fvod%2F022714.f4m&amp;streamType=recorded&amp;autoPlay =false" name="flashvars">
    <param value="true" name="allowFullScreen">
    <param value="always" name="allowscriptaccess">
    <param value="direct" name="wmode"><embed src="http://216.37.94.194/strobeplayer/StrobeMediaPlayback.swf" type="application/x-shockwave-flash" flashvars="src=http%3A%2F%2FIPADDRESS%2Fvod%2F022714.f4m&amp;streamType=recorded&amp;auto Play=false" wmode="direct" allowfullscreen="true" allowscriptaccess="always" height="336" width="448"></object>
    HTML5 player
    <p style="text-align: center;"><a href="http://IPaddress/vod/022714.m3u8"><img alt="" src="/portals/0/Silver-Play-Button.jpg" style="width: 150px; height: 151px;" />

    to create a file in appl server you have to use open dataset and close data set..
    see the sample code
    REPORT zanid_test MESSAGE-ID zz .
    parameters:  FULLPATH(128) obligatory lower case
                          default 'E:\usr\sap\put\file.txt'.
    *you change the appl sever path as per your config.
    DATA : BEGIN OF list_asc OCCURS 0,
            msg(300) TYPE c,
           END OF list_asc.
    start-of-selection.
    *---populating data
    list_asc-msg = 'abcdefghijkl'. "your sample data
    append list_asc.
    list_asc-msg = 'faagoaagiagig'. "your sample data
    append list_asc.
    OPEN DATASET fullpath FOR OUTPUT IN TEXT MODE.
    LOOP AT LIST_ASC.
          TRANSFER  LIST_ASC-MSG TO fullpath.
          CLEAR LIST_ASC-MSG.
    ENDLOOP.
    CLOSE DATASET fullpath.
    now if you go to appl server , you will find that file in that specified path..
    to create a directory yu can go to transaction AL11 and click the 'konfigurieren'button, you then you can specify the directory attibutes to create a directory
    and to load a file from your loacl pc to appl server you can use transaction CG3Y also, instead of the abap code.
    plz rewrad points if it helps you.

  • Flash Player 10.2.152.32 won't play FLV file

    I seem to be having similar problems to several others here.
    I am running Windows XP, SP3, 32 bit on Dell Pentium 4, 2Gigs of RAM, 3.0Gig HD.
    Since the March 8, 2011 update I have not been able to play FLV files.  Previous to the upgrade, I was able to play these same files.
    I have checked - Shockwave Flash Object (VS 8.0.24.0) is apparently installed and enabled, although it DOES NOT show up in the file list (that I can tell at least) in the System32/Macromedia folder.  It may be called something else perhaps?  These are the files that show as updated on March 8, 2011.
    Flash10n.ocx - Active X Control
    FlashInstall - text file
    FlashUtil10n_ActiveX - application
    FlashUtil10n_ActiveX.dll - application extension
    Files with previous dates are:
    flashplayer.xpt - XPT file, install - text document - dated Feb 17, 2010, NPSWF32.dll - dated Nov. 20, 2007, and NPSWF32_FlashUtil - also dated Nov. 20, 2007.
    I can play stuff from YouTube.  I am able to see the Flashy thing turn on the link you supplied to others here.
    My security is set to "Medium".  I have had NO virus issues, and run a VERY tight anti-virus protocol with AVG, AdAware and SpyBot all active, updated either daily (automatically) or weekly (manually).
    Should I uninstall and then re-install, so the SFO will be included, or is there a way to retrieve the (apparently) missing Shockwave Flash Object file on its own?  This issue has now taken up my entire evening, and I am ready to PERMANENTLY delete Flash from my life!
    Thanks,

    Hi, you don't need to scream at me. I've been on the Forum 12 hours today and 12 hours yesterday helping users with their problems. This past week I had over 1,000 email notifications in my email account and 90% were from the Flash Player Forum.
    And this:Let's try again..........arrrrrrrghhhhhhhhhhhh!!!!
    Please don't insult me and act like I don't know what I'm doing or talking about.
    The Shockwave Flash Object is not supposed to be in the System32 ...Flash file location. It is never there. It is always in the addons of the browser, it must be since it is the Flash Player Control. Without it and without it being the correct version(which yours is not) Flash Player cannot work! I repeat, Flash Player is a browser plugin and works thru the browser.
    The fact that you have a 32bit OS doesn't tell me anything about what browsers you use. I have a 32bit OS, but I use IE6 on one and the other PC I use IE8.
    I know you checked some of my posts, I'm not so dumb that I don't recognize my own writing.
    Yes, you need to Uninstall and Install again, that is the only way you are going to have the correct SFO Installed.
    If you'd tone it down some, I may give you the best way to do that in order to be successful in that.
    However, it won't be tonight. Maybe you'll be in a better mood tomorrow.
    Regards,
    eidnolb

  • C7: How to play .FLV files on Nokia C7

    Can I ask how do you play .FLV files on Nokia C7? I searched for FLV player in the Ovi Store and nothing is returned, whereas on Android Market loads of FLV players are available.

    I couldn't find an FLV player either. But you can download freemake video converter from internet. Its really a very good converter and I transfer my vids to C7 only after converting to C7 resolution because it makes the processor to do less work. If you transfer an HD vid directly to phone it will play fine but will cost u battery life. (more processor usage)

  • How to play flv files on n8 belle

    is there any trick or video player to play flv file on n8 belle

    @gudboy52
    Hopefully Belle Refresh should shortly be available to you.
    Happy to have helped forum with a Support Ratio = 42.5

  • IOS 6.0.1 Safari won't play audio files. Error: "Cannot play audio file."

    I recently updated my iPad to iOS 6.0.1, now Safari won't play audio files in any format. Error: "Cannot play audio file." Previously, it worked fine. I tried downloading and using GoogleChrome and Opera Mini, and these also won't play audio. What's up??

    Solved the problem. It seems that once iOS 6.0.1 installed, it caused all of my browsers to mishandle audio files. When I reset the iPad, that cleared up the problem.
    Before upgrading to iOS 6, my browsers would "autoplay" the sound files. After iOS 6, "autoplay" is disabled so you have to manually click play to play them.
    Nonetheless, everything is working fine again except for "autoplay," which I can live with.

  • Nokia 5800 won't play flv files

    I've had my 5800 for about half a year. My Software version is V31.2.101 (this is the most up-to-date version I can have according to my Nokia Software Updater)
    For some reason when I try to play flv files (approx. 30-100mb), a completely white screen shows up with a "broken" flashplayer symbol in the upper left corner.
    What's wrong? How do I play flv files on my Nokia?
    I've read in lots of places before that the 5800 can play flv files straight out of the box. =/ mine can't
    btw, I can play mp4 files, but it's a pain because I have to convert the flv files first
    and I have Adobe Flash Lite 3.1 installed. (atleast that's what it says when I select a video and go to "Options" - "About application")

    As far as I was aware, the 5800 didn't play FLC - it certainly isn't listed here:
    http://www.forum.nokia.com/Devices/Device_specifications/5800_XpressMusic/
    However, even if it was possible, it may depend on the way the FLVs were encoded - things like the frame rate could cause playback incompatibilities.

  • Playing flv files

    Hi,
    i'm trying to play a flv file in the jmstudio player. I've added the jffmpeg, and followed the instructions, but i just keep getting these error messages saying that it can't create a player.
    Anyone done this before?
    Andreas

    Slightly
    "Have never really had the time to access the YouTube site"
    You better hurry up before Google fully takes over. They bought it.
    The party is over folks!!!!!!

  • Cannot Play flv file

    Hope I am in the right forum, could not find anything in
    Premier Elements forum.
    Exported flv file from PE, however cannot play. I double
    click on flv file to run it; but it is not associated with any
    application.
    I have tried all I know and cannot get file to play. Guess I
    don't know much ;-(

    Hi Jimmie, I'm having the same thing happen to me so sorry
    can't help. I recently did a website for my employer, without any
    prior knowledge of DW (using CS3) or coding, I just know
    Illustrator and some basic Photoshop and Flash (just enough to get
    by and he knows this). I used xhtml transitional and a CSS layout
    provided with DW. When I validate the page inDW, I get the "embed"
    error. I have put the actionscript file in the root of the local
    and remote sites. SWF file won't play from the remote site on my
    machine in Safari or IE7 but will play from the local site when
    hitting F12.
    My employer is hosted on Yahoo business and he set up a user
    account and password. I "put" the files to his site and they NEVER
    show up. I've also tried putting them there with Filezilla (I think
    its called) same thing, they never showed up. So, now he's paying
    anohter girl who just completed a school course on DW and so I have
    let go of the reins on that. So, I paid for a site for myself with
    MarbleHost and voila, everything works except the SWF file. Also,
    the &(*! Spry navigation bar is a BEAST. Seems to work
    sometimes and sometimes not. DW Help seems to suck.
    I have searched for hours on many forums and everyone seems
    to assume we all know code. lol.
    I know this stuff is complicated and there is a learning
    curve. I'm a hard worker and don't mind putting in the time - its
    this chasing my tail around in circles that I can't stand. Can
    anyone point me to a good beginner's book? on coding. I already
    have the DWCS3 Bible and its not really very good for me, as I like
    step by step tutorials. I also have the DW CS3 missing manual which
    is ok, but didn't really go into great depth about the Spry menu
    bars (had to google that one and came up with a great chapter from
    a book by David Powers at Friends of Ed website.
    I'd appreciate it. Sorry if I have an attitude, I'm just
    ready to pull my hair out frustrated.

  • Play flv file

    hello everybody,
    I just set up FMS, how can I play the flv file to test the
    server? where I put the files??
    I follow the steps of some post in this forum, it seems
    doesn't work....
    Thanks,

    quote:
    Originally posted by:
    BillMX
    .flv files are placed in:
    Server\Program Files\Macromedia\Flash Media Server
    2\applications\createUniqueFolder\streams\_definst_\
    Then create a flash application using Flash 8 Pro and the
    FLVPlayback component. The video path used for the component would
    be:
    rtmp://serverpath/uniqueFolderName/video.flv
    If you have the path incorrect the FLVPlayback component will
    bark at you on the spot. If it doesn't work, post the server path
    where you placed the video and the path used in the FLVPlayback
    component to target the video.
    If the FLVPlayback component didn't bark at you, just test
    your swf and see what you get. Good Luck. Let me know if this
    answers your question.
    hello,
    It didn't work for me...
    I just installed FMS, then I created an application directory
    called videoplay.
    i put the video.flv into the directory Flash Media Server
    2\applications\videoplay\streams\_definst_
    then I opened flash, I put the FlvPlayback component with
    contentPath set to
    rtmp://localhost/videoplay/video.flv.
    (I've got a web server running on the same machine)
    the SWF starts without errors but I cannot see anything...

  • Quicktime Pro 7 won't play .flv files

    For some reason, after I export .MOV files as .FLV file for use on a website, Quicktime Pro 7.6.4 will not play the file once it's been exported.
    I get an error saying "This is not a movie file". Quicktime used to play these files just fine on my other computer, and I cannot figure out why. Any suggestions?

    Quicktime used to play these files just fine on my other computer, and I cannot figure out why.
    QT no longer supports Flash/FLV natively. Do you have the same QT components installed on both computers? (E.g., is the Perian component package installed on both?)

  • Error while playing sound file in Applet

    Hi!!
    I am trying to play sound file in the applet which produces sound continuously, when it goes above certain set value. When i run the sound file individually it runs perfectly fine but when i try to call that class in diff. program its giving me some security error..i am trying to solve this problem from last so many days..i dont know whether i have to make some change in Security file policy or java policy..the error is like..
    java.security.AccessControlException: access denied (java.util.PropertyPermissio
    n user.dir read)
    at java.security.AccessControlContext.checkPermission(AccessControlConte
    xt.java:269)
    at java.security.AccessController.checkPermission(AccessController.java:
    401)
    at java.lang.SecurityManager.checkPermission(SecurityManager.java:524)
    at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:12
    76)
    at java.lang.System.getProperty(System.java:573)
    at SoundApplication.startLoadingSounds(SoundApplication.java:52)
    at SoundApplication.<init>(SoundApplication.java:42)
    at TempSet.actionPerformed(TempSet.java:103)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
    86)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1839)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:245)
    at java.awt.Component.processMouseEvent(Component.java:5100)
    at java.awt.Component.processEvent(Component.java:4897)
    at java.awt.Container.processEvent(Container.java:1569)
    at java.awt.Component.dispatchEventImpl(Component.java:3615)
    at java.awt.Container.dispatchEventImpl(Container.java:1627)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
    at java.awt.Container.dispatchEventImpl(Container.java:1613)
    at java.awt.Window.dispatchEventImpl(Window.java:1606)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Please suggest some solution for this..its kinda urgent..
    Thanks in advance.
    Regards,
    Amish

    Are you loading your Applet from a webserver? You could make the sound file available through the same webserver.
    Alternatively, you could package the sound with the code in a JAR. It does mean a bigger download for your Applet users though, but the Applet would be able to access the file quickly.
    If you put your file in the JAR, say in /sound/myfile.ext , then you can get access to it from your code like this:
    URL soundURL = getClass().getResource( " /sound/myfile.ext" );

  • Playing flv files in Adobe Reader 7

    I created some pdf documents using Acrobat 9 Pro into which I added links to streamed flv files. This worked fine with the video playing in the pop up box but when I put it on the web people opening it with Reader 7 could not play the flv and were prompted to upgrade to Reader 9.2 (which worked). Unfortunately I can't rely on people being able to upgrade and want to find a way fro flv files to be playable via Reader 7. I've tried creating them in Acrobat 7 Pro but couldn't get that to work.  Does anyone have any ideas about why this doesn't work and what to do? Thanks

    Your experience is better, than mine. I look after a website for a Electronics Servicing organization. I've created many PDF using Acrobat 3 - 7.0.7 (the older versions on OS9. I use OSX.3.9 on a G4-500 using 1.5 Gb of System RAM. And I uses OSX.4.5 on a PowerBook 17" using 2 GB of system RAM. Since switch to Acrobat 6 and then 7 I've never been able to have anyone view a PDF created in 6 or 7 Format. The File appears to be there and the file fize indicates it has content. Whether viewing on a PC or a Mac. If viewed on a PC all that is seen is a Blank page with no text, and if it had a graphic no graphic is shown. If however; the person on the other end happens to have Acrobat or Reader 6 they can view the Acrobat 6 Files. And If they have 7 they can see the 6 and 7 files as well as anything below. However; most of the PC viewers I deal with still use Acrobat or Reader 5. Its these viewers I find that can't view the files. I've noticed also that when you do getinfo on a Acro/Reader, or 7 File created on my computer that in the thumbnail preview, all you see is the Acrobat A symbol, or a Blank thumbnail. Opening in 7 they can be viewed. Opening in 5 (I still have a OS9 Drive and e.5.0.5 installed) all I get is a Blank page no text and no Graphics if any in the content. SO every since 6 and 7 have come out I've had to save, then optimize for Acrobat 5 in order for my readers to see the pdf's.

  • Temporary solution to play flv files on nokia n8 h...

    Solution for playing flv video files from nokia N8
    Following are the steps
    1) Open the file
    2) Quickly tap the screen, and move the volume key up and down
    3) again tap the screen
    and that's all, now enjoy the video as you did prior to belle .
    note: this is just a temporary soln, sometimes it fails to play, though you can keep trying it.

    Dears,
    If the phone is connected to internet via GPRS of WLAN, the flv file can be played
    If I've helped in any way, a click upon the white star at bottom right of screen would always be appreciated.
    However if my answer also solves your problem clickingbelow it will benefit other users!

Maybe you are looking for

  • Payment System

    Hi 1.i ve created outgoing excise invoice.But on selecting that Vendor in outgoing payment form it does not show that invoice for payment.but if i make A/P invoice for that Goods receipt it shows. Does it mean that for every transaction A/P and A/R i

  • Where can I get the black plastic feet/plug for a MBp A1278?

    One of our children have apparently removed one of the black rubber/plastic feet, from the bottom of my wife's MBp A1278. I would have discounted it as a cosmetic item, but when the wife uses the laptop on a hard surface, it rocks. And well, she is u

  • Simple servlet shoed error in tomcat server sql error

    import java.sql.*; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class submit extends HttpServlet      //Connection con;      public void doGet(HttpServletRequest req,HttpServletResponse res) throws IOException,Servlet

  • DB CPU usage by %

    Hi, Is there anyone know how can we get the CPU usage by %? I noticed that in the Dbcontrol web page , it able to show the CPU used by %(in the Average Active Session chart), so I guess there must be some way to query it. I know V$SYSSTAT, V$SESSTAT

  • Sales group - Material pricing group

    We are running a Z Report for 'Background Execution :Billing document updation for order." Error is " Value XXX (sales group) is not defined for material pricing group 2. Help requested. Rgds Sumanth.G