Как я могу преобразовать презентацию Powerpoint в видеофайл (AVI или WMV)?

1576
Nathan Fellman

Какие инструменты могут конвертировать презентации Powerpoint в видео форматы?

Бесплатно (как в пиве или как в речи) предпочтительнее, так как это разовая вещь.

4

5 ответов на вопрос

2
saveenr

В более новых версиях PowerPoint эта функция встроена в них. Например, в PowerPoint 2010 вы можете напрямую сохранить презентацию в виде файла WMV.

Выберите « Файл»> «Сохранить и отправить»> «Создать видео», а затем нажмите « Создать видео».

1
Fredrik Mörk

Вы можете сохранить слайды как изображения (Файл -> Сохранить как -> выбрать подходящий формат файла изображения в списке форматов файлов), а затем использовать Windows Movie Maker для создания файлов изображений в формате avi или wmv.

1
mas

Camtasia Studio от Techsmith может записать всю презентацию Microsoft Pwerpoint, включая голосовое повествование. Доступен не бесплатный продукт, а полнофункциональная пробная версия с ограниченным сроком действия, позволяющая провести оценку перед покупкой.

1
Bruce McLeod

Хорошо, если у вас есть доступ к версии PowerPoint для Mac, вы можете перейти к файлу, сохранить как фильм и экспортировать как быстрый фильм, а затем преобразовать его в AVI.

1
Rory

As @saveenr describes, you can do this in Powerpoint 2013. Unfortunately the quality isn't great if you use the menu option directly but you can relatively easily overcome that with a touch of VBA.

  • Open your presentation in PowerPoint 2013
  • Press ALT F11 to open the VBA editor
  • Choose Insert > Module menu and paste in the code below:

    '''' Export the current presentation to a mwv movie Sub MakeVideo() If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then ActivePresentation.CreateVideo FileName:=Environ("USERPROFILE") & "\Desktop\FromPowerpoint.wmv", _ UseTimingsAndNarrations:=True, _ VertResolution:=720, _ FramesPerSecond:=30, _ Quality:=100 Else: MsgBox "There is another conversion to video in progress" End If End Sub

  • Press F5 or Main Menu > Run > Run Sub/Userform menu item

This will execute the macro which exports a file fromPowerpoint.wmv to your desktop. You'll see at the bottom of the main Powerpoint window, in the middle of the status bar, a progress indicator of the export. It's likely to take at least a a few minutes.

The code above exports to 720p resolution. You can change the 720 value about to 1080 for full hd resolution. See MSDN reference for other options (although the documentation is pretty rubbish).

If you want mp4 output format just change .wmv to .mp4. I believe the mp4 is supported from PowerPoint 2013 but this might work with wmv in 2010.

(Thanks to John SR Wilson for the code example).

Похожие вопросы