Home
last modified time | relevance | path

Searched refs:mp3_file (Results 1 – 18 of 18) sorted by relevance

/dports/audio/rioutil/rioutil-1.5.0/librioutil/
H A Did3.c316 dstp = (unsigned char *)mp3_file->title;
319 dstp = (unsigned char *)mp3_file->artist;
331 dstp = (unsigned char *)mp3_file->album;
335 dstp = mp3_file->year2;
339 dstp = mp3_file->genre2;
364 if (strlen (mp3_file->title) == 0) {
369 if (strlen (mp3_file->artist) == 0) {
374 if (strlen (mp3_file->album) == 0) {
382 if (mp3_file->trackno2 == 0)
384 mp3_file->trackno2 = tag_data[126];
[all …]
H A Dmp3.c59 struct mp3_file { struct
385 struct mp3_file mp3; in get_mp3_info()
394 mp3_file->sample_rate = mp3.samplerate; in get_mp3_info()
395 mp3_file->time = mp3.length/1000; in get_mp3_info()
396 mp3_file->size = mp3.file_size; in get_mp3_info()
409 rio_file_t *mp3_file = newInfo->data; in mp3_info() local
415 free(mp3_file); in mp3_info()
421 free(mp3_file); in mp3_info()
435 mp3_file->bits = 0x10000b11; in mp3_info()
436 mp3_file->type = TYPE_MP3; in mp3_info()
[all …]
/dports/audio/mp3_check/mp3_check-1.98/
H A DFOR_TESTING9 md5sum <mp3_file.mp3>
11 Then run mp3_check -a -sf <mp3_file.mp3> > <new_mp3.mp3>
28 Then run mp3_check -a -sf <mp3_file.mp3> > <new_mp3.mp3>
44 md5sum <mp3_file.mp3>
46 Then run mp3_check -a -s <mp3_file.mp3> > <new_mp3.mp3>
/dports/audio/mp3_check/mp3_check-1.98/mp3_check-1.95-rjk/
H A DFOR_TESTING9 md5sum <mp3_file.mp3>
11 Then run mp3_check -a -sf <mp3_file.mp3> > <new_mp3.mp3>
28 Then run mp3_check -a -sf <mp3_file.mp3> > <new_mp3.mp3>
44 md5sum <mp3_file.mp3>
46 Then run mp3_check -a -s <mp3_file.mp3> > <new_mp3.mp3>
/dports/audio/gmtp/gmtp-1.3.11/src/
H A Dmetatag_info.c145 fseek(mp3_file, (id3_size + 10), SEEK_CUR); in get_mp3_header()
147 fseek(mp3_file, (id3_size), SEEK_CUR); in get_mp3_header()
166 fseek(mp3_file, -9, SEEK_CUR); in get_mp3_header()
194 fseek(mp3_file, -9, SEEK_CUR); in get_mp3_header()
213 fseek(mp3_file, (framesize - 10), SEEK_CUR); in get_mp3_header()
226 FILE * mp3_file = NULL; in get_mp3_info() local
242 mp3_file = fopen(filename, "r"); in get_mp3_info()
243 if (mp3_file == NULL) in get_mp3_info()
248 fclose(mp3_file); in get_mp3_info()
254 if (get_mp3_header(mp3_file, &header_info) == TRUE) { in get_mp3_info()
[all …]
/dports/audio/p5-MP3-ID3v1Tag/MP3-ID3v1Tag-1.11/lib/MP3/
H A DID3v1Tag.pm78 my($class,$mp3_file,$readonly) = @_;
82 if( -w $mp3_file || !$readonly) {
83 …$self->{FileHandle}->open("+<${mp3_file}") or (warn("Can't open ${mp3_file}: $!") and return undef…
86 …$self->{FileHandle}->open("<${mp3_file}") or (warn("Can't open ${mp3_file}: $!") and return undef);
89 $self->{filename} = $mp3_file;
/dports/audio/py-eyed3/eyeD3-0.9.6/tests/mp3/
H A Dtest_infos.py71 for mp3_file in mp3s:
72 errors = _test_file(os.path.join(data_d, mp3_file))
80 for mp3_file in sys.argv[1:]:
81 errors = _test_file(mp3_file)
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/minimp3-sys-0.3.2/examples/
H A Dexample.rs10 mp3_file: &[u8], in decode_frame()
17 mp3_file.as_ptr(), in decode_frame()
18 mp3_file.len() as _, in decode_frame()
/dports/audio/py-fmoo-audiotools/audiotools-3.0/audiotools/
H A Did3v1.py165 def parse(cls, mp3_file): argument
175 mp3_file.seek(-128, 2)
185 mp3_file.read(128))
197 def build(self, mp3_file): argument
209 mp3_file.write(
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/extractor/
H A Dpalcomp3.py48 mp3_file = music.get('mp3File')
49 if mp3_file:
51 'url': mp3_file,
/dports/www/youtube_dl/youtube-dl/youtube_dl/extractor/
H A Dpalcomp3.py49 mp3_file = music.get('mp3File')
50 if mp3_file:
52 'url': mp3_file,
/dports/games/py-mnemosyne/Mnemosyne-2.7.3/mnemosyne/example_plugins/
H A Dresponsive_voice_tts.py41 with open(filename, 'wb') as mp3_file:
42 mp3_file.write(data)
H A Dgoogle_cloud_tts.py46 with open(filename, 'wb') as mp3_file:
47 mp3_file.write(response.audio_content)
/dports/audio/mp3plot/mp3plot-0.6.0/src/
H A DMakefile.am6 mp3_file.cc \
H A DMakefile.in56 am_mp3plot_OBJECTS = main.$(OBJEXT) mp3_file.$(OBJEXT) \
196 mp3_file.cc \
/dports/audio/rioutil/rioutil-1.5.0/include/
H A Drioi.h610 int get_id3_info (char *file_name, rio_file_t *mp3_file);
/dports/www/py-aiohttp/aiohttp-3.7.4.post0/docs/
H A Dweb_quickstart.rst536 mp3_file = data['mp3'].file
538 content = mp3_file.read()
542 {'CONTENT-DISPOSITION': mp3_file}))
/dports/audio/py-fmoo-audiotools/audiotools-3.0/docs/programming/source/
H A Dmetadata.rst694 .. classmethod:: ID3v1Comment.parse(mp3_file)
700 .. method:: ID3v1Comment.build(mp3_file)