Here's how to extract images from flash panoramas:
download:
https://cultivateunderstanding.com/Digital_Media/mae_hong_son/media/vess_alley_2_rev_1_out.swf
Thank you Dr. Alan Potkin for allowing me to use this file as an example.
Open the swf file in ffmpeg:
ffmpeg -i vess_alley_2_rev_1_out.swf
and get information on the file:
Input #0, swf, from 'vess_alley_2_rev_1_out.swf': Duration: N/A, bitrate: N/A Stream #0:0: Video: rawvideo (ARGB / 0x42475241), argb, 160x96, 60 tbr, 60 tbn [navigation help, two small files] Stream #0:1: Video: mjpeg (Baseline), yuvj444p(pc, bt470bg/unknown/unknown), 588x720 [b/w preview files + color files] SAR 96:96 DAR 49:60, 60 fps, 60 tbr, 60 tbnThis is not very deep info. But ffmpeg was not made for swf.
ffmpeg -i vess_alley_2_rev_1_out.swf xzx/%02d.jpg
ffmpeg -pattern_type glob -i "xzx/1/*.jpg" -vf "tile=6x1" xzx/vess2.jpg
ffmpeg -i xzx/11.jpg -i xzx/09.jpg -i xzx/07.jpg -i xzx/08.jpg -i xzx/10.jpg -i xzx/12.jpg -filter_complex 'hstack=inputs=6' xzx/vess2.jpg
ffmpeg -i dir/07.jpg -i dir/09.jpg -i dir/11.jpg -i dir/12.jpg -i dir/10.jpg -i dir/08.jpg -filter_complex 'hstack=inputs=6' x.jpg