mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:22:46 +00:00 
			
		
		
		
	 0424a4aa71
			
		
	
	
		0424a4aa71
		
	
	
	
	
		
			
			Aplay's documentation is updated to reflect the new -s flag. Additionally, "sound" has been replaced by "audio", reflecting the application name. (It's also a more general term in my opinion, but that's debatable.)
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## Name
 | |
| 
 | |
| aplay - play audio
 | |
| 
 | |
| ## Synopsis
 | |
| 
 | |
| ```**sh
 | |
| $ aplay [--loop] [--sample-progress] <path>
 | |
| ```
 | |
| 
 | |
| ## Description
 | |
| 
 | |
| This program plays an audio file specified in `path` through AudioServer.
 | |
| 
 | |
| ## Options
 | |
| 
 | |
| * `-l`, `--loop`: Loop playback
 | |
| * `-s`, `--sample-progress`: Switch to (old-style) sample playback progress. By default, playback is printed as played, remaining and total length, all in minutes and seconds.
 | |
| 
 | |
| ## Arguments
 | |
| 
 | |
| * `path`: Path to audio file
 | |
| 
 | |
| ## Examples
 | |
| 
 | |
| ```sh
 | |
| $ aplay ~/sound.wav
 | |
| $ aplay -l ~/music.flac
 | |
| ```
 |