I saw image decoders like those tf.image.decode_pngin TensorFlow, but what about reading audio files (WAV, Ogg, MP3, etc.)? Is this possible without TFRecord?
eg. something like this :
filename_queue = tf.train.string_input_producer(['my-audio.ogg'])
reader = tf.WholeFileReader()
key, value = reader.read(filename_queue)
my_audio = tf.audio.decode_ogg(value)
source
share