diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2013-10-07 10:59:39 +0200 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2013-10-07 11:00:10 +0200 |
commit | 56f28f7aade8d22e3c882bfb42bfb289267e491c (patch) | |
tree | d7cee06305106693cbd14f76ac7af821f1df14d8 | |
parent | 87dce93a1abd3326a65a68284439bd11bf8db0e1 (diff) |
mi-todo: planning and todo comment update
-rw-r--r-- | mediainfo/TODO | 10 | ||||
-rw-r--r-- | mediainfo/src/mi-info.vala | 1 |
2 files changed, 9 insertions, 2 deletions
diff --git a/mediainfo/TODO b/mediainfo/TODO index f62ed01..b5588e1 100644 --- a/mediainfo/TODO +++ b/mediainfo/TODO @@ -52,9 +52,13 @@ http://www.headbands.com/gspot/v26x/index.htm - famfamfam-flag-png: locale/usr/share/flags/countries/ - geo-tags: map-widget?, link to google-maps?, rev-geocoding - artist: links to {last.fm,wikipedia} - - format dates nicely + - format dates nicely (current locale, xx days ago?) - more codec details - caps have profile/level strings, can we also turn them into wikilinks? +- bitrate and encode_size are related, calculate one from the other if missing + - encoded_size = duration * bitrate; + - bitrate = encoded_size / duration; + - needed in: quicktime, ogg/theora == deep scan mode == - play the file by using fakesinks and gather statistics: @@ -92,6 +96,10 @@ http://www.headbands.com/gspot/v26x/index.htm - one row per element - each row contains colored segments += TODO for gstreamer-plugins = +- wav: no bitrate for uncompressed files +- mp4: no bitrate for many formats + = TODO for discoverer = - add deep-scan mode (see above) - add a mode property: quick-scan, deep-scan diff --git a/mediainfo/src/mi-info.vala b/mediainfo/src/mi-info.vala index 792fafb..14124dc 100644 --- a/mediainfo/src/mi-info.vala +++ b/mediainfo/src/mi-info.vala @@ -655,7 +655,6 @@ public class MediaInfo.Info : Box add_table_row_for_string (table, row, "PixelAspect:", str); row++; - // TODO(ensonic): this seems to be always 0 str = "%u bits/pixel".printf (vinfo.get_depth()); add_table_row_for_string (table, row, "Bitdepth:", str); row++; |