-2

**I am using ruby 1.9.3 it would be helpful if i can get any gem name or method to convert the .ppt to .mp4

Sanket
  • 167
  • 6

1 Answers1

0

PPTX >> PNG >> MP4

You can use docsplit gem to convert PDF to PNG

Docsplit.extract_images('test.pdf', :format => [:png])

and ffmpeg to convert PNGs to MP4.

ffmpeg -framerate 1/5 -i img_%d.png -c:v libx264 -vf scale=1280:-2 -pix_fmt yuv420p output.mp4

if your player cannot handle a non-standard frame rate add -r 30 eg. VLC

ffmpeg -framerate 1/5 -i img_%d.png -r 30 -c:v libx264 -vf scale=1280:-2 -pix_fmt yuv420p output.mp4

check docs for more

PGill
  • 2,680
  • 15
  • 18