]> git.sesse.net Git - nageru/blob - futatabi/export.h
Support exporting multiple clips of a playlist, with fades and all.
[nageru] / futatabi / export.h
1 #ifndef _EXPORT_H
2 #define _EXPORT_H 1
3
4 #include <string>
5 #include <vector>
6
7 void export_multitrack_clip(const std::string &filename, const Clip &clip);
8 void export_interpolated_clip(const std::string &filename, const std::vector<Clip> &clips);
9
10 #endif