Changeset 285 for trunk/Packages/CevoComponents/Sound.pas
- Timestamp:
- Sep 30, 2020, 12:34:51 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CevoComponents/Sound.pas
r275 r285 113 113 begin 114 114 Result := ''; 115 // Try ffplay 116 if (Result = '') then 117 if (FindDefaultExecutablePath('ffplay') <> '') then 118 Result := 'ffplay -autoexit -nodisp -loglevel quiet'; 115 119 // Try play 116 if (FindDefaultExecutablePath('play') <> '') then 117 Result := 'play'; 120 if (Result = '') then 121 if (FindDefaultExecutablePath('play') <> '') then 122 Result := 'play -q'; 118 123 // Try aplay 119 if ( result = '') then124 if (Result = '') then 120 125 if (FindDefaultExecutablePath('aplay') <> '') then 121 126 Result := 'aplay -q'; … … 136 141 if (FindDefaultExecutablePath('pacat') <> '') then 137 142 Result := 'pacat -p'; 138 // Try ffplay139 if (Result = '') then140 if (FindDefaultExecutablePath('ffplay') <> '') then141 result := 'ffplay -autoexit -nodisp';142 143 // Try cvlc 143 144 if (Result = '') then 144 145 if (FindDefaultExecutablePath('cvlc') <> '') then 145 result := 'cvlc -q --play-and-exit';146 Result := 'cvlc -q --play-and-exit'; 146 147 // Try canberra-gtk-play 147 148 if (Result = '') then
Note:
See TracChangeset
for help on using the changeset viewer.