
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (103)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (10097)
-
Decoding of 4k video causing overflow of buffer in a multi process application
15 octobre 2016, par mkreddyI am quite new in working with FFMPEG. Please excuse me if I made any mistake while explaining my problem.
I am working on an application where PCAP captures 1316 bytes of data split that into 188 bytes and writes it into it to corresponding shared memory. The other process reads the data and decode using ffmpeg and process it.
This whole process is working fine with H264 and HEVC video.
The problem comes with 4k video. While decodig the 4k video I am encountering buffer overflow.
I have observed that on a machine with high CPU frequence the overflow rate was less. Hence If I can reduce the time taken to decode and process the video data at ffmpeg might solve my problem. I am not able to find a good solution for my problem.Is there any way to speed up the process at ffmpeg decoder ?, is thre any other way to supress the overflows ?
-
avcodec/libx264 : silence -Waddress
7 octobre 2015, par Ganesh Ajjanagaddeavcodec/libx264 : silence -Waddress
This patch moves the pointer validity check outside the macro,
and silences the -Waddress observed with GCC 5.2.Note that this changes the error message slightly, from :
"bad option..." to "Error parsing option...".Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
-
TimeStamps using ffmpeg command
23 janvier 2016, par sudheer babuI used the following ffmpeg command
ffmpeg.exe -f rawvideo -vcodec rawvideo -s 1920x1080 -r 25 -pix_fmt yuv420p -i D:\TestSeqncs\crowd_run_1080p25.yuv -i C:\Users\sree\Desktop\FFmpeg_Experiment\Audio1.mp3 -lavfi "[0:v]split=2[in2][in3];[in2]scale=1280x720[out2];[in3]scale=704x576[out3]" -map 0:v -map "[out2]" -map "[out3]" -map 1:a -c:v libx264 -c:a aac -preset ultrafast -b:v:0 9000K -b:v:1 8000K -b:v:2 7000K -b:a:0 128K muxout.ts "
.How to get timestamp details of contents in output.ts ? how much delay will be there in output.ts contents ? can anyone have idea ?
Here my putput is muxout.ts which holds 3 videos and 1 audio. While playing ts i observed delay between streams. How to get those details by using ffmpeg command.
how to extract details about start time ,duration, if any delays, all these details of all the streams in muxout.ts using ffmpeg command ?