Changeset 104 for trunk/mediafolder/prog_tutorial/mediafldrprog.ipf
- Timestamp:
- Oct 2, 2023, 11:34:35 PM (23 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to
/branches/v2.9 merged eligible /branches/v2.9_Lars merged eligible
-
Property svn:mergeinfo
set to
-
trunk/mediafolder/prog_tutorial/mediafldrprog.ipf
r4 r104 3 3 :docprof. 4 4 5 :title.Programming tutorial for Multimedia classes 5 :title.Programming tutorial for Multimedia classes 6 6 7 7 :h1 res=100.Introduction … … 13 13 For use of the REXX interface 14 14 :p. 15 :link reftype=launch 16 object='netscape.exe' 17 data='http://www.os2world.com/cdwriting'. 18 WPS-Wizard V0.2.0:elink. (http&colon.//www.os2world.com/cdwriting) 19 :p. 20 or above must be installed. 15 WPS-Wizard V0.2.0 (http&colon.//www.os2world.com/cdwriting) 16 :p. 17 or above must be installed. 21 18 22 19 :h1 res=200 … … 29 26 :li.:link reftype=hd res=211.MEDIAFLDRPLAY:elink. Start playing 30 27 :li.:link reftype=hd res=215.MEDIAFLDRPLAYFIRST:elink. Start first track 31 :li.:link reftype=hd res=212.MEDIAFLDRPREV:elink. Skip to previ us track32 :li.:link reftype=hd res=216.MEDIAFLDRREPEAT:elink. Set repeat .28 :li.:link reftype=hd res=212.MEDIAFLDRPREV:elink. Skip to previous track 29 :li.:link reftype=hd res=216.MEDIAFLDRREPEAT:elink. Set repeat 33 30 :li.:link reftype=hd res=213.MEDIAFLDRSTOP:elink. Stop playing 34 31 :li.:link reftype=hd res=214.MEDIAFLDRVOLUME:elink. Set volume … … 146 143 :p. 147 144 Set the track name of the audio file. This information is saved in the EA of the file. For 148 MP3 files this information i dalso saved in the ID3 tag.145 MP3 files this information is also saved in the ID3 tag. 149 146 :xmp. 150 147 /* REXX - This command adds the track name to the audio file */ … … 225 222 Reread the audio information from the file and update internal object data. 226 223 :xmp. 227 /* REXX - This command adds the genreof the audio file */224 /* REXX - This command rereads the information of the audio file */ 228 225 229 226 rc=SysSetObjectData('x&colon.\path_to_folder\audio_file.ext','MMREFRESH=1') … … 234 231 group=2 235 232 .MMAUDIOCOPYTAGTO 236 :p. 237 Reread the audio information from the file and update internal object data. 238 :xmp. 239 /* REXX - This command adds the genre of the audio file */ 233 234 Read the audio information from the file tag and copies it to another file. 235 236 :xmp. 237 /* REXX - This command copies the file tag information to another audio file */ 240 238 241 239 rc=SysSetObjectData('x&colon.\path_to_folder\audio_file.ext','MMAUDIOCOPYTAGTO=x&colon.\path_to_folder\another_file.ext') … … 311 309 param2 /* Second method parameter */ 312 310 :p. 313 rc=MFldrCallFunc(methodName, Object, 311 rc=MFldrCallFunc(methodName, Object, 314 312 param1, param2, ...); 315 313 :exmp. … … 421 419 param2 /* Second method parameter */ 422 420 :p. 423 rc=MMCallFunc(methodName, Object, 421 rc=MMCallFunc(methodName, Object, 424 422 param1, param2, ...); 425 423 :exmp. … … 517 515 :li.:link reftype=hd res=420.Disable audio file checking:elink. 518 516 :li.:link reftype=hd res=421.Disable ID3 tag reading:elink. 519 :li.:link reftype=hd res=422.Set time for message box display:elink. 517 :li.:link reftype=hd res=422.Replace M3U editor:elink. 518 :li.:link reftype=hd res=423.Replace M3U player:elink. 520 519 :eul. 521 520
Note:
See TracChangeset
for help on using the changeset viewer.