Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AIFF (0.16 sec)

  1. src/main/java/jcifs/smb1/util/mime.map

    application/x-wais-source      src              # WAIS Sources
    application/zip                zip jar          # ZIP Compressed File
    audio/basic                    au snd           # Audio Sound File
    audio/x-aiff                   aif aiff aifc    # AIFF Sound File
    audio/x-midi                   mid              # MIDI Sound File
    audio/x-pn-realaudio           ra ram rm rpm    # REALAUDIO Sound File
    audio/x-wav                    wav              # WAV Sound File
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  2. src/net/http/sniff_test.go

    	{"WAV audio #2", []byte("RIFF,\x00\x00\x00WAVEfmt \x12\x00\x00\x00\x06"), "audio/wave"},
    	{"AIFF audio #1", []byte("FORM\x00\x00\x00\x00AIFFCOMM\x00\x00\x00\x12\x00\x01\x00\x00\x57\x55\x00\x10\x40\x0d\xf3\x34"), "audio/aiff"},
    
    	{"OGG audio", []byte("OggS\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x7e\x46\x00\x00\x00\x00\x00\x00\x1f\xf6\xb4\xfc\x01\x1e\x01\x76\x6f\x72"), "application/ogg"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. src/net/http/sniff.go

    	// https://mimesniff.spec.whatwg.org/#matching-an-audio-or-video-type-pattern
    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF"),
    		pat:  []byte("FORM\x00\x00\x00\x00AIFF"),
    		ct:   "audio/aiff",
    	},
    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF"),
    		pat:  []byte("ID3"),
    		ct:   "audio/mpeg",
    	},
    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF\xFF\xFF"),
    		pat:  []byte("OggS\x00"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top