
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (106)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (9634)
-
ffmpeg send video to one process and audio to another
20 juin 2017, par mooI’m using Sailfish OS (Linux), and have built ffmpeg with the hope of using the ffplay player. Video works fine, but audio doesn’t work and I think ffplay would need to be patched to use libaudioresource, which is beyond my skills (others have verified the problem).
However, the pulseaudio paplay and pacat commands work fine, so for example, I can do :
ffmpeg -i file.mp4 -f wav - | paplay
What I’m trying to achieve, is to send video to ffplay and audio to paplay, but the best solution I’ve found so far, is :
ffmpeg -i file.mp4 -f avi - | tee >(ffplay -) >(ffmpeg -i - -f wav - | paplay) > /dev/null
This is not very efficient though, and whilst it works, it breaks up frequently, and I was hoping there was a better way of achieving this, using -map 0:a and -map 0:v or FIFOs of something ? Any suggestions much appreciated.
Thanks
-
Thumbnail of video
14 février 2018, par pravin poudelI am trying to create a thumbnail for video uploaded by user .
The video size is large and google suggested to use FFMPEG .I dont know if FFMPEG library in LARAVEL is faster or executing ffmpeg command from code is faster ??
or ,speed isnot issue in both case of creating thumbnail .I googeled but i didnt get anything related to this .
So far i have created thumbnail using ffmpeg command
$ffmpeg = 'C:\\ffmpeg\\bin\\ffmpeg';
$image_file = 'uploads\\' .$name ."." ."png";
$size = "120x90";
$getfromsecond = 5;
$cmd = "$ffmpeg -i $file_video -an -ss $getfromsecond -s $size $image_file 2>&1";and created by
shell_exec($command);
I just want efficient way.
I am in laravel 5.1. -
Overlay video after set time offset with FFmpeg
5 août 2012, par ProduitbrutI'm trying to add overlays to an input video with ffmpeg that appear some time after the video starts.
The basic way to add an overlay is :
ffmpeg -i in.avi -vf "movie=overlay.avi [ovl]; [in][ovl] overlay" out.avi
But this adds the overlay video (or image) from the start of the input video until one of the videos ends.
I know how to offset the overlay video using
movie=overlay.avi:seek_point=1.4
, but what about an offset on the input video ?I could always clip the video to the desired point, add overlay on the second clip, then stitch the two but that's not very efficient.