
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (56)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (8237)
-
Creating P-I-P video while also adding transparency to the In-Picture ?
17 septembre 2020, par EslakeStarting with two clips of the same format, scale, etc...
I am trying to use ffmpeg to add transparency to one of them while it is scaled down and used as an overlay for a translucent picture-in-picture.


In simplest terms, I am trying to bring these two features together.


ffmpeg -i FullScreenVidio.mp4 -i PictureWindow.mp4 -filter_complex "[1]scale=iw/2.15:ih/2.15 [pip]; [0][pip] overlay=25:25" -profile:v main -level 3.1 -b:v 440k -ar 44100 -ab 128k -s 1920x1080 Result.mp4 

=vf eq=brightness=0.25:contrast=1.5:saturation=1.5



I know it is possible, since I was able to get a test to work using a 3rd party program that operates by passing commands to ffmpeg.
My needs are more specific than that app allows.


-
Requirement to trim video from front-end
30 octobre 2023, par user20663233I have a specific requirement to implement video uploading from the front-end Next Js framework to a third-party application. During this process, it is necessary to trim the first 20 seconds of the video, store the trimmed segment, and subsequently transmit it to the server. While initially considering the utilization of the FFmpeg library for video trimming, I've come to realize that I require server-side support, as hosting FFmpeg locally is not a feasible option. Therefore, I am exploring alternative solutions that would allow me to accomplish video uploads from the front-end while meeting these requirements.


-
ffmpeg concatenate with dynamic chunks
28 octobre 2015, par vongolashuThe ffmpeg docs for concat lists the following way
ffmpeg -f concat -i mylist.txt -c copy output
The mylist.txt file contains file like
file ’/path/to/file1’
file ’/path/to/file2’
file ’/path/to/file3’What I am looking is for a way to do this concat in a persistent way where the number of files can keep increasing, for example in livestreaming
I will be sending chunks of video (mp4 files) of 10 seconds each to my server and want to concat/stitch them together to output to a RTMP stream (for livestreaming)If concat is not the proper way to do this, please suggest alternatives.
Really interested to know how people use the above concept (I hope its how it works) to send video chunks from mobile device for livestreaming