HomeSort by relevance Sort by last modified time
    Searched defs:samples_per_second (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/contrib/ffmpeg/
encode_audio_op.cc 33 const int32 samples_per_second) {
42 context, CreateAudioFile(file_format, bits_per_second, samples_per_second,
89 "samples_per_second must be a rank-0 tensor but got shape ",
99 const int32 samples_per_second = variable
106 OP_REQUIRES(context, samples_per_second > 0,
108 "samples_per_second must be positive, but got: ",
109 samples_per_second));
115 Encode(context, contents, file_format, bits_per_second, samples_per_second);
125 .Input("samples_per_second: int32")
137 having `1/samples_per_second` time between them. The output file will contai
    [all...]
decode_audio_op.cc 46 const string& file_format, const int32 samples_per_second,
56 ffmpeg::ReadAudioFile(temp_filename, file_format, samples_per_second,
130 "samples_per_second must be a rank-0 tensor but got shape ",
141 const int32 samples_per_second = variable
152 OP_REQUIRES(context, samples_per_second > 0,
154 "samples_per_second must be positive, but got: ",
155 samples_per_second));
161 Decode(context, contents, file_format, samples_per_second, channel_count,
175 .Input("samples_per_second: int32")
199 having `1/samples_per_second` time between them. If the `channel_count` i
    [all...]

Completed in 72 milliseconds