diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/audio_content.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc index 6cce9536e..a89184de3 100644 --- a/src/lib/audio_content.cc +++ b/src/lib/audio_content.cc @@ -292,7 +292,7 @@ AudioContent::add_properties (list<UserProperty>& p) const if (stream) { p.push_back (UserProperty (_("Audio"), _("Channels"), stream->channels ())); - p.push_back (UserProperty (_("Audio"), _("Content audio frame rate"), stream->frame_rate(), _("Hz"))); + p.push_back (UserProperty (_("Audio"), _("Content audio sample rate"), stream->frame_rate(), _("Hz"))); } FrameRateChange const frc (_parent->active_video_frame_rate(), _parent->film()->video_frame_rate()); @@ -306,7 +306,7 @@ AudioContent::add_properties (list<UserProperty>& p) const p.push_back ( UserProperty ( _("Length"), - _("Full length in audio frames at content rate"), + _("Full length in audio samples at content rate"), c.frames_round (stream->frame_rate ()) ) ); @@ -319,7 +319,7 @@ AudioContent::add_properties (list<UserProperty>& p) const p.push_back ( UserProperty ( _("Length"), - _("Full length in audio frames at DCP rate"), + _("Full length in audio samples at DCP rate"), c.frames_round (resampled_frame_rate ()) ) ); |
