Yessss, finally it's working. Thanks very much Pawel. You are great.
On Apr 30, 1:29 pm, Paweł Stanisławczuk <[email protected]> wrote: > Hi > > Yes, I wrote about it in my topic :) > > Please change VideoMaterial.as with this code: > > public function VideoMaterial(init:Object = null) > { > ini = Init.parse(init); > loop = ini.getBoolean("loop", false); > rtmp = ini.getString("rtmp", ""); > file = ini.getString("file", ""); > > sprite = new Sprite(); > if (rtmp != "") { > sprite.graphics.beginFill(0xCCCCCC, 0); > sprite.graphics.drawRect(0, 0, 320, 240); > sprite.graphics.endFill(); > } > > super(sprite,ini); > > if(file != "") > initStream(); > } > > hth > Paweł > > On 30 Kwi, 11:40, mnigian <[email protected]> wrote: > > > hi, Pawe³ > > > I did again everything that you said at your post and now I can see > > sth from the video but it seams to me that I am seeing one pixel of > > it. I'm hearing the sound of it, I can't see the whole video at my > > viewport but I am seeing a small part of it (a pixel a think). I check > > the size of my bitmapData and is the correct one. All these happens if > > I use the away3D v3.0.0. If I use the latest version (v3.5.0) I'm just > > hearing the sound and not seeing anything. Do you or anybody else have > > any idea why this is happening? > > > Thanks, > > mn > > > On Apr 29, 12:56 pm, mnigian <[email protected]> wrote: > > > > Hi Pawe³ > > > > thanks for your reply. I have already seen your post and I did all the > > > things that you proposed but I still I can't see the video of my > > > VideoMaterial and I'm just hearing the sound of it. I'll check it > > > again now to see if I missing sth. Thanks anyway! > > > > mnigian > > > > On Apr 29, 11:39 am, Pawe³ Stanis³awczuk > > > > <[email protected]> wrote: > > > > Hi minigian > > > > > Please look at my > > > > post:http://groups.google.com/group/away3d-dev/browse_thread/thread/ccfe8a... > > > > > GL > > > > Pawe³ > > > > > On 29 Kwi, 09:32, mnigian <[email protected]> wrote: > > > > > > Hi Jensa, thanks for your reply. > > > > > > I have control to the streaming server and I've already set the > > > > > "videoSampleAccess" flag (I went at applications/vod files of FMSS and > > > > > opened the main.asc file and I uncomment this flag) but I still can't > > > > > see my video. > > > > > Is it anything else that I have to do? > > > > > > On Apr 28, 8:29 pm, Jensa <[email protected]> wrote: > > > > > > > @mnigian the problem exists in the current version but I've found > > > > > > the > > > > > > solution. It's requires that you set the "videoSampleAccess" flag on > > > > > > the FMS server. If you have control of the server it's not a problem > > > > > > and if you use Influxis for hosting, they'll set it up for you if > > > > > > you > > > > > > ask them. > > > > > > > However - if you're on a shared server, this may be tricky as the > > > > > > flag > > > > > > allows all streams to be drawn to bitmaps so that kind of bypasses > > > > > > any > > > > > > DRM. > > > > > > > J > > > > > > > On Apr 28, 1:50 pm, mnigian <[email protected]> wrote: > > > > > > > > Hi everyone, > > > > > > > > I wonder if the problem with rtmp in VideoMaterial is still a > > > > > > > problem? > > > > > > > I am using the last version of Away3D v3.5.0 in order to map a > > > > > > > video > > > > > > > up to a plane. If I use progressive download everything is ok but > > > > > > > if I > > > > > > > want to use streaming video through the FMSS it doesn't work > > > > > > > correctly. I can hear the audio of the video but I can't see it. I > > > > > > > know that the problem is the Adobe's security restrictions but I > > > > > > > wonder if anyone have found any solution about this. > > > > > > > > Thanks in advance.
