Hi,
I need to download a PDF file from a web page that uses Flash Player as a document viewer (I guess it uses "Flexpaper Viewer" tool to protect the PDFs from download). Is it possible to download it? Or would I have to convert those SWF files to PDF (I don`t even know if that is possible...)?
EDIT: So, this Flexpaper Viewer is the PDF converted to SWF and split (each page gets one .swf file).
Here is what I did:
1: Grabbed the swf links using Adblock Plus function "Open blockable links"
2: Created a download list on IDM with those links and downloaded them.
3: Batch converted the .swf files to .tiff using SWFTools (swfrender command line tool) with this script:-x = width, -y = heightCode:for %F in (*.swf) do "C:\swftools\swfrender.exe" "%F" -o "%~dpnF.tiff" -X 1210 -Y 1712
4: Created a multipage PDF from those TIFFs using Irfanview Tumbnails
5: Now I'm doing a OCR (Optical Character Recognition) scan on the pdf with Abbyy FineReader 11 Corporate.
After the scan, I think the document will become a text searchable pdf, not 100% but the biggest part.
Thanks everyone that helped.
Best Regards.
+ Reply to Thread
Results 1 to 8 of 8
-
Last edited by Pynot; 16th Mar 2014 at 18:02.
-
Hey there,
as far as I know downloading the PDF file directly is not possible. You could try to download the swf file from the website using the "Flash and Video"-addon for Firefox (http://tinyurl.com/68ttf76). Then you have the file on your PC and print it or use a virtual printer to convert it to PDF (if that is possible in this case).
Best Regards -
Thanks for the help m8.
I managed to get all the swf files for each page with IDM (692 swf files).
Now I need to batch convert those swf frames into high dpi image or pdf file, so I can use Abbyy FineReader with OCR to create a searchable PDF.
Does anyone know a command to that on Windows 7, using FFMPEG or SWFTOOLS (SWFRENDER)?
Thanks. -
These are compressed swf shape elements (not video or jpg/png elements), so ffmpeg/mencoder/libav cannot open them
You can use swfrender from swftools to batch render each swf to a lossless png
Then you have the option to convert that png image sequence to whatever
Just replace the "PATHs" with the actual directory paths for swfrender.exe, the input directory, and output directory
Code:for %a in ("*.swf") do "SWF_RENDER_PATH\swfrender" "INPUT_PATH\%a" -o "OUTPUT_PATH\%~na.png"
-
Thank you very much for your help.
I had found that script to batch convert them some hours ago, but I've converted the .swfs to .tiff instead. Do you think that tiff has less quality than png, I mean do you think that png would be better for a OCR reading on Abbyy FineReader than tiff? Or a change in the container format has no difference in quality?
Thanks m8. -
There is no quality difference between tiff and png.
png will be smaller in filesize, because it uses lossless compression, tiff is uncompressed
If you're familiar with audio, the analogy would be flac vs. uncompressed pcm wav -
-
Similar Threads
-
Looking for suggestion for webcam recorder for web page (non-flash)
By chrisj in forum Newbie / General discussionsReplies: 0Last Post: 29th May 2013, 10:42 -
Looking for a video gallery or web carousel for a web page
By chrisj in forum Newbie / General discussionsReplies: 2Last Post: 18th May 2013, 16:51 -
Looking for a good web video/flash player
By dpunkz in forum Video Streaming DownloadingReplies: 5Last Post: 21st May 2011, 10:54 -
Web Video Player (Flash or HTML 5 ) with Playlist Functionality
By foochuck in forum Video Streaming DownloadingReplies: 6Last Post: 28th Oct 2010, 20:29 -
A good size of flash mp4 file on a page
By Cazz in forum Video Streaming DownloadingReplies: 5Last Post: 20th Dec 2009, 13:40