mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-31 10:27:01 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			300 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			300 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /*jshint node:true */
 | |
| 'use strict';
 | |
| 
 | |
| exports.load = function(ffmpeg) {
 | |
|   ffmpeg
 | |
|     .format('flv')
 | |
|     .flvmeta()
 | |
|     .size('320x?')
 | |
|     .videoBitrate('512k')
 | |
|     .videoCodec('libx264')
 | |
|     .fps(24)
 | |
|     .audioBitrate('96k')
 | |
|     .audioCodec('aac')
 | |
|     .audioFrequency(22050)
 | |
|     .audioChannels(2);
 | |
| };
 |