
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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 (...)
Sur d’autres sites (7368)
-
avcodec/dvdsubdec : fix accessing dangling pointers
8 janvier 2015, par wm4avcodec/dvdsubdec : fix accessing dangling pointers
dvdsub_decode() can call append_to_cached_buf() 2 times, the second time
with ctx->buf as argument. If the second append_to_cached_buf() reallocs
ctx->buf, the argument will be a pointer to the previous, freed block.
This can cause invalid reads at least with some fuzzed files - and
possibly with valid files.Since packets can apparently not be larger than 64K (even if packets are
combined), just use a fixed size buffer. It will be allocated as part of
the DVDSubContext, and although some memory is "wasted", it’s relatively
minimal by modern standards and should be acceptable.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Best approach to stream RTSP IP Cam feed to React app and node.js express server
17 juillet 2024, par JuicyPhanI am trying to build a set-up whereby I stream multiple IP Cam RTSP Video feeds to multiple users.
It needs to have minimal latency.


Server Hardware : Static IP Synology NAS

Front-End : React

Back-End : Node.js Express

STUN/TURN server : Coturn

Video Feed : Multiple IP Camera's RTSP feeds

Video Encoder : ffmpeg(?)

Video Decoder : ?

Video Format : ?

Streaming Protocol : WebRTC

I have every individual component up however am struggling with the part whereby I encode the RTSP feed.


What video format do I encode it to and how do I use WebRTC to stream to viewers on the front-end ?


-
In Python, why do 'writer' is considered to be as an unexpected keyword argument for save
23 mars 2014, par StrömungsmechanikI would like to save an animation using the function save in Python. During compilation, I get the following message :
anim.save('mymovie.mp4',writer="ffmpeg")
TypeError: save() got an unexpected keyword argument 'writer'Please note that I have installed successfully FFmpeg. Here is a minimal working environment :
import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation
from numpy import pi
X,Y = np.meshgrid(np.arange(0,2*np.pi,.2),np.arange(0,2*np.pi,.2) )
U = np.cos(X)
V = np.sin(Y)
fig,ax = plt.subplots(1,1)
Q = ax.quiver( X, Y, U, V, pivot='mid', color='r', units='inches')
ax.set_xlim(0, 2*pi)
ax.set_ylim(0, 2*pi)
def update_quiver(num, Q, X, Y):
U = np.cos(X + num*0.1)
V = np.sin(Y + num*0.1)
Q.set_UVC(U,V)
return Q,
anim = animation.FuncAnimation(fig, update_quiver, fargs=(Q, X, Y),
interval=10, blit=False)
anim.save('mymovie.mp4',writer="ffmpeg")