001package net.bramp.ffmpeg.builder; 002 003import com.google.common.base.Ascii; 004 005public enum Strict { 006 VERY, // strictly conform to an older more strict version of the specifications or reference 007 // software 008 STRICT, // strictly conform to all the things in the specificiations no matter what consequences 009 NORMAL, // normal 010 UNOFFICIAL, // allow unofficial extensions 011 EXPERIMENTAL; 012 013 @Override 014 public String toString() { 015 // ffmpeg command line requires these options in lower case 016 return Ascii.toLowerCase(name()); 017 } 018}