
Recherche avancée
Autres articles (71)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9620)
-
Révision 18369 : Report de r18368 : Révision du code HTML produit par le filtre agenda_memo (et so...
22 août 2011, par esj@rezo.netremplacement de "cellpadding" par la propriété CSS "padding" * remplacement de "cellspacing=0" par la propriété CSS "border-collapse : collapse * remplacement de la plupart des tables par des Div positionnéés, afin d’évacuer certaines tables imbriquées * mise en Ajax du triple mini-agenda aparaissant au (...)
-
is there any maximum ffmpeg running simultaneously ?
14 décembre 2017, par HQMI’m developing a video encoding service using ffmpeg that wrapped by python+django
My service is running ffmpeg asynchronously by using celery
The problem is, the resulted video sometimes freezing in some part of the video but there’s no error raised.Is there any maximum number that ffmpeg running simultaneously ?
-
FFmpeg : How to apply volume filter fast in ffmpeg
29 novembre 2018, par Prashant_Sarini am using below code for applying volume filter in ffmpeg, but its taking too long.Let’s say the audio itself is for 5 minutes then applying this filter takes 3 minutes. Can someone help to speed up the process.
my command is as :
var command = "-i $audioPath -af volume=enable='between(t,5,10)':volume=0.25,volume=enable='between(t,15,20)':volume=0.25 $outputFile"
logs are :
2018-11-29 15:17:16.912 17250-17250/com.example.prashants.ffmpegtest
D/com.example.prashants.ffmpegtest.service.AudioOverlayService: onProgress -
---AudioVolume---- video:0kB audio:3030kB subtitle:0kB other streams:0kB
global headers:0kB muxing overhead: 1.236199%
2018-11-29 15:17:16.913 17250-17250/com.example.prashants.ffmpegtest
D/com.example.prashants.ffmpegtest.service.AudioOverlayService: onProgress -
---AudioVolume---- bench: utime=168.977s
2018-11-29 15:17:16.915 17250-17250/com.example.prashants.ffmpegtest
D/com.example.prashants.ffmpegtest.service.AudioOverlayService: onProgress -
---AudioVolume---- bench: maxrss=65116kB
2018-11-29 15:17:16.917 17250-17250/com.example.prashants.ffmpegtest
D/com.example.prashants.ffmpegtest.service.AudioOverlayService: onProgress -
---AudioVolume---- [aac @ 0xaf5e4400] Qavg: 15833.816
2018-11-29 15:17:16.920 17250-17250/com.example.prashants.ffmpegtest
D/com.example.prashants.ffmpegtest.service.AudioOverlayService: AudioVolume
success--------- -benchmark -threads 4 -i
/storage/emulated/0/FFmpegTest/looped.m4a -af
volume=enable='between(t,5,10)+between(t,15,20)':volume=0.25:eval=frame
/storage/emulated/0/FFmpegTest/filtered_audio.m4athat’s the log from my android studio console