We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 923e28e commit 10985bdCopy full SHA for 10985bd
src/AvTranscoder/properties/FileProperties.hpp
@@ -49,6 +49,9 @@ class AvExport FileProperties
49
double getStartTime() const;
50
float getDuration() const; ///< in seconds, 0 if not available
51
size_t getBitRate() const; ///< total stream bitrate in bit/s, 0 if not available (result of a computation by ffmpeg)
52
+ /**
53
+ * @note Use uint64_t instead of size_t to ensure 64 bits size on 32-bits OS so we can manage Files > 4Go
54
+ */
55
uint64_t getFileSize() const; ///< in bytes
56
size_t getPacketSize() const;
57
0 commit comments