1 / 9

Oracle inter Media Audio

Oracle inter Media Audio. Vortrag für das Seminar „Oracle Zusatzoptionen“ Chris Haußmann. Inhalt. Oracle-Directories Oracle-Installation an der HSA Der Datentyp ORDAudio Import einer Musikdatei Zugriff auf die Daten des importierten Musikstücks. Oracle Directories.

anika-salas
Download Presentation

Oracle inter Media Audio

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Oracle interMedia Audio Vortrag für das Seminar „Oracle Zusatzoptionen“ Chris Haußmann

  2. Inhalt • Oracle-Directories • Oracle-Installation an der HSA • Der Datentyp ORDAudio • Import einer Musikdatei • Zugriff auf die Daten des importierten Musikstücks

  3. Oracle Directories • Verweis auf Pfad im Betriebssystem • ermöglicht Zugriff auf Inhalt des Pfades über Oracle • muß dem Server bekannt sein, nicht dem Client • CREATE OR REPLACE DIRECTORY directory_name AS 'pfad'; • Zugriffsrechte in Oracle einstellbar, unabhängig vom Betriebssystem • GRANT READ ON DIRECTORY directory_name TO user_name • GRANT WRITE ON DIRECTORY directory_name TO user_name

  4. Oracle-Installation an der HSA Server mit OCFS Oracle Server 1 Oracle Server 2 Oracle Serveranwendung Client

  5. Der Datentyp ORDAudio • abgeleitet von ORDSys • Datenbanktyp für Audio-Objekte • enthält Methoden zum Verwalten der Audiodaten • nimmt Metadaten der Audio-Objekte auf

  6. Tabelle für Audiodaten • CREATE TABLE songs( songID INTEGER, songsource ORDSys.ORDAudio);/ • INSERT INTO songs VALUES( 0, ORDSYS.ORDAudio.init());

  7. Import einer Musikdatei • DECLARE audioObj ORDSYS.ORDAUDIO; ctx RAW(4000) := NULL;BEGIN SELECT S.songSource INTO audioObj FROM SongsTable S WHERE S.songId =0 FOR UPDATE; audioObj.setSource('FILE', 'directory_name', 'datei_name'); audioObj.setMimeType('audio/basic'); audioObj.import(ctx); audioObj.setProperties(ctx); UPDATE SongsTable S SET S.songSource = audioObj WHERE S.songId = '00'; COMMIT;END;/

  8. Zugriff auf die Daten des importierten Musikstücks • create or replace procedure readaudio as obj ORDSYS.ORDAudio; buffer RAW (32767); numBytes BINARY_INTEGER := 32767; startpos integer := 1; read_cnt integer := 1; ctx RAW(4000) := NULL;BEGIN Select audio into obj from audtable where id = 1; LOOP obj.readFromSource(ctx,startPos,numBytes,buffer);startpos := startpos + numBytes; read_cnt := read_cnt + 1; END LOOP;END; • /

  9. Quellen • Oracle interMedia Audio, Image, and Video User's Guide and Reference • Poolbetreuer • http://www-itec.uni-klu.ac.at/~harald/mm04/MMDBprodukte.ppt • http://www.psoug.org/reference/intermedia_a.html • http://www.psoug.org/reference/utl_file.html

More Related