Giter Site home page Giter Site logo

powerpointaccessories's Introduction

Powerpoint Accessories

A .net core library to scan Powerpoint presentations (pptx) for common Audio Visual/presentational issues such as auto transitions and video issues.

Table of Contents


Example

powerpoint = PowerpointFactory.GetPowerpoint(dir);
scanner = IssueScannerFactory.GetIssueScanner(powerpoint);
scanner.Scan();
Dictionary<string, SlideModel> slides = (Dictionary<string, SlideModel>)powerpoint.slides;
foreach (KeyValuePair<string, SlideModel> slide in slides)
{
    if (slide.Value.Issues.Count != 0)
    {
      slide.Value.Issues.ForEach(x => Console.WriteLine($"{x.GetType()} {x.Description}"));
    }
    else
    {
      Console.WriteLine($"{slide.Value.slideId} has no issues");
    }

Installation

  • The repo contains three projects for visual studio. PowerpointAccessories is the library project, NUnitTests is the tests and the Run project is used to interface with the library package through command line.

Setup

clone this repo and build using .net core cli

$ dotnet build

Features

  • Scan pptx file for Auto Transistion, video and no click issues.
  • CLI to use library stand alone when not incorporating into software

Contributing

To get started...

Step 1

  • Option 1

    • ๐Ÿด Fork this repo!
  • Option 2

    • ๐Ÿ‘ฏ Clone this repo to your local machine using https://github.com/adamrcarter/PowerpointAccessories.git

Step 2

  • HACK AWAY! ๐Ÿ”จ๐Ÿ”จ๐Ÿ”จ

Step 3

  • ๐Ÿ”ƒ Create a new pull request

FAQ


License

License

powerpointaccessories's People

Contributors

adamrcarter avatar

Watchers

 avatar

powerpointaccessories's Issues

Issue folder is not added to git

Appears that the folder containing the issue classes have not been added to git so not pushed to git hub. Will add and push tomorrow.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.