Skip to content
Snippets Groups Projects
Commit 52167d0a authored by luyikei's avatar luyikei
Browse files

MainWorkflow: Implement resizeClip

parent 238c035e
No related branches found
No related tags found
No related merge requests found
......@@ -251,6 +251,21 @@ MainWorkflow::moveClip( quint32 trackId, const QString& uuid, qint64 startFrame
}
}
void
MainWorkflow::resizeClip( const QString& uuid, qint64 newBegin, qint64 newEnd, qint64 newPos )
{
for ( auto it = m_clips.begin(); it != m_clips.end(); ++it )
{
if ( it.value()->uuid().toString() == uuid )
{
auto trackId = it.key();
auto clip = it.value();
Commands::trigger( new Commands::Clip::Resize( track( trackId ), clip, newBegin, newEnd, newPos ) );
}
}
}
bool
MainWorkflow::startRenderToFile( const QString &outputFileName, quint32 width, quint32 height,
double fps, const QString &ar, quint32 vbitrate, quint32 abitrate,
......
......@@ -150,6 +150,10 @@ class MainWorkflow : public QObject
Q_INVOKABLE
void moveClip( quint32 trackId, const QString& uuid, qint64 startFrame );
Q_INVOKABLE
void resizeClip( const QString& uuid, qint64 newBegin,
qint64 newEnd, qint64 newPos );
bool startRenderToFile( const QString& outputFileName, quint32 width, quint32 height,
double fps, const QString& ar, quint32 vbitrate, quint32 abitrate,
quint32 nbChannels, quint32 sampleRate );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment