How can i Store rtmp streaming into local File System?

I use socket and netstream.appendBytes to receive and play flv frames.
now I got the BytesArray,but how can i store them into local File?
FlashPlayer can't use Air File APIs.

This is by design.  Content on the Internet does not have access to your local filesystem.  We offer Local Shared Objects (LSOs) for storing small amounts of information, but this would not be suitable for scraping a video feed to disk.

Similar Messages

  • How to add more disk space into /   root file system

    Hi All,
    Linux  2.6.18-128
    can anyone please let us know how to add more disk space into "/" root file system.
    i have added new hard disk with space of 20GB, 
    [root@rac2 shm]# df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/hda1             965M  767M  149M  84% /
    /dev/hda7             1.9G  234M  1.6G  13% /var
    /dev/hda6             2.9G   69M  2.7G   3% /tmp
    /dev/hda3             7.6G  4.2G  3.0G  59% /usr
    /dev/hda2              18G   12G  4.8G  71% /u01
    LABLE=/               2.0G     0  2.0G   0% /dev/shm
    /dev/hdb2             8.9G  149M  8.3G   2% /vm
    [root@rac2 shm]#

    Dude! wrote:
    I would actually question whether or not more disks increase the risk of a disk failure. One disk can break as likely as one of two of more disks.
    Simple stats.  Buying 2 lottery tickets instead of one, gives you 2 chances to win the lottery prize. Not 1. Even though the odds of winning per ticket remains unchanged.
    2 disks buy you 2 tickets in The-Drive-Failure lottery.
    Back in the 90's, BT (British Telecom) had a 80+ node OPS cluster build with Pyramid MPP hardware. They had a dedicated store of scsi disks for replacing failed disks - as there were disk failure fairly often due to the number of disks. (a Pryamid MPP chassis looked like a Xmas tree with all the scsi drive LEDs, and BT had several)
    In my experience - one should rather expect a drive failure sooner, than later. And have some kind of contingency plan in place to recover from the failure.
    The use of symbolic links instead of striping the filesystem protects from the complete loss of the enchilada if a volume member fails, but it does not reduce the risk of loosing data.
    I would rather buy a single ticket for the drive failure lottery for a root drive, than 2 tickets in this case. And using symbolic links to "offload" non-critical files to the 2nd drive means that its lottery ticket prize is not a non-bootable server due to a toasted root drive.

  • How can we store an image in the file the image is int he form of bytes

    hi
    How can we write an image to a file and save it to hardisk the i mage is in the form of bytes please if any body knows please send the code for it
    Thanks for u reply

    can u send the code for me
    my image is in the form of bytes its size is=78K;
    now i want to store image in database using BLOB type i blob datatype size is25k;
    how i should store
    Help me if know anything about this
    Thanks In Advance

  • How can I store and retrieve a Word file after it's been converted to a pdf?

    How do I store and retrieve a Word file after it's been converted to an PDF?  My file has been trapped in PDF"hell" assigned to a folder that cannot be opened or read, but when deleted, also deletes the original Word file...

    I think we need some more info here like, how are you converting to PDF. This is the Reader forum and it doesn't convert files to PDF.

  • How can we store code permanent into lm3s8962 through labview arm module?

    I am using labview 2012with arm module.I got problem that my code is not store  permenent  into lm3s8962 luminary board so when i unpuggled the board then loaded code erased. so is their any setting should done which can store code permenent into the  lm3s8962 luminary board..?

    After a build in LabVIEW you can see the code in KEIL uVision. I think that your project is already set to download it to the flash.
    I think you have set the option in de LabVIEW build: enable debugging and Generate guard code.
    when you uncheck them, your application wont need a kick from your debugger to start the application..
    Wouter.
    "LabVIEW for ARM guru and bug destroyer"

  • How can i store the messge  in local machine?

    Hello Sir,
    i am using the IMAP for receving and sending the mail. for that i am using the
    mail.jar and activation.jar.
    but i have also requirement to store the message in local machine. that's why i have to use POP3. i have to search about , for store the message in local machine.
    for storing the message in local machine , it's require the "Local Store Provider"
    so ,
    my question :
    i am confused mail.jar and activation.jar support or not for store the message on local machine
    please tell me .
    thanks

    Hi Bavithra,
    Please refer the following link which provides you three methods to copy the Database on Azure to your local machine:
    http://stackoverflow.com/questions/5475306/how-do-i-copy-sql-azure-database-to-my-local-development-server
    Regards,
    Manu Rekhar

  • How can we print the webreport into PDF file(not using the Web Analyzer)

    Hi
    I have a report in 'WAD 3.5' . And this report will be executed in the web browser .
    My user wants to print this Web Report in the PDF file (or) import into excel file .
    So how can we do it , if the report is in web browser .
    Pls let me know
    regards
    suresh

    Hi,
    Check this link may be useful:
    Displaying PDF file in browser
    Rgs,
    Ravikanth.

  • How can I split a class into 2 files?

    I converted a C++ program to Java recently and it works fine, but I ran into a problem.
    One file is very large and I need to add more functionality. Unlike with C++ where you can just put new functions in another file, I don't see a way to do it in Java.
    I made another file, and therefore another class, but the compiler complains that it can't call a static function from non-static context. (I did not declare it static so I guess it's assuming it) But I understand why. So I made the new class "extend" the old one so "this" would exist but that doesn't work -- Is it because the new class is a subclass of the original class?
    There must be a way to do this. But I don't see what is likely obvious. HELP! And thanks.

    JavaIsBetterThanCPP wrote:
    There must be a way to do this. But I don't see what is likely obvious. HELP! And thanks.Unfortunately Java has no concept of "partial classes" like C# has. Generally, however, a class that is large enough to split up into separate files is either one class that should be modularized further into separate classes, or it already is modularized and all that code is the result of many inner classes. What some people do is promote those inner classes to top-level members in their own file, and mark them as package-private. Using a package you can basically have two classes that know everything about each other and have full access to each other.
    But personally, and until I see justification otherwise, semantics in Java being unbreakingly tied to a certain file structure and naming is the most bonehead and, frankly, non-Java thing about Java.
    There's probably a pre-processor out there that will let you split a class into multiple files and will combine them into a single source file just-in-time to pass to the compiler.

  • How can i store a variable to a file?

    for some reason i can't find much on writing to files, is
    this not possible?
    and if it isnt possible, how can i keep a variable? i don't
    want the variable to reset to 0 every time someone loads a new
    instance of the page.
    also, for some reason.. it seems to me that if statements
    dont work as they should. the vote() function always executes the
    countVote() function even if choice doesn't = ans.
    anyone know what im doing wrong
    example..
    private function vote(choice):void {
    text1.text=choice
    if (choice=ans){
    countVote();
    private function countVote():void {
    total=total+1
    totalS=total.toString();
    text2.text=totalS
    text2 displays the total count and every time i submit the
    vote, the count goes up no matter what i choose
    i also get a warning for all of the variables saying
    "1084: var 'total' will be scoped to the default namespace:
    sv1: internal. It will not be visible outside of this package."
    (sv1 is the name of the project)
    how to i make it visible outside of the package?

    In this case, the if statement will not work as you intended.
    You need to use the double-equals, ie, if (choice == ans)
    Also, the flash player is inside a sandbox for security
    reasons. Consequently, you can not write directly to files. To get
    around this, make a call to a php, python, java or .net script
    residing on the webserver that will write to a file for you. You
    can do this using the HTTPService object.

  • How to connect SharePoint Document Library with Local file system?

    Hi
    I have a SharePoint Document library and in my local system i have 3TB files. It is very difficult to upload 3TB files in SharePoint.
    I want a file details in SharePoint Document Library but physical file would be in local.
    While click the file in Document library. The document should open from local.
    Anyone help me on it.
    Thanks & Regards
    Poomani Sankaran

    Hi,
    your requirement doesn't work out-of-the-box as all data uploaded to SharePoint needs to be stored in SQL database. Thus in your case 3 TB of fileshare would need to move to SQL.
    In case you don't want to go this way, there are 3rd party vendors who offer Software like AvePoint Connector. Products like these use SQL RBS (Storage Externalization API) so that files remain in your file system but metadata is kept in SharePoint. If you
    need more information on that, please let me know.
    Regards,
    Dennis

  • How can I store and view a pdf file ?

    I have an iphone 3GS 32Gb and want to store a pdf file on my phone so that I can view it later.
    Email is the only way I have been able to view my pdf file, but I dont really want to do it this way.
    On previous phones I could save a file on the phones memory card and then open the file in the necessary app.
    This is something I know the iphone doesnt do, but I was wondering if there is a way around it or an app.

    sky_rat wrote:
    Which is the best of those apps, can you recommend any ?
    [File Magnet|http://itunes.apple.com/gb/app/filemagnet-read-and-e-mail-your/id2847971 61?mt=8] is pretty good.
    I did find one app (I cant remember the name, thought it was Air Share) and it said Apple had told them to change the app so that you cant transfer files over USB, only Wi-Fi.
    I think that was [FileApp|http://itunes.apple.com/gb/app/fileapp-previously-fileaid-document/id2 97804694?mt=8], (previously File Aid).
    Apple dont like people being able to use their phone like this.... bloody control freaks.
    You can vote with your feet remember.

  • How can i convert an image into gif file as jpeg by using com.sun.image.*

    please help me to convert an image into gif format. i have used sun's impl com.sun.image.code.jpeg package to convert a buffered image into a jpeg file. is there any implementatioln available from sun to handle gif files.

    Many. Try for instance google with 'java image encoders'. Go to the URL http://www.google.com/search?q=java+image+encoders and be amazed of the wonders of modern web search tools.

  • Deliver a report in XML format and save it to local file system on the server

    We have OBIEE 10.1.3.4 on Redhat linux. We want to have generate a report in XML format and saved it to the server's file system. Did not realize this is s difficult task. Basically
    1) How to create a XML report? It is not listed in the output items of a layout template.
    2) How to deliver XML the report  to local file system. Look into the Delivery section of Admin page. FTP should be the best choice, but does that means that one need to install and run ftp server on the BI server box?
    Thanks

    Hi,
    Since I still have problems on this subject, I would like to share on how it progresses.
    Currently I have a problem of timeout in step "Truncate XML Schema" with the URL that I mentioned above.
    The exact error is the following : 7000 : null : com.sunopsis.sql.l: Oracle Data Integrator TimeOut : connection with URL [...]
    The connection test is still OK.
    I tried to increase the value in the user's pref but there's no change.

  • From a PC, how do I store a photo into Photo Stream so that I can access it on iPad?

    From a PC, how do I store a photo into Photo Stream so that I can access it on iPad? Like, a Word document can be dropped into iCloud from my PC and it will appear when I open iCloud from my iPad.

    Text copied from here.
    http://support.apple.com/kb/PH2606?viewlocale=en_US
    From your Windows desktop
    From your Windows desktop, drag any photo to the Photo Stream Uploads folder you chose in the iCloud Control Panel.
    Note:   Photos in Photo Stream appear in the order they were originally taken, not in the order they were added to Photo Stream. If you manually add photos, they appear throughout Photo Stream in the appropriate date order.
    For a list of file types that can be added to Photo Stream, go to the Apple Support article Photo Stream FAQ and see “What photo formats does Photo Stream support.”

  • How can I convert DVD- video into Apple's format so that it can be played and streamed from my Mac?

    How can I convert DVD- video into Apple's format so that I can play the content on my Mac and also stream it to my Apple TV? A few years ago, I transferred all of my home videos onto DVD but now would really like to put these onto my Mac and stream them through Apple TV to watch on the "big screen". Any advice would be most welcome!! Thanks

    MPEG Streamclip.
    Apple do not have their "own" format. You need to convert your DVDs to H.264 though.

Maybe you are looking for

  • FaceTime no longer working with Yosemite and IOS 8.1

    I have used FaceTime flawlessly for some time with no issue. After I upgraded to Yosemite on my MacBookAir and IOS8.1 on 5S and iPad air, I've had a problem connecting. When I get a call, all the devices ring (as they should) but it will not connect

  • Hod do I make a pdf from a scanner in Adobe XI?

    I have Adobe XI.  I want to make a pdf from a document on my scanner.  This was simple to do in earler versions. How do I do this in XI?

  • What are the maximum no of wad reports in a project

    Hi all, what are the maximum no of wad reports in a project. can you suggest how many people will work on wad reports  either one or more than one. can you provide me example scenerio. thanks, cheta.

  • W530 Color Calibration Issue

    Every month I re-calibrate my display using the COLOR by PANTONE Color Calibrator (v1.1.0). I tried doing it today and kept getting this error, even though the tone for successful calibration always goes off: Link to picture I'll try to calibrate the

  • Debugging portal based application

    Hi, Can anybody tell me how to debug an application based on Portal? regards Juhi Kulshreshtha