1 /***************************************************************************
4 begin : Wed Dec 17 2003
5 copyright : (C) 2003 by Jason Wood
6 email : jasonwood@blueyonder.co.uk
7 * Copyright (C) 2010 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
8 ***************************************************************************/
10 /***************************************************************************
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
17 ***************************************************************************/
21 Timecode calculation code for reference
22 If we ever use Quicktime timecode with 50.94 Drop frame, keep in mind that there is a bug inthe Quicktime code
24 //CONVERT A FRAME NUMBER TO DROP FRAME TIMECODE
25 //Code by David Heidelberger, adapted from Andrew Duncan
26 //Given an int called framenumber and a double called framerate
27 //Framerate should be 29.97, 59.94, or 23.976, otherwise the calculations will be off.
32 int dropFrames = round(framerate * .066666); //Number of frames to drop on the minute marks is the nearest integer to 6% of the framerate
33 int framesPerHour = round(framerate*60*60); //Number of frames in an hour
34 int framesPer24Hours = framesPerHour*24; //Number of frames in a day - timecode rolls over after 24 hours
35 int framesPer10Minutes = round(framerate * 60 * 10); //Number of frames per ten minutes
36 int framesPerMinute = round(framerate)*60)- dropFrames; //Number of frames per minute is the round of the framerate * 60 minus the number of dropped frames
38 if (framenumber<0) //Negative time. Add 24 hours.
40 framenumber=framesPer24Hours+framenumber;
43 //If framenumber is greater than 24 hrs, next operation will rollover clock
44 framenumber = framenumber % framesPer24Hours; //% is the modulus operator, which returns a remainder. a % b = the remainder of a/b
46 d = framenumber\framesPer10Minutes; // \ means integer division, which is a/b without a remainder. Some languages you could use floor(a/b)
47 m = framenumber % framesPer10Minutes;
51 framenumber=framenumber + (dropFrames*9*d) + dropFrames*((m-dropFrames)\framesPerMinute);
55 framenumber = framenumber + dropFrames*9*d;
58 int frRound = round(framerate);
59 int frames = framenumber % frRound;
60 int seconds = (framenumber \ frRound) % 60;
61 int minutes = ((framenumber \ frRound) \ 60) % 60;
62 int hours = (((framenumber \ frRound) \ 60) \ 60);
65 ------------------------------------------------------------------------------------
67 //CONVERT DROP FRAME TIMECODE TO A FRAME NUMBER
68 //Code by David Heidelberger, adapted from Andrew Duncan
69 //Given ints called hours, minutes, seconds, frames, and a double called framerate
71 int dropFrames = round(framerate*.066666); //Number of drop frames is 6% of framerate rounded to nearest integer
72 int timeBase = round(framerate); //We don’t need the exact framerate anymore, we just need it rounded to nearest integer
74 int hourFrames = timeBase*60*60; //Number of frames per hour (non-drop)
75 int minuteFrames = timeBase*60; //Number of frames per minute (non-drop)
76 int totalMinutes = (60*hours) + minutes; //Total number of minuts
77 int frameNumber = ((hourFrames * hours) + (minuteFrames * minutes) + (timeBase * seconds) + frames) - (dropFrames * (totalMinutes - (totalMinutes \ 10)));
89 Timecode::Timecode(Formats format, double framesPerSecond)
91 setFormat(framesPerSecond, format);
98 void Timecode::setFormat(double framesPerSecond, Formats format)
100 m_displayedFramesPerSecond = (int)(framesPerSecond + 0.5);
101 m_dropFrameTimecode = (framesPerSecond / 1.00 != (int)framesPerSecond) ;
103 m_realFps = framesPerSecond;
104 if (m_dropFrameTimecode) {
105 m_dropFrames = round(m_realFps * .066666); //Number of frames to drop on the minute marks is the nearest integer to 6% of the framerate
106 m_framesPer10Minutes = round(m_realFps * 600); //Number of frames per ten minutes
110 double Timecode::fps() const
115 bool Timecode::df() const
117 return m_dropFrameTimecode;
120 const QString Timecode::mask(GenTime t) const
123 if (m_dropFrameTimecode) return "#99:99:99,99";
124 else return "#99:99:99:99";
126 if (m_dropFrameTimecode) return "99:99:99,99";
127 else return "99:99:99:99";
130 QString Timecode::reformatSeparators(QString duration) const
132 if (m_dropFrameTimecode)
133 return duration.replace(8, 1, ',');
134 return duration.replace(8, 1, ':');
137 int Timecode::getDisplayFrameCount(const QString &duration, bool frameDisplay) const
139 if (frameDisplay) return duration.toInt();
140 return getFrameCount(duration);
143 int Timecode::getFrameCount(const QString &duration) const
145 if (duration.isEmpty()) {
148 int hours, minutes, seconds, frames;
150 if (duration.at(0) == '-') {
152 hours = duration.mid(1, 2).toInt();
154 hours = duration.left(2).toInt();
156 minutes = duration.mid(3 + offset, 2).toInt();
157 seconds = duration.mid(6 + offset, 2).toInt();
158 frames = duration.right(2).toInt();
159 if (m_dropFrameTimecode) {
160 //CONVERT DROP FRAME TIMECODE TO A FRAME NUMBER
161 //Code by David Heidelberger, adapted from Andrew Duncan
162 //Given ints called hours, minutes, seconds, frames, and a double called framerate
164 int totalMinutes = (60 * hours) + minutes; //Total number of minutes
165 int frameNumber = ((m_displayedFramesPerSecond * 3600 * hours) + (m_displayedFramesPerSecond * 60 * minutes) + (m_displayedFramesPerSecond * seconds) + frames) - (m_dropFrames * (totalMinutes - floor(totalMinutes / 10)));
168 return (int)((hours * 3600.0 + minutes * 60.0 + seconds) * m_realFps + frames);
171 QString Timecode::getDisplayTimecode(const GenTime & time, bool frameDisplay) const
173 if (frameDisplay) return QString::number((int) time.frames(m_realFps));
174 return getTimecode(time);
177 QString Timecode::getTimecode(const GenTime & time) const
181 return getTimecodeHH_MM_SS_FF(time);
184 return getTimecodeHH_MM_SS_HH(time);
187 return getTimecodeFrames(time);
190 return getTimecodeSeconds(time);
194 "Unknown timecode format specified, defaulting to HH_MM_SS_FF"
196 return getTimecodeHH_MM_SS_FF(time);
200 const QString Timecode::getDisplayTimecodeFromFrames(int frames, bool frameDisplay) const
202 if (frameDisplay) return QString::number(frames);
203 return getTimecodeHH_MM_SS_FF(frames);
206 const QString Timecode::getTimecodeFromFrames(int frames) const
208 return getTimecodeHH_MM_SS_FF(frames);
213 QString Timecode::getStringTimecode(int frames, const double &fps, bool showFrames)
215 // Returns the timecode in an hh:mm:ss format
217 bool negative = false;
220 frames = qAbs(frames);
223 int seconds = (int)(frames / fps);
224 int frms = frames % (int) (fps + 0.5);
225 int minutes = seconds / 60;
226 seconds = seconds % 60;
227 int hours = minutes / 60;
228 minutes = minutes % 60;
232 text.append(QString::number(hours).rightJustified(2, '0', false));
234 text.append(QString::number(minutes).rightJustified(2, '0', false));
236 text.append(QString::number(seconds).rightJustified(2, '0', false));
239 text.append(QString::number(frms).rightJustified(2, '0', false));
246 QString Timecode::getEasyTimecode(const GenTime & time, const double &fps)
248 // Returns the timecode in an easily read display, like 3 min. 5 sec.
249 int frames = (int) time.frames(fps);
251 bool negative = false;
254 frames = qAbs(frames);
257 int seconds = (int)(frames / fps);
258 frames = frames - ((int)(fps * seconds));
260 int minutes = seconds / 60;
261 seconds = seconds % 60;
262 int hours = minutes / 60;
263 minutes = minutes % 60;
271 text.append(QString::number(hours).rightJustified(2, '0', false));
272 text.append(' ' + i18n("hour") + ' ');
275 if (minutes != 0 || trim) {
277 text.append(QString::number(minutes));
279 text.append(QString::number(minutes).rightJustified(2, '0', false));
280 text.append(' ' + i18n("min.") + ' ');
283 if (seconds != 0 || trim) {
285 text.append(QString::number(seconds));
287 text.append(QString::number(seconds).rightJustified(2, '0', false));
288 text.append(' ' + i18n("sec."));
292 text.append(QString::number(frames));
293 text.append(' ' + i18n("frames"));
300 const QString Timecode::getTimecodeHH_MM_SS_FF(const GenTime & time) const
302 if (m_dropFrameTimecode) {
303 return getTimecodeDropFrame(time);
305 return getTimecodeHH_MM_SS_FF((int) time.frames(m_realFps));
308 const QString Timecode::getTimecodeHH_MM_SS_FF(int frames) const
310 if (m_dropFrameTimecode) {
311 return getTimecodeDropFrame(frames);
314 bool negative = false;
317 frames = qAbs(frames);
320 int seconds = frames / m_displayedFramesPerSecond;
321 frames = frames % m_displayedFramesPerSecond;
323 int minutes = seconds / 60;
324 seconds = seconds % 60;
325 int hours = minutes / 60;
326 minutes = minutes % 60;
331 text.append(QString::number(hours).rightJustified(2, '0', false));
333 text.append(QString::number(minutes).rightJustified(2, '0', false));
335 text.append(QString::number(seconds).rightJustified(2, '0', false));
337 text.append(QString::number(frames).rightJustified(2, '0', false));
342 const QString Timecode::getTimecodeHH_MM_SS_HH(const GenTime & time) const
344 int hundredths = (int)(time.seconds() * 100);
346 bool negative = false;
347 if (hundredths < 0) {
349 hundredths = qAbs(hundredths);
352 int seconds = hundredths / 100;
353 hundredths = hundredths % 100;
354 int minutes = seconds / 60;
355 seconds = seconds % 60;
356 int hours = minutes / 60;
357 minutes = minutes % 60;
362 text.append(QString::number(hours).rightJustified(2, '0', false));
364 text.append(QString::number(minutes).rightJustified(2, '0', false));
366 text.append(QString::number(seconds).rightJustified(2, '0', false));
367 if (m_dropFrameTimecode)
371 text.append(QString::number(hundredths).rightJustified(2, '0', false));
376 const QString Timecode::getTimecodeFrames(const GenTime & time) const
378 return QString::number((int) time.frames(m_realFps));
381 const QString Timecode::getTimecodeSeconds(const GenTime & time) const
384 return locale.toString(time.seconds());
387 const QString Timecode::getTimecodeDropFrame(const GenTime & time) const
389 return getTimecodeDropFrame((int)time.frames(m_realFps));
392 const QString Timecode::getTimecodeDropFrame(int framenumber) const
394 //CONVERT A FRAME NUMBER TO DROP FRAME TIMECODE
395 //Based on code by David Heidelberger, adapted from Andrew Duncan
396 //Given an int called framenumber and a double called framerate
397 //Framerate should be 29.97, 59.94, or 23.976, otherwise the calculations will be off.
399 bool negative = false;
400 if (framenumber < 0) {
402 framenumber = qAbs(framenumber);
405 int d = floor(framenumber / m_framesPer10Minutes);
406 int m = framenumber % m_framesPer10Minutes;
408 if (m > m_dropFrames) {
409 framenumber += (m_dropFrames * 9 * d) + m_dropFrames * (floor((m - m_dropFrames) / (round(m_realFps * 60) - m_dropFrames)));
411 framenumber += m_dropFrames * 9 * d;
414 int frames = framenumber % m_displayedFramesPerSecond;
415 int seconds = (int) floor(framenumber / m_displayedFramesPerSecond) % 60;
416 int minutes = (int) floor(floor(framenumber / m_displayedFramesPerSecond) / 60) % 60;
417 int hours = floor(floor(floor(framenumber / m_displayedFramesPerSecond) / 60) / 60);
422 text.append(QString::number(hours).rightJustified(2, '0', false));
424 text.append(QString::number(minutes).rightJustified(2, '0', false));
426 text.append(QString::number(seconds).rightJustified(2, '0', false));
428 text.append(QString::number(frames).rightJustified(2, '0', false));