Home | History | Annotate | Download | only in ffmpeg

Lines Matching defs:samples_per_second

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 =
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 contain
144 samples_per_second: The number of samples per second that the audio should
165 context, context->GetAttr("samples_per_second", &samples_per_second_));
167 errors::InvalidArgument("samples_per_second must be > 0."));
204 .Attr("samples_per_second: int")
215 having `1/samples_per_second` time between them. The output file will contain
222 samples_per_second: The number of samples per second that the audio should have.