
Recherche avancée
Autres articles (54)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (...) -
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"
Sur d’autres sites (6316)
-
VideoCapture on RTSP target takes a second to open a stream
8 novembre 2022, par QBRTI am trying to write rtsp player using Opencv FFmpeg. When I open stream using
cap.open(url, CAP_FFMPEG)
, program just freezes for about 1s and then opens stream with similar delay.

Code :


vector<int> a;
a.push_back(CAP_PROP_OPEN_TIMEOUT_MSEC);
a.push_back(2000);
cap.open(url, CAP_FFMPEG, a);
</int>


What can I do to reduce that delay ?


I have tried using
cap.grab()
, using threads, usingfor(int i = 0; i<5; i++) cap>>frame;
after opening - all is not working. What else can I do ?

Edit : When I using ffplay directly with nobuffer and low_latency flags, I have good latency. (about 2 times less)


-
avcodec/vc1dec : Don't open and close decoder during init
30 octobre 2022, par Andreas Rheinhardtavcodec/vc1dec : Don't open and close decoder during init
This is done since 16af29a7a6deff3f6081fca1e36ad96cf8fec77d
(and is actually unnecessary, because the tables initialized
in ff_msmpeg4_decode_init() are only ever used in vc1_block.c
which is only entered after a call to ff_msmpeg4_decode_init())
in a very ugly manner ; said manner had the byproduct of
involving lots of unnecessary allocations and even opening
and closing a hwaccel in case one is used.This commit achieves the aim of 16af29a7a6deff3f6081fca1e36ad96cf8fec77d
by initializing the VLCs used by VC-1 in ff_vc1_init_common().Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
How to supply mufti filter_complex values using ffmpeg
11 octobre 2022, par Mohammed Hamdanfor single image being merged to video i use the following command to supply values for
-filter_complex


String comand = '-y -i $videoPath -i $imagePath -filter_complex "[1:v]scale=300:300[ovrl];[0:v][ovrl]overlay=100:100" $outPutPath';



but what if i want merge more than one image (input) ?


How do we make a certain distinction for each input except
$videoPath
?

String comand = '-y -i $videoPath -i $imagePath1 i $imagePath2 i $imagePath3 $outPutPath4';



How could i supply difference
scale
overlay
rotate
values for each input which is for$imagePath1
$imagePath2
$imagePath3
$imagePath4


in other word : evry input has it's own filter values ?


to be honest i have no idea what does
[1:v]
means but After several attempts, I was able to get successful command (my first command in my qwestion) to give values for one entry, and this was successful , but couldn't do it for many inputs