From gil at allflashwebsite.com Fri Jul 3 22:28:30 2009 From: gil at allflashwebsite.com (Gil Birman) Date: Sat, 4 Jul 2009 00:28:30 -0500 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <88682484835700714046966744591998331482-Webmail@me.com> References: <88682484835700714046966744591998331482-Webmail@me.com> Message-ID: <44ce57930907032228x4eeebd64i284246711818a16c@mail.gmail.com> SWC's are for embedding and/or code-hinting. Runtime load SWF's, not SWC's, but still use the SWC in your project for code hinting. Better yet use the source, not the SWC for better code-hinting. Gil On Sat, Jun 27, 2009 at 11:16 AM, wrote: > I've seen various workflows recommending ?either one of the 3 ways of getting Flash assets into a Flexbuilder Actionscript project. Can someone summarize the pros and con of each approach? > ie > SWC > Embed > Runtimeloading > Thanks in advance! > > [f] www.flickr.com/photos/bitstream > [c] 416.668.0034 > [twitter] eco_bach > -------------------------------------------- > "...all improvisation is life in search of a style." > ? ? ? ? ? ? - Bruce Mau,'LifeStyle' > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > From martingpub at gmail.com Sat Jul 4 08:45:15 2009 From: martingpub at gmail.com (Martin Gonzalez) Date: Sat, 4 Jul 2009 12:45:15 -0300 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <88682484835700714046966744591998331482-Webmail@me.com> References: <88682484835700714046966744591998331482-Webmail@me.com> Message-ID: <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> SWC statically linked and Embed assets are nearly the same, in both cases the assets are compiled inside the output SWF. *Cons:* * A con of this approach is the fact that size of your final SWF is increased with each asset added to the project and you have to recompile every time you change or add an asset. * More assets you use more time the user will have to wait in the load time. You can't partitionate your load times to make smaller loads on demand with shorter wait times. *Pros:* * A pro could be that is easier to deploy since you only have to distribute your SWF, and you have only one load time and all the assets available after the loading is completed. * When the logic of your program use an asset you already know that is there, ready to be used. You don't have to check it or load it. *Runtime Loading:* *Pros*: * You can make bulk loading of assets on demand or grouping by need, the app will give the feeling of being more responsive, with smaller loadtimes in several places. *Cons*: * When you distribute your app you have to do it along with all the assets with the same relative path. * You need to be sure that where you are going to deploy your app you have permission to read your assets. * (I am not sure of this one) But I think that the assets loaded inside an app at runtime are not cached so they will take the same time the next time you load them unlike the embed assets. Cheers Martin Gonzalez www.web-adventure-kit.com 2009/6/27 > I've seen various workflows recommending either one of the 3 ways of > getting Flash assets into a Flexbuilder Actionscript project. Can someone > summarize the pros and con of each approach? > ie > SWC > Embed > Runtimeloading > Thanks in advance! > > [f] www.flickr.com/photos/bitstream > [c] 416.668.0034 > [twitter] eco_bach > -------------------------------------------- > "...all improvisation is life in search of a style." > - Bruce Mau,'LifeStyle' > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gil at allflashwebsite.com Sun Jul 5 12:36:05 2009 From: gil at allflashwebsite.com (Gil Birman) Date: Sun, 5 Jul 2009 14:36:05 -0500 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> Message-ID: <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> > * (I am not sure of this one) But I think that the assets loaded inside an > app at runtime are not cached so they will take the same time the next time > you load them unlike the embed assets. The web browser WILL cache SWF's loaded at runtime (from the same domain). This can pose a problem when you upload a newer version of the SWF to your server because the user may have the old version cached. One solution is something like this in the .htaccess file: # CACHE AGES IN 24 HOURS for specified file types (86400) # CACHE AGES IN 7 DAYS for specified file types (604800) Header set Cache-Control "max-age=86400" From bachirk at gmail.com Sun Jul 5 14:08:34 2009 From: bachirk at gmail.com (Bachir El Khoury) Date: Mon, 6 Jul 2009 07:08:34 +1000 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> Message-ID: To force the download of the swf, u can use a cache buster technique below: loader.load(new UrlRequest("somthing/mySwf.swf?cb="+new Date().getTime ())); Adding th time at the end of the URL will trick the player to think that it's a new URL each time forcing if to redownload the file. On 06/07/2009, at 5:36 AM, Gil Birman wrote: >> * (I am not sure of this one) But I think that the assets loaded >> inside an >> app at runtime are not cached so they will take the same time the >> next time >> you load them unlike the embed assets. > > The web browser WILL cache SWF's loaded at runtime (from the same > domain). This can pose a problem when you upload a newer version of > the SWF to your server because the user may have the old version > cached. One solution is something like this in the .htaccess file: > > # CACHE AGES IN 24 HOURS for specified file types (86400) > # CACHE AGES IN 7 DAYS for specified file types (604800) > > Header set Cache-Control "max-age=86400" > > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org From postmaster at glenpike.co.uk Sun Jul 5 14:21:53 2009 From: postmaster at glenpike.co.uk (Glen Pike) Date: Sun, 05 Jul 2009 22:21:53 +0100 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> Message-ID: <4A511971.7000806@glenpike.co.uk> ...or if the asset SWF's to load are specified in an XML file, just append the name with your own manual timestamp everytime you update the asset - this saves busting the cache every time, e.g. Bachir El Khoury wrote: > To force the download of the swf, u can use a cache buster technique > below: > > loader.load(new UrlRequest("somthing/mySwf.swf?cb="+new > Date().getTime())); > > Adding th time at the end of the URL will trick the player to think > that it's a new URL each time forcing if to redownload the file. > > > On 06/07/2009, at 5:36 AM, Gil Birman wrote: > >>> * (I am not sure of this one) But I think that the assets loaded >>> inside an >>> app at runtime are not cached so they will take the same time the >>> next time >>> you load them unlike the embed assets. >> >> The web browser WILL cache SWF's loaded at runtime (from the same >> domain). This can pose a problem when you upload a newer version of >> the SWF to your server because the user may have the old version >> cached. One solution is something like this in the .htaccess file: >> >> # CACHE AGES IN 24 HOURS for specified file types (86400) >> # CACHE AGES IN 7 DAYS for specified file types (604800) >> >> Header set Cache-Control "max-age=86400" >> >> >> _______________________________________________ >> osflash mailing list >> osflash at osflash.org >> http://osflash.org/mailman/listinfo/osflash_osflash.org > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > -- Glen Pike 01326 218440 www.glenpike.co.uk -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris.velevitch at gmail.com Sun Jul 5 23:02:02 2009 From: chris.velevitch at gmail.com (Chris Velevitch) Date: Mon, 6 Jul 2009 16:02:02 +1000 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <4A511971.7000806@glenpike.co.uk> References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> <4A511971.7000806@glenpike.co.uk> Message-ID: 2009/7/6 Glen Pike : > ...or if the asset SWF's to load are specified in an XML file, just append Isn't the XML file also cached? Chris -- Chris Velevitch Manager - Adobe Platform Users Group, Sydney m: 0415 469 095 www.apugs.org.au Adobe Platform Users Group, Sydney July meeting: Going It Alone Date: Mon 20th July 6pm for 6:30 start Details and RSVP on http://groups.adobe.com/posts/1f34697b9b From bachirk at gmail.com Sun Jul 5 23:28:34 2009 From: bachirk at gmail.com (Bachir El Khoury) Date: Mon, 6 Jul 2009 16:28:34 +1000 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> <4A511971.7000806@glenpike.co.uk> Message-ID: <488B6EBB-B065-4156-AD01-FBB46BAEFAE3@gmail.com> He Chris Yeah exactly, the XML will be cached itself, so don't thinK that technique wi do any good. The best/ only technique that works is the cache buster > To force the download of the swf, u can use a cache buster technique > below: > > loader.load(new UrlRequest("somthing/mySwf.swf?cb="+new Date > ().getTime())); On 06/07/2009, at 4:02 PM, Chris Velevitch wrote: > 2009/7/6 Glen Pike : >> ...or if the asset SWF's to load are specified in an XML file, just >> append > > Isn't the XML file also cached? > > > Chris > -- > Chris Velevitch > Manager - Adobe Platform Users Group, Sydney > m: 0415 469 095 > www.apugs.org.au > > Adobe Platform Users Group, Sydney > July meeting: Going It Alone > Date: Mon 20th July 6pm for 6:30 start > Details and RSVP on http://groups.adobe.com/posts/1f34697b9b > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From flashdev at relivethefuture.com Mon Jul 6 00:22:26 2009 From: flashdev at relivethefuture.com (Martin Wood-Mitrovski) Date: Mon, 6 Jul 2009 09:22:26 +0200 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <488B6EBB-B065-4156-AD01-FBB46BAEFAE3@gmail.com> References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> <4A511971.7000806@glenpike.co.uk> <488B6EBB-B065-4156-AD01-FBB46BAEFAE3@gmail.com> Message-ID: <20090706092226.4ea1852e@marv> On Mon, 6 Jul 2009 16:28:34 +1000 Bachir El Khoury wrote: > He Chris > > Yeah exactly, the XML will be cached itself, so don't thinK that > technique wi do any good. > > The best/ only technique that works is the cache buster Like Glen said, you can load the XML with the cache buster technique and use versions / timestamps on the SWFs. So the XML is always re-loaded but the SWFs are cached until they change. Works great for me :) From chris.velevitch at gmail.com Mon Jul 6 00:28:29 2009 From: chris.velevitch at gmail.com (Chris Velevitch) Date: Mon, 6 Jul 2009 17:28:29 +1000 Subject: [osflash] Q:flash assets into FB Actionscript projects, SWC vs Embed vs runtime loading? In-Reply-To: <20090706092226.4ea1852e@marv> References: <88682484835700714046966744591998331482-Webmail@me.com> <3b04eae20907040845i38bb1915ha070ead801d04b13@mail.gmail.com> <44ce57930907051236q5ab522a2u1e4934bf54c7aed2@mail.gmail.com> <4A511971.7000806@glenpike.co.uk> <488B6EBB-B065-4156-AD01-FBB46BAEFAE3@gmail.com> <20090706092226.4ea1852e@marv> Message-ID: On Mon, Jul 6, 2009 at 17:22, Martin Wood-Mitrovski wrote: > On Mon, 6 Jul 2009 16:28:34 +1000 > Bachir El Khoury wrote: > Like Glen said, you can load the XML with the cache buster technique Sorry, missed that part. Chris -- Chris Velevitch Manager - Adobe Platform Users Group, Sydney m: 0415 469 095 www.apugs.org.au Adobe Platform Users Group, Sydney July meeting: Going It Alone Date: Mon 20th July 6pm for 6:30 start Details and RSVP on http://groups.adobe.com/posts/1f34697b9b From cassiano at gmail.com Sun Jul 12 06:02:28 2009 From: cassiano at gmail.com (Cassiano Rabelo) Date: Sun, 12 Jul 2009 10:02:28 -0300 Subject: [osflash] Creating MP3 file on the fly Message-ID: Hello. I'm researching of a way to create a Flash App which will create MP3 file on the fly after some sort of music composition done by the user. After searching the list archive, I found this post that mentioned what I'm after, but there was no conclusive info on the matter: http://osflash.org/pipermail/osflash_osflash.org/2007-May/013509.html I was wondering if someone could point me in the right direction. Thanks a lot for your time, Cassiano From faltrock at gmx.de Sun Jul 12 06:24:40 2009 From: faltrock at gmx.de (Friedemann Altrock) Date: Sun, 12 Jul 2009 15:24:40 +0200 Subject: [osflash] Creating MP3 file on the fly In-Reply-To: References: Message-ID: <074F5DC0-3BFF-4ECE-80FF-A9A7B6DE839F@gmx.de> Hi, you could try to port LAME or sth like that to the avm with alchemy: http://labs.adobe.com/technologies/alchemy/ -- Regards Friedemann Altrock Am 12.07.2009 um 15:02 schrieb Cassiano Rabelo: > Hello. > I'm researching of a way to create a Flash App which will create MP3 > file on the fly after some sort of music composition done by the user. > After searching the list archive, I found this post that mentioned > what I'm after, but there was no conclusive info on the matter: > http://osflash.org/pipermail/osflash_osflash.org/2007-May/013509.html > > I was wondering if someone could point me in the right direction. > Thanks a lot for your time, > Cassiano > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org From Niels.Wolf at mediacatalyst.com Mon Jul 13 09:08:37 2009 From: Niels.Wolf at mediacatalyst.com (Niels Wolf) Date: Mon, 13 Jul 2009 18:08:37 +0200 Subject: [osflash] Creating MP3 file on the fly In-Reply-To: <074F5DC0-3BFF-4ECE-80FF-A9A7B6DE839F@gmx.de> Message-ID: And you could ask the people from hobnox.. They seems to have looked into any issue possible facing sounds in actionscript. They might have not a solution to your problem but may be some thoughts and links.. http://www.hobnox.com/audiotool.1046.en.html On 7/12/09 3:24 PM, "Friedemann Altrock" wrote: > Hi, > you could try to port LAME or sth like that to the avm with alchemy: > http://labs.adobe.com/technologies/alchemy/ > > -- > Regards > Friedemann Altrock > > Am 12.07.2009 um 15:02 schrieb Cassiano Rabelo: > >> Hello. >> I'm researching of a way to create a Flash App which will create MP3 >> file on the fly after some sort of music composition done by the user. >> After searching the list archive, I found this post that mentioned >> what I'm after, but there was no conclusive info on the matter: >> http://osflash.org/pipermail/osflash_osflash.org/2007-May/013509.html >> >> I was wondering if someone could point me in the right direction. >> Thanks a lot for your time, >> Cassiano >> >> _______________________________________________ >> osflash mailing list >> osflash at osflash.org >> http://osflash.org/mailman/listinfo/osflash_osflash.org > > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org From moveup at mac.com Mon Jul 13 12:40:35 2009 From: moveup at mac.com (moveup at mac.com) Date: Mon, 13 Jul 2009 15:40:35 -0400 Subject: [osflash] Q: Hardware and software server requirements for image database Message-ID: <98430056357669226575316204329974963845-Webmail@me.com> I am building a Flash AS3 application that allows users to modify images, and then submit-save them to a server. The user will then have the ability to log in and access these saved images in a thumbnail gallery. They can either delete an image or click a thumbnail to view it at original size. I am comfortable with the front end having built something similar in AS2 and Flash 8 a few years back. What will be required for the backend? I assume some type of PHP-MySQL database is needed. Any particular hosting requirements? Not sure about hosting issues requirements as the AS2 application I built never sent any actual binary data, but rather data describing the image transformations. How should actual image date be transferred to the server? I assume I will need to make use of byteArray? Is there an existing tutorial or code sample that does something similar available for viewing-download? Are there any security restriction 'gotchas' associated with FP9 -10 I need to be aware of? Any suggestions or feedback on the above greatly appreciated!! jimb [f] www.flickr.com/photos/bitstream [c] 416.668.0034 [twitter] eco_bach -------------------------------------------- "...all improvisation is life in search of a style." - Bruce Mau,'LifeStyle' From gil at allflashwebsite.com Mon Jul 13 23:13:11 2009 From: gil at allflashwebsite.com (Gil Birman) Date: Tue, 14 Jul 2009 01:13:11 -0500 Subject: [osflash] Q: Hardware and software server requirements for image database In-Reply-To: <98430056357669226575316204329974963845-Webmail@me.com> References: <98430056357669226575316204329974963845-Webmail@me.com> Message-ID: <44ce57930907132313l1fdf809cs9bba6fc1d9483f9@mail.gmail.com> Digizex CMS accomplishes authentication, amf, database interaction, etc. using Zend PHP Framework (and Zend AMF). It is open source. The PHP side of the code is really simply once you understand Zend's MVC approach. http://code.google.com/p/digizex/ http://www.zend.com/en/community/framework gil On Mon, Jul 13, 2009 at 2:40 PM, wrote: > I am building a Flash AS3 application that allows users to modify images, and then submit-save them to a server. The user will then have the ability to log in and access these saved images in a thumbnail gallery. They can either delete an image or click a thumbnail to view it at original size. > > I am comfortable with the front end having built something similar in AS2 and Flash 8 a few years back. > > What will be required for the backend? > I assume some type of PHP-MySQL database is needed. > > Any particular hosting requirements? > Not sure about hosting issues requirements as the AS2 application I built never sent any actual binary data, but rather data describing the image transformations. > > How should actual image date be transferred to the server? > I assume I will need to make use of byteArray? > > Is there an existing tutorial or code sample that does something similar available for viewing-download? > > Are there any security restriction 'gotchas' associated with FP9 -10 I need to be aware of? > > Any suggestions or feedback on the above greatly ?appreciated!! > > jimb > > [f] www.flickr.com/photos/bitstream > [c] 416.668.0034 > [twitter] eco_bach > -------------------------------------------- > "...all improvisation is life in search of a style." > ? ? ? ? ? ? - Bruce Mau,'LifeStyle' > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > From david.qwk at gmail.com Wed Jul 15 19:52:30 2009 From: david.qwk at gmail.com (David Kim) Date: Wed, 15 Jul 2009 21:52:30 -0500 Subject: [osflash] screen capture Message-ID: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> Hi, I have a question about screen capturing in Red 5. Is it possible to capture the desktop screen with Red 5? What does the ScreenVideo class do? Thank you in advance, David -------------- next part -------------- An HTML attachment was scrubbed... URL: From zzzarate at gmail.com Thu Jul 16 01:45:11 2009 From: zzzarate at gmail.com (Juan Delgado) Date: Thu, 16 Jul 2009 09:45:11 +0100 Subject: [osflash] screen capture In-Reply-To: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> References: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> Message-ID: <9279f0f80907160145l45a5f0b3oc80919dc01ca4bb6@mail.gmail.com> Red5 executes on the server, if you want to capture the screen you need something that runs on the client. Only then you can start thinking of sending it to Red5 or whatever. Not sure what's the panorama these days about screen capturing with Flash apps, though. Juan On Thu, Jul 16, 2009 at 3:52 AM, David Kim wrote: > Hi, > > I have a question about screen capturing in Red 5. > Is it possible to capture the desktop screen with Red 5? > What does the ScreenVideo class do? > > Thank you in advance, > David > > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > > -- Juan Delgado - Z?rate http://zarate.tv http://blog.zarate.tv From david.qwk at gmail.com Thu Jul 16 05:29:06 2009 From: david.qwk at gmail.com (David Kim) Date: Thu, 16 Jul 2009 07:29:06 -0500 Subject: [osflash] screen capture In-Reply-To: <9279f0f80907160145l45a5f0b3oc80919dc01ca4bb6@mail.gmail.com> References: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> <9279f0f80907160145l45a5f0b3oc80919dc01ca4bb6@mail.gmail.com> Message-ID: <4bc10bc0907160529q65480c6cw8c270a403e0d2753@mail.gmail.com> Thank you, Juan. BTW, what is the class 'ScreenVideo' for? David On Thu, Jul 16, 2009 at 3:45 AM, Juan Delgado wrote: > Red5 executes on the server, if you want to capture the screen you > need something that runs on the client. Only then you can start > thinking of sending it to Red5 or whatever. > > Not sure what's the panorama these days about screen capturing with > Flash apps, though. > > Juan > > On Thu, Jul 16, 2009 at 3:52 AM, David Kim wrote: > > Hi, > > > > I have a question about screen capturing in Red 5. > > Is it possible to capture the desktop screen with Red 5? > > What does the ScreenVideo class do? > > > > Thank you in advance, > > David > > > > > > _______________________________________________ > > osflash mailing list > > osflash at osflash.org > > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > > > > -- > Juan Delgado - Z?rate > http://zarate.tv > http://blog.zarate.tv > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at radsl.net Thu Jul 16 07:40:18 2009 From: admin at radsl.net (Radsl) Date: Thu, 16 Jul 2009 10:40:18 -0400 Subject: [osflash] screen capture References: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> Message-ID: <6D307143FEB14609AD7E9DA62BBF3492@MOBILEE1705> please ask red5 mailing list. this list seems to be dead ----- Original Message ----- From: David Kim To: osflash at osflash.org Sent: Wednesday, July 15, 2009 10:52 PM Subject: [osflash] screen capture Hi, I have a question about screen capturing in Red 5. Is it possible to capture the desktop screen with Red 5? What does the ScreenVideo class do? Thank you in advance, David -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ------------------------------------------------------------------------------ _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Niels.Wolf at mediacatalyst.com Thu Jul 16 08:04:34 2009 From: Niels.Wolf at mediacatalyst.com (Niels Wolf) Date: Thu, 16 Jul 2009 17:04:34 +0200 Subject: [osflash] screen capture In-Reply-To: <6D307143FEB14609AD7E9DA62BBF3492@MOBILEE1705> Message-ID: This is list not dead.. Its just not a ?red5? specific mailing list On 7/16/09 4:40 PM, "Radsl" wrote: > please ask red5 mailing list. > this list seems to be dead >> >> ----- Original Message ----- >> >> From: David Kim >> >> To: osflash at osflash.org >> >> Sent: Wednesday, July 15, 2009 10:52 PM >> >> Subject: [osflash] screen capture >> >> >> Hi, >> >> I have a question about screen capturing in Red 5. >> Is it possible to capture the desktop screen with Red 5? >> What does the ScreenVideo class do? >> >> Thank you in advance, >> David >> >> >> -- >> This message has been scanned for viruses and >> dangerous content by MailScanner , and is >> believed to be clean. >> >> >> >> >> >> _______________________________________________ >> osflash mailing list >> osflash at osflash.org >> http://osflash.org/mailman/listinfo/osflash_osflash.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at radsl.net Thu Jul 16 08:16:28 2009 From: admin at radsl.net (Radsl) Date: Thu, 16 Jul 2009 11:16:28 -0400 Subject: [osflash] screen capture References: Message-ID: <861BB30631D8406C8D0C76F53A647E34@MOBILEE1705> Re: [osflash] screen captureI know, it was only to wakup people on this list ----- Original Message ----- From: Niels Wolf To: Open Source Flash Mailing List Sent: Thursday, July 16, 2009 11:04 AM Subject: Re: [osflash] screen capture This is list not dead.. Its just not a "red5" specific mailing list On 7/16/09 4:40 PM, "Radsl" wrote: please ask red5 mailing list. this list seems to be dead ----- Original Message ----- From: David Kim To: osflash at osflash.org Sent: Wednesday, July 15, 2009 10:52 PM Subject: [osflash] screen capture Hi, I have a question about screen capturing in Red 5. Is it possible to capture the desktop screen with Red 5? What does the ScreenVideo class do? Thank you in advance, David -- This message has been scanned for viruses and dangerous content by MailScanner , and is believed to be clean. -------------------------------------------------------------------------- _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ------------------------------------------------------------------------------ _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. -------------- next part -------------- An HTML attachment was scrubbed... URL: From postmaster at glenpike.co.uk Thu Jul 16 10:51:02 2009 From: postmaster at glenpike.co.uk (Glen Pike) Date: Thu, 16 Jul 2009 18:51:02 +0100 Subject: [osflash] screen capture In-Reply-To: <4bc10bc0907160529q65480c6cw8c270a403e0d2753@mail.gmail.com> References: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> <9279f0f80907160145l45a5f0b3oc80919dc01ca4bb6@mail.gmail.com> <4bc10bc0907160529q65480c6cw8c270a403e0d2753@mail.gmail.com> Message-ID: <4A5F6886.2030000@glenpike.co.uk> Hi, Here is a good link that may help you with capturing images from the screen. http://stackoverflow.com/questions/840358/export-animation-sequence-from-flash-as-jpegs Problem is that this saves to the user's computer. You could "post" the ByteArray to a server side script, which would save it, but I don't think you can upload to Red5 via that connection. http://stackoverflow.com/questions/762226/how-to-upload-a-bitmapdata-object-straight-to-my-server Bit of a guess, but I think the ScreenVideo class is for server-side actionscript to handle video files - possibly captured from a user's webcam which you can stream upto the server. Glen David Kim wrote: > Thank you, Juan. > > BTW, what is the class 'ScreenVideo' for? > > David > > On Thu, Jul 16, 2009 at 3:45 AM, Juan Delgado > wrote: > > Red5 executes on the server, if you want to capture the screen you > need something that runs on the client. Only then you can start > thinking of sending it to Red5 or whatever. > > Not sure what's the panorama these days about screen capturing with > Flash apps, though. > > Juan > > On Thu, Jul 16, 2009 at 3:52 AM, David Kim > wrote: > > Hi, > > > > I have a question about screen capturing in Red 5. > > Is it possible to capture the desktop screen with Red 5? > > What does the ScreenVideo class do? > > > > Thank you in advance, > > David > > > > > > _______________________________________________ > > osflash mailing list > > osflash at osflash.org > > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > > > > -- > Juan Delgado - Z?rate > http://zarate.tv > http://blog.zarate.tv > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > ------------------------------------------------------------------------ > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > -- Glen Pike 01326 218440 www.glenpike.co.uk -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.qwk at gmail.com Thu Jul 16 19:54:35 2009 From: david.qwk at gmail.com (David Kim) Date: Thu, 16 Jul 2009 21:54:35 -0500 Subject: [osflash] screen capture In-Reply-To: <4A5F6886.2030000@glenpike.co.uk> References: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com> <9279f0f80907160145l45a5f0b3oc80919dc01ca4bb6@mail.gmail.com> <4bc10bc0907160529q65480c6cw8c270a403e0d2753@mail.gmail.com> <4A5F6886.2030000@glenpike.co.uk> Message-ID: <4bc10bc0907161954o5c26472aobd258e7c360571@mail.gmail.com> Thank you for the links, Glen. Actually, we (team here) finally decided to use Jing for the capturing part...even though I don't know if the client will like this idea...^^ David On Thu, Jul 16, 2009 at 12:51 PM, Glen Pike wrote: > Hi, > > Here is a good link that may help you with capturing images from the > screen. > > > http://stackoverflow.com/questions/840358/export-animation-sequence-from-flash-as-jpegs > > Problem is that this saves to the user's computer. > > You could "post" the ByteArray to a server side script, which would > save it, but I don't think you can upload to Red5 via that connection. > > > http://stackoverflow.com/questions/762226/how-to-upload-a-bitmapdata-object-straight-to-my-server > > Bit of a guess, but I think the ScreenVideo class is for server-side > actionscript to handle video files - possibly captured from a user's webcam > which you can stream upto the server. > > Glen > > David Kim wrote: > > Thank you, Juan. > > BTW, what is the class 'ScreenVideo' for? > > David > > On Thu, Jul 16, 2009 at 3:45 AM, Juan Delgado wrote: > >> Red5 executes on the server, if you want to capture the screen you >> need something that runs on the client. Only then you can start >> thinking of sending it to Red5 or whatever. >> >> Not sure what's the panorama these days about screen capturing with >> Flash apps, though. >> >> Juan >> >> On Thu, Jul 16, 2009 at 3:52 AM, David Kim wrote: >> > Hi, >> > >> > I have a question about screen capturing in Red 5. >> > Is it possible to capture the desktop screen with Red 5? >> > What does the ScreenVideo class do? >> > >> > Thank you in advance, >> > David >> > >> > >> > _______________________________________________ >> > osflash mailing list >> > osflash at osflash.org >> > http://osflash.org/mailman/listinfo/osflash_osflash.org >> > >> > >> >> >> >> -- >> Juan Delgado - Z?rate >> http://zarate.tv >> http://blog.zarate.tv >> >> _______________________________________________ >> osflash mailing list >> osflash at osflash.org >> http://osflash.org/mailman/listinfo/osflash_osflash.org >> > > ------------------------------ > > _______________________________________________ > osflash mailing listosflash at osflash.orghttp://osflash.org/mailman/listinfo/osflash_osflash.org > > > -- > > Glen Pike > 01326 218440 > www.glenpike.co.uk > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at radsl.net Thu Jul 16 20:08:19 2009 From: admin at radsl.net (Radsl) Date: Thu, 16 Jul 2009 23:08:19 -0400 Subject: [osflash] screen capture References: <4bc10bc0907151952m4c051c24y91e5d868d78148b8@mail.gmail.com><9279f0f80907160145l45a5f0b3oc80919dc01ca4bb6@mail.gmail.com><4bc10bc0907160529q65480c6cw8c270a403e0d2753@mail.gmail.com><4A5F6886.2030000@glenpike.co.uk> <4bc10bc0907161954o5c26472aobd258e7c360571@mail.gmail.com> Message-ID: <40BC2D4761C44153B06A8449DA86B480@MOBILEE1705> until now there is no other that to install a plugin to make screen captures... ----- Original Message ----- From: David Kim To: Open Source Flash Mailing List Sent: Thursday, July 16, 2009 10:54 PM Subject: Re: [osflash] screen capture Thank you for the links, Glen. Actually, we (team here) finally decided to use Jing for the capturing part...even though I don't know if the client will like this idea...^^ David On Thu, Jul 16, 2009 at 12:51 PM, Glen Pike wrote: Hi, Here is a good link that may help you with capturing images from the screen. http://stackoverflow.com/questions/840358/export-animation-sequence-from-flash-as-jpegs Problem is that this saves to the user's computer. You could "post" the ByteArray to a server side script, which would save it, but I don't think you can upload to Red5 via that connection. http://stackoverflow.com/questions/762226/how-to-upload-a-bitmapdata-object-straight-to-my-server Bit of a guess, but I think the ScreenVideo class is for server-side actionscript to handle video files - possibly captured from a user's webcam which you can stream upto the server. Glen David Kim wrote: Thank you, Juan. BTW, what is the class 'ScreenVideo' for? David On Thu, Jul 16, 2009 at 3:45 AM, Juan Delgado wrote: Red5 executes on the server, if you want to capture the screen you need something that runs on the client. Only then you can start thinking of sending it to Red5 or whatever. Not sure what's the panorama these days about screen capturing with Flash apps, though. Juan On Thu, Jul 16, 2009 at 3:52 AM, David Kim wrote: > Hi, > > I have a question about screen capturing in Red 5. > Is it possible to capture the desktop screen with Red 5? > What does the ScreenVideo class do? > > Thank you in advance, > David > > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > > -- Juan Delgado - Z?rate http://zarate.tv http://blog.zarate.tv _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -------------------------------------------------------------------------- _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -- Glen Pike 01326 218440 www.glenpike.co.uk _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ------------------------------------------------------------------------------ _______________________________________________ osflash mailing list osflash at osflash.org http://osflash.org/mailman/listinfo/osflash_osflash.org -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. -------------- next part -------------- An HTML attachment was scrubbed... URL: From sirocco at gmx.fr Fri Jul 17 14:46:01 2009 From: sirocco at gmx.fr (Guillaume) Date: Fri, 17 Jul 2009 23:46:01 +0200 Subject: [osflash] red5-0.7.0.tar.gz has wrong md5sum on red5.nl Message-ID: <20090717234601.00000c01@unknown> Hi, Just a warning to say that the file red5-0.7.0.tar.gz has wrong md5sum on one server. MD5 shall be: 32ce787c3a1df8c3a78bad7a98919369 Wrong md5 at this location: http://red5.nl/installer/red5-0.7.0.tar.gz (corrupted file ?) This server file has a correct md5: http://www.nielsenaa.com/red5-installers/red5-0.7.0.tar.gz This server has lost its domain name ? http://red5.fr Guillaume From lists at herrodius.com Sat Jul 18 09:56:29 2009 From: lists at herrodius.com (Christophe Herreman) Date: Sat, 18 Jul 2009 18:56:29 +0200 Subject: [osflash] [ANN] Spring ActionScript 0.8 Released Message-ID: <921a3fb60907180956j32de49b1x9690ca51c9fcaff3@mail.gmail.com> Dear Community, I'm pleased to announce that the Spring ActionScript 0.8 release is now available. This release includes the Spring ActionScript framework, the Cairngorm extensions and the PureMVC extensions. For more info, please see the official announcement at http://www.herrodius.com/blog/176 -- Christophe Herreman http://www.herrodius.com http://www.pranaframework.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From yzh44yzh at gmail.com Tue Jul 21 08:17:32 2009 From: yzh44yzh at gmail.com (Yuri Zhloba) Date: Tue, 21 Jul 2009 18:17:32 +0300 Subject: [osflash] Creating MP3 file on the fly In-Reply-To: References: <074F5DC0-3BFF-4ECE-80FF-A9A7B6DE839F@gmx.de> Message-ID: Hi. You can create flash-app, that can record audio from microphone to FLV file using Red5 or other media server. Than you can convert FLV to MP3 using ffmpeg command line tool. 2009/7/13 Niels Wolf > And you could ask the people from hobnox.. They seems to have looked into > any issue possible facing sounds in actionscript. They might have not a > solution to your problem but may be some thoughts and links.. > > http://www.hobnox.com/audiotool.1046.en.html > > > On 7/12/09 3:24 PM, "Friedemann Altrock" wrote: > > > Hi, > > you could try to port LAME or sth like that to the avm with alchemy: > > http://labs.adobe.com/technologies/alchemy/ > > > > -- > > Regards > > Friedemann Altrock > > > > Am 12.07.2009 um 15:02 schrieb Cassiano Rabelo: > > > >> Hello. > >> I'm researching of a way to create a Flash App which will create MP3 > >> file on the fly after some sort of music composition done by the user. > >> After searching the list archive, I found this post that mentioned > >> what I'm after, but there was no conclusive info on the matter: > >> http://osflash.org/pipermail/osflash_osflash.org/2007-May/013509.html > >> > >> I was wondering if someone could point me in the right direction. > >> Thanks a lot for your time, > >> Cassiano > >> > >> _______________________________________________ > >> osflash mailing list > >> osflash at osflash.org > >> http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > > _______________________________________________ > > osflash mailing list > > osflash at osflash.org > > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > -- ????? ???? skype: yzh44yzh jabber: yzh44yzh at gmail.com icq: 303637330 phone: 8 029 400 07 53 (belcel) site: http://yzh44yzh.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From maxlemans at free.fr Sun Jul 26 01:47:18 2009 From: maxlemans at free.fr (Max) Date: Sun, 26 Jul 2009 10:47:18 +0200 Subject: [osflash] Understanding AMF Connect Function Call (RTMP) Message-ID: <4A6C1816.8030309@free.fr> Hi all! I am trying to understand how is built the first AMF packet sent by Flash player when trying to connect to an RTMP server with the NetConnection::connect method (and hope to understand the next ones) ;) I built a test server able to handle the rtmp handshake process, decode AMF packet type (0x14 for function call, for example), but I am still unable to go further and understand what's in the AMF packet body. I read Adobe AMF0 and AMF3 specifications (mainly oriented to understand flash remoting) but did not find anything interesting for this test case. If someone could help me, I would appreciate very much! :) Please read the PDF document I published at : http://bilibul.free.fr/Amf_Connect_Function_Call.pdf. You will find a packet I captured and what I manage to detect and separate. Many thanks everyone! :) -- Max. From srinathgnath at gmail.com Mon Jul 27 04:53:32 2009 From: srinathgnath at gmail.com (srinath gnath) Date: Mon, 27 Jul 2009 17:23:32 +0530 Subject: [osflash] Remote desktop Message-ID: <5d20944e0907270453r3737ba41kf810bfb0c8798b48@mail.gmail.com> Hi I need to your help in developing remote desktop. As you already done in flash, you can defintely guide me. As per yoour post " http://osflash.org/pipermail/osflash_osflash.org/2009-March/016597.html", you wrote that u have done a project. Pleease kindly share the project with me. So that it will be helpful for me to start the work on remote desktop. Thanks & Regards, Srinath -------------- next part -------------- An HTML attachment was scrubbed... URL: From martingpub at gmail.com Tue Jul 28 03:11:46 2009 From: martingpub at gmail.com (Martin Gonzalez) Date: Tue, 28 Jul 2009 07:11:46 -0300 Subject: [osflash] [ANN] Web Adventure Kit Beta released. Message-ID: <3b04eae20907280311x3c08da48mde3d2fac712d5923@mail.gmail.com> I'd like to announce that the Web Adventure Kit goes beta. http://www.web-adventure-kit.com/ Cheers Martin. -------------- next part -------------- An HTML attachment was scrubbed... URL: From maxlemans at free.fr Wed Jul 29 01:15:00 2009 From: maxlemans at free.fr (maxlemans at free.fr) Date: Wed, 29 Jul 2009 10:15:00 +0200 Subject: [osflash] Mistakes in http://osflash.org/rtmp_os Message-ID: <1248855300.4a700504dffae@webmail.free.fr> Hi all! I keep analysing RTMF protocol in order to developpe an implementation of RTMP in PHP. I read Chris Allen document "The AMF Packet explaind (Mick Merres)" available at http://www.acmewebworks.com/Downloads/openCS/TheAMF.pdf It seems to me it's a little bit confusing in order to understand exchanges between flash client and rtmp server. In fact, it seems this document mix up RTMF and AMF protocol. Especially, there are mistakes about headers. I made a manuel analysis of an RTMF packet sent from a RTMP server to a flash client about to send webcam capture video to the server (analyse of http://www.acmewebworks.com/Downloads/openCS/BitText.zip discussed here http://www.acmewebworks.com/Downloads/openCS/091305-initialMeeting.txt) This first analyse is attached to this mail (pdf format). Hope this helps. I may publish another analyse for video and/or audio streams later. Regards, -- Max. PS : OSFlash team, do not hesitate to publish or use this document if it seems usefull. From adnez7 at gmail.com Wed Jul 29 02:58:38 2009 From: adnez7 at gmail.com (ad nez) Date: Wed, 29 Jul 2009 11:58:38 +0200 Subject: [osflash] Mistakes in http://osflash.org/rtmp_os In-Reply-To: <1248855300.4a700504dffae@webmail.free.fr> References: <1248855300.4a700504dffae@webmail.free.fr> Message-ID: <19faaac80907290258l573e9a69v8919c3c46c359030@mail.gmail.com> On Wed, Jul 29, 2009 at 10:15 AM, wrote: > Hi all! > > It seems to me it's a little bit confusing in order to understand exchanges > between flash client and rtmp server. In fact, it seems this document mix > up > RTMF and AMF protocol. Especially, there are mistakes about headers. > Hi, it's been a while since I read those transcripts so I can't comment in detail, but rtmp is the protocol and amf a format which is used in/by the protocol. The rtmp specs can be downloaded here: http://www.adobe.com/devnet/rtmp/ http://en.wikipedia.org/wiki/Action_Message_Format http://en.wikipedia.org/wiki/Real_Time_Messaging_Protocol Greets, Jan -------------- next part -------------- An HTML attachment was scrubbed... URL: From maxlemans at free.fr Wed Jul 29 03:29:12 2009 From: maxlemans at free.fr (maxlemans at free.fr) Date: Wed, 29 Jul 2009 12:29:12 +0200 Subject: [osflash] Mistakes in http://osflash.org/rtmp_os In-Reply-To: <19faaac80907290258l573e9a69v8919c3c46c359030@mail.gmail.com> References: <1248855300.4a700504dffae@webmail.free.fr> <19faaac80907290258l573e9a69v8919c3c46c359030@mail.gmail.com> Message-ID: <1248863352.4a702478a24ce@webmail.free.fr> Selon ad nez : > On Wed, Jul 29, 2009 at 10:15 AM, wrote: > Hi, it's been a while since I read those transcripts so I can't comment in > detail, but rtmp is the protocol and amf a format which is used in/by the > protocol. That's it ! :) The frontier between RTMP and AMF is not well shown in the document on OSFlash website. That's what seems confusing to me and makes a few bytes discribed as "unknown" or with erroneous informations. Annoying as OSFlash is one of the most revelant results (and in my opinion most complet and interesting source) in Google to understand these fuzzy mecanisms implemented between flash client and media servers to exchange video and audio data. > The rtmp specs can be downloaded here: > http://www.adobe.com/devnet/rtmp/ I read theses specs too. I also found a few mistakes in it, example : bytes described as having to be set to 0x00 whereas other values are acceptable (and are not 0X00 in real applications). Specifications that should be read with caution in my opinion. Cheers, -- Max. From adammagaluk at gmail.com Thu Jul 30 06:13:21 2009 From: adammagaluk at gmail.com (Adam Magaluk) Date: Thu, 30 Jul 2009 09:13:21 -0400 Subject: [osflash] Red5 on Linux compared to Mac OS X Message-ID: <860789160907300613j2153191anab148727d8145a46@mail.gmail.com> Hello List, First off I am new to Red5 and have set up two servers on one my Macbook Pro (which was very easy to set up :)) and another on Centos. I have a sample flash program that sends an audio stream from the mic to one of the demos oflaDemo to be recorded. It works on my Mac but not my centos server, It said it connects and everything went fine but nothing ever gets saved on the linux server. I set all permissions to RWX. Any Thoughts? Thanks, Adam Magaluk -------------- next part -------------- An HTML attachment was scrubbed... URL: From rsteig23 at gmail.com Thu Jul 30 07:09:23 2009 From: rsteig23 at gmail.com (Raymond Steigerwalt) Date: Thu, 30 Jul 2009 10:09:23 -0400 Subject: [osflash] Red5 on Linux compared to Mac OS X In-Reply-To: <860789160907300613j2153191anab148727d8145a46@mail.gmail.com> References: <860789160907300613j2153191anab148727d8145a46@mail.gmail.com> Message-ID: Well you should probably send this message to red5 at osflash.org, as that is the red5 specific mailing list. But, on to your problem. What user is red5 running as? and are you sure you have rwx for ALL users? (chmod 777), not good from a security standpoint, but worth a try to chmod 777 the save directory just to make sure it is not a permissions problem. Also, do a ls -la to see who owns the directory. If you just have rw for the current user(and group) it won't do you any good if the red5 app is being ran under a different user in a different group. On Thu, Jul 30, 2009 at 9:13 AM, Adam Magaluk wrote: > Hello List, > > First off I am new to Red5 and have set up two servers on one my Macbook Pro > (which was very easy to set up :)) and another on Centos. > > I have a sample flash program that sends an audio stream from the mic to one > of the demos oflaDemo to be recorded. > > It works on my Mac but not my centos server, It said it connects and > everything went fine but nothing ever gets saved on the linux server. > > I set all permissions to RWX. > > Any Thoughts? > > > Thanks, > Adam Magaluk > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > > From adammagaluk at gmail.com Thu Jul 30 07:38:21 2009 From: adammagaluk at gmail.com (Adam Magaluk) Date: Thu, 30 Jul 2009 10:38:21 -0400 Subject: [osflash] Red5 on Linux compared to Mac OS X In-Reply-To: References: <860789160907300613j2153191anab148727d8145a46@mail.gmail.com> Message-ID: <860789160907300738r13a94d28ge81765e1ffc26d1e@mail.gmail.com> Sorry I got the mailing list mixed up. I tried to chmod 777 just to see if that would work but I got nothing. Should I see any log data besides the startup lines in the olfaDemo logfile? On Thu, Jul 30, 2009 at 10:09 AM, Raymond Steigerwalt wrote: > Well you should probably send this message to red5 at osflash.org, as > that is the red5 specific mailing list. > > But, on to your problem. What user is red5 running as? and are you > sure you have rwx for ALL users? (chmod 777), not good from a security > standpoint, but worth a try to chmod 777 the save directory just to > make sure it is not a permissions problem. > > Also, do a ls -la to see who owns the directory. If you just have rw > for the current user(and group) it won't do you any good if the red5 > app is being ran under a different user in a different group. > > > On Thu, Jul 30, 2009 at 9:13 AM, Adam Magaluk > wrote: > > Hello List, > > > > First off I am new to Red5 and have set up two servers on one my Macbook > Pro > > (which was very easy to set up :)) and another on Centos. > > > > I have a sample flash program that sends an audio stream from the mic to > one > > of the demos oflaDemo to be recorded. > > > > It works on my Mac but not my centos server, It said it connects and > > everything went fine but nothing ever gets saved on the linux server. > > > > I set all permissions to RWX. > > > > Any Thoughts? > > > > > > Thanks, > > Adam Magaluk > > > > _______________________________________________ > > osflash mailing list > > osflash at osflash.org > > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > > _______________________________________________ > osflash mailing list > osflash at osflash.org > http://osflash.org/mailman/listinfo/osflash_osflash.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: