
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (44)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (3896)
-
Android libraries for ffmpeg + stagefright. language c++
10 décembre 2017, par Serhii SkytybaI’v making cross-platform program in c++. In my program for Android platform i need video decoding hw acceleration. I have found out, that I need to look in libstagefright.cpp. which contains ffmpeg library. There I have found next includes :
#include <binder></binder>ProcessState.h>
#include <media></media>stagefright/MetaData.h>
#include <media></media>stagefright/MediaBufferGroup.h>
#include <media></media>stagefright/MediaDebug.h>
#include <media></media>stagefright/MediaDefs.h>
#include <media></media>stagefright/OMXClient.h>
#include <media></media>stagefright/OMXCodec.h>
#include <utils></utils>List.h>Also, I found out that the source code of these headers is here : https://android.googlesource.com . But I can’t understand in which way to build them. So, my question is : Where can i get these libraries or how can get the source code, that i need to build ? Also, I look for advice which way I can better use Android video decoding hw acceleration + ffmpeg.
-
Which Platform/Language to choose for Video Management System [closed]
5 décembre 2019, par Vivek BuddhadevWe have started on a new project, Which enables for the multiple IP cameras(Around 1000 Cameras) to record as well as available for live streaming.
Like https://www.security.honeywell.com/uk/product-repository/maxpro-vms
Initially, we have tried using
ffmpeg
commands that saves data in chunks :ffmpeg -i {rtsp_url} -fflags flush_packets -max_delay 2 -flags -global_header \
-hls_time 2 -hls_list_size 3 -vcodec copy -y /var/www/html/Cam01.m3u8Then we have started http server and using node.js we are displaying the stream.
But as we are adding more cameras into it, the performance is going down.
Kindly suggest if there is any other way to achieve this functionality which help us to fulfill the above requirement.
-
Freeze frames at a time on videos and slow down videos
24 avril 2020, par Nguyễn TrọngSuppose I have an mp4 video with a duration of 60 seconds.



I want to freeze 1 frame at the 10th second and 40th second and then extend them to about 3 seconds.
At the same time I want to increase the speed of the video to 2 times from the 1 to 20 seconds and 2 times the video slow from 30 to 60 seconds.
The video output I received was 3 + 3 + (20 - 1) * 2 + (30 - 20) + (60-30) * 2 = 108 seconds
Is there a way to do it in one statement ?



Thank in advance and sorry for my bad english.