STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228054
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/61411777?noj=FRM61411777-25DN" width="1" height="1"></div>

This is the wiki page for Flash #214843
Visit the flash's index page for basic data and a list of seen names.


PopCenturyV0.swf
6,41 MiB, 00:01 | [W] [I]

Threads (1):

[NQ3K1NQ]F ! http://boards.4chan.org/f/thread/3367324/help-with-as3
ARCHIVEDDiscovered: 10/11 -2018 08:49:43 Ended: 11/11 -2018 03:23:26Flashes: 1 Posts: 13
File: PopCenturyV0.swf-(6.41 MB, 720x480, Loop)
[_] Help with AS3 Anon 3367324 I am using Flashdevelop, I dont want to go through the hassle getting Adobes program so eat shit. Everything has to be 100% AS3 script. I'm making a loop using a separate video(FLV) and audio(MP3) file. I've managed to get the MP3 to embed into the SWF and "loop" (playing 99999+ times) using code. But I've hit a brick wall trying to embed the FLV into the SWF and play it. Theres no documentation on it, trying to search for it leads to unanswered post on the FD forum, and two threads about FLV streaming code which doesnt seem to work either. All other results are for dropping files into the timeline in Adobe so there has to be some autocoding going on there that would be handy to be able to look at. If anyone has any ideas would be glad to try. Heres the current audio portion, might aswell test out if it actually does work.
>> [_] Anon 3367333 The one thing I can tell you (I tried to do what you are doing a while back, but didn't manage to in the end) is that for some esoteric bullshit I can't quite understand, some h264 encoded videos, including the ones put out by ffmpeg on its default configuration, don't work at all and will result in a black screen no matter what. So until you get the coding part down to a t, I recommend using good old h263 just to be sure that isn't the problem.
>> [_] Anon 3367336 >># >6MBs for audio only oh boy, you might want to cut that 7 minute song. But anyways try the built-in help or a guide to coding, I'm sure it must be there somewhere, perhaps in the help tab Also I don't know who said installing pirated adobe is a shit ton of work because it isn't, or are you afraid of any installations that require more than 4 steps? just get it here https://drive.google.com/uc?id=1th9gmD4d Era3I9JvDSQZidq10h6TEG6y&export=download it's the whole CS6 package and the password is /F/LAGSHIP. Every necessary file and installation process is in there so giddyup
>> [_] Anon 3367337 >># it is actually possible to embed videos with h264 (every AMM flash, or all of the flashes using that white circle) but I don't know how so the safest way is to just convert the mp4 file with adobe media encoder, which encodes in h263, which you can also find in here >>#
>> [_] Anon 3367354 >># Sauce for the song?
>> [_] Anon 3367364 >># >># >># Thanks for the tips guys >># Its the audio loop disney used to use for their resort info channels at WDW, its nothing but jazz/weather channel style version of disney songs. They replaces in late 2015 with standard fare orchestra of disney songs.
>> [_] Anon 3367382 >># >Help request >"so eat shit" in the first sentence That's where I stopped reading. When will Anons learn this is never a good idea?
>> [_] Anon 3367387 Jeez guys, get it together. >># >># This. >># Really? mp3 + FLV?? Why not use visuals in a not bullshit video format. Make a gif from that or whatever. If you use FLV it should already have the audio included to make it worth it. As far as I know: Embedding video in swf is ass. See http://eye.swfchan.com/services/flvmaker/ Old On2VP6 can be used to make flvs that are embedable on the main timeline. For everything else you need those special hacks and also preload the whole shit. You can try use this AS3 to embed the video on the first keyframe: import flash.media.Video; import flash.utils.getQualifiedClassName; var frame:DisplayObjectContainer = stage.getChildAt(0) as DisplayObjectContainer; for (var i:int=0; i<frame.numChildren; i++) { var disobj:DisplayObject = frame.getChildAt(i); if (getQualifiedClassName(disobj)=="flash.m edia::Video") { (disobj as Video).smoothing = true; (disobj as Video).deblocking = 5; } } >># The circle preloader is from swfchan's converter tool: http://eye.swfchan.com/services/swfh264/ Use the swiff army knife to get the fitting flv for that.
>> [_] Anon 3367439 >># Why on earth would you need to do this in a swf? Sounds like you're going through a lot of pain for something webm is more suitable for. Are there very good reasons why you need it to be flash? Also, it sounds like you're using a for loop with a large counter to replay the audio. Any reason not to use a while or a jump to the beginning?
>> [_] Anon 3367444 >># Hey, do you have the audio or video source for this? It's really great. There's a lot of them on youtube and I'm not finding this one.
>> [_] Anon 3367477 >># encode your video with ffmpeg and flv1 codec to a swf file. code: public class Main extends Sprite { [Embed(source="../the video.swf")] // Let FlashDevelop generate a Embed thingy public var Video1:Class; public var MovieVideo:MovieClip; public function Main() { MovieVideo = new Video1(); scene1.rotationX = 0.0; // forces Smoothing when scaled. addChild(Movie Video); works for me :) also on swfchan is a swfH264 tool, you could try to embed that in your swf, might work
>> [_] Anon 3367479 >># Did you subtracted the mp3 header in the play function? In Audacity you can see the silence at the beginning and set the ms in the play function
>> [_] Anon 3367484 >># You need to leave



http://swfchan.net/43/214843.shtml
Created: 10/11 -2018 08:53:30 Last modified: 11/11 -2018 05:25:55 Server time: 25/04 -2024 16:38:25