Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3471 | Rev 3477 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3471 Rev 3473
Línea 121... Línea 121...
121
                    }
121
                    }
Línea 122... Línea 122...
122
                    
122
                    
123
                    $cmd        = "/usr/bin/ffprobe -v error -of flat=s=_ -select_streams v:0 -show_entries stream=height,width,duration  $full_filename";
123
                    $cmd        = "/usr/bin/ffprobe -v error -of flat=s=_ -select_streams v:0 -show_entries stream=height,width,duration  $full_filename";
Línea -... Línea 124...
-
 
124
                    $response   = trim(shell_exec($cmd));
-
 
125
                    
-
 
126
                    $source_duration = 0;
-
 
127
                    $source_width = 0;
-
 
128
                    $source_height = 0;
124
                    $response   = trim(shell_exec($cmd));
129
                    
125
                    
130
                    
126
                    $lines = explode("\n", $response);
131
                    $lines = explode("\n", $response);
127
                    foreach($lines as $line)
132
                    foreach($lines as $line)
128
                    {
133
                    {
Línea 185... Línea 190...
185
                    //$cmd = "/usr/bin/ffmpeg -y -i $full_tempname -vf scale=$sizeVideo -c:a copy -c:s copy -c:v libx264 -preset slower -crf 18  $full_filename";
190
                    //$cmd = "/usr/bin/ffmpeg -y -i $full_tempname -vf scale=$sizeVideo -c:a copy -c:s copy -c:v libx264 -preset slower -crf 18  $full_filename";
186
                    //$cmd = "/usr/bin/ffmpeg -y -i $full_tempname -vf scale=$sizeVideo  -preset veryslow -crf 10 -c:v libx264  $full_filename";
191
                    //$cmd = "/usr/bin/ffmpeg -y -i $full_tempname -vf scale=$sizeVideo  -preset veryslow -crf 10 -c:v libx264  $full_filename";
187
                    //$cmd = "/usr/local/Cellar/ffmpeg/5.0.1/bin/ffmpeg -y -i $source  -preset medium -crf 24 -codec:v libx264 $target";  
192
                    //$cmd = "/usr/local/Cellar/ffmpeg/5.0.1/bin/ffmpeg -y -i $source  -preset medium -crf 24 -codec:v libx264 $target";  
Línea -... Línea 193...
-
 
193
                    
-
 
194
                    
-
 
195
                    if($source_duration == 0) {
-
 
196
                       $second_extract = '00:00:02'; 
-
 
197
                    } else {
-
 
198
                        if($source_duration > 10) {
-
 
199
                            $second_extract = '00:00:10'; 
-
 
200
                        } else {
-
 
201
                            $second_extract = '00:00:02'; 
-
 
202
                        }
-
 
203
                       
188
                    
204
                    }
Línea 189... Línea 205...
189
                    
205
                    
190
                    $cmd = "/usr/bin/ffmpeg -y -i $full_tempname  -preset medium -crf 24 -codec:v libx264 $full_filename";  
206
                    $cmd = "/usr/bin/ffmpeg -y -i $full_tempname  -preset medium -crf 24 -codec:v libx264 $full_filename";  
Línea 191... Línea 207...
191
                    
207
                    
Línea 192... Línea 208...
192
                    $output->writeln("command  : $cmd" );
208
                    $output->writeln("command  : $cmd" );
193
                    exec($cmd);
209
                    exec($cmd);
194
 
210
 
195
                    if($imageSize) {
211
                    if($imageSize) {
Línea 196... Línea 212...
196
                    
212