
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (52)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
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 (6951)
-
ffmpeg combine multiple commands to crop, clip then convert to gif
6 mars 2016, par Pranoy CI have a mp4 video which I need to perform 3 operations and produce the best/decent quality output.
-
I need to crop the size of the video frames - 250x250.
-
I need to clip the video to a certain duration 157 seconds to 167 seconds let’s say.
I am able to perform about 2 together in a single command using :
./ffmpeg -i input.mp4 -ss 157 -t 10 -vf crop=250:250:200:100 -strict -2 clipped.mp4
-
Next I need to convert this into a gif. I am using the below 2 commands for this :
./ffmpeg -y -i clipped.mp4 -vf fps=10,scale=320:-1:flags=lanczos,palettegen palette.png
./ffmpeg -i clipped.mp4 -i palette.png -filter_complex "fps=10,scale=320:-1:flags=lanczos[x];[x][1:v]paletteuse" output.gif
My question is-
Is there any way to combine all 3 above commands into 1 ? I am able to use the double ampersand
&&
to run the commands after each other but is there a better way in a single command ?Is there any way to avoid the intermediate temporary files like clipped.mp4 and palette.png ? Something which can pipe the output to next command ?
Thanks for the responses !
-
-
Track format difference when importing BMP file into quicktime .mov file
23 juillet 2015, par Neal DavisI am creating a quicktime container .mov file from one BMP file in two ways :
- Using the quicktime COM object API for .NET C# under windows
- Using ffmpeg command line (rawvideo codec)
Both resulting .MOV files open with Quicktime Player Pro just fine and look identical to my eyes, also they are either the same size as the original BMP or larger.
However, when viewing the track properties under QT Player PRO, they show :
- track format = BMP.
- track format = NONE.
Is there likely a difference since in 1. above I do not set a track properties format ? In other words, is there likely any changes being made to the BMP bits in number 1 above (like compression, or alpha, or ???) ?
-
Import BMP file into quicktime .mov file ?
23 juillet 2015, par Neal DavisI am creating a quicktime container .mov file from one BMP file ; I am doing this in two ways :
- using the quicktime COM object API for .NET C# under windows
- using ffmpeg command line (rawvideo codec)
Both resulting .MOV files open with quicktime player pro just fine and they look identical to my eyes. Both resulting .MOV files are either the same size as the original BMP or a larger.
However when viewing the track properties under QT Player PRO of movie file number 1. track format = BMP ; when viewing track properties of number 2. track format = NONE.
Is there likely a difference - since in 1. above I do not set a track properties format ? In other words is there likely any changes being made to the BMP bits in number 1 above (like compression, or alpha, or ???) ?