
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (10)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (3178)
-
Stream and control a playlist to RTMP
20 décembre 2016, par EightI’m currently trying to stream a playlist of files from ffmpeg to an RTMP server.
I’ve managed to get a single file to be streamed correctly, and (I think) a playlist by using :"concat:file1.pm4|file2.mp4|file3.mp4"
I then tried to use the concatenation method from a txt file they explain here :
https://trac.ffmpeg.org/wiki/ConcatenateAnd was able to get it to work. However I seem to have some problems with controlling it. For example, I have no idea if it is possible to tell ffmpeg to skip this file and play the next one in the list, or to pause the stream at all. I already tested editing the txt file while it is streaming, but that didn’t seem to affect what was already streaming at all.
Any idea how I can control my stream from the console ? My end goal would be to make the control into a full web interface later, but I’m not even sure if ffmpeg is my best option to do this.
Any help with ffmpeg or any other options to do this would be greatly appreciated.
-
Implementing hardware accelerated decoding on windows with FFMPEG
24 juillet 2019, par sacha legrandIntel processor incorporates hardware acceleration capabilities for video encoding / decoding.
I use :
Intel 5 series HD graphics & Processeur Intel Core i7-620UE
and/or
Intel Gen9 HD Graphics Engine & Processor Intel Core i7-6600U
So wich hardware acceleration should I use (H264, VC1, H265, etc.) to be more efficient ?
The FFMPEG library provides everything you need to perform decoding.
We accessed these hardware acceleration features by default ?
Should I use a specific API or library ?
I finnally find in
https://trac.ffmpeg.org/wiki/HWAccelIntro
It is Libmfx how seems the best for my case (Windows & Intel)Am I on the right way ?
I should explaine all the possibility so if you have any other doc about that it’s could be cool.
Thank you
-
Use FFmpeg (or sox) to reduce stereo
24 juin 2019, par JoschuaThe ffmpeg wiki has this method to mix stereo to stereo :
ffmpeg -i input.mp3 -af "pan=stereo|c0code>
How could I do this but reduce the volume of the right part mixed into the left and the left part mixed into the right (diagonal arrows) by 60%, while leaving the volume of both channels as is (downward arrows) ?
(If this could be done with sox, it be great too.)