
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (36)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6225)
-
ffmpeg overlay time offset
24 juillet 2012, par ProduitbrutI'm trying to add overlays to an input video with ffmpeg that appear after a time period after the video starts.
The basic way to add an overlay is :
ffmpeg -i myvideo.avi -vf "movie=my_overlay.avi [ovl]; [in][ovl] overlay=0:0 [out]" output.avi
But this simply adds the overlay video (or image) from the start of the input video until the input video ends or the overlay video ends.
I know how to offset the overlay video using
movie=my_overlay.avi:seek_point=1.4
, but what about an offset on the input video ?I could always clip the video to the desired point, add overlay on the second clip, then stitch the two but that's not very efficient.
-
how to build multiple video stream mux / mixer to virtual network camera
9 juillet 2019, par EuanI’m looking for a software solution that can create a new virtual camera stream from a select-able range of cameras. Basically I want to do some calculations decide which camera is to be selected and switch the virtual camera to be transmitting the new stream.
The stream needs to be low latency (at most 2 secs). I’m guessing I would need to transmux the input streams and selectively change source streams somehow. I then want to provide an ONVIF, or basic RTMP stream that a commercial DVR can connect to. I then want to duplicate this with a further number of virtual cameras using the same source feeds but different selected source at various times. I would be aiming to use a UDP message to select the source for each virtual camera.
Cameras are H264, RTMP / RTSP, ONVIF.
I haven’t tried anything yet as not sure what or where to go, or what to search for. I’m guessing ffmpeg would be a basis, or perhaps there is a better tool that can stitch together RTMP streams ?
-
Any rebuilt dynamic ffmpeg library to use with OpenCV on Ubuntu ?
24 octobre 2016, par Sonny MTI’m trying to use OpenCV on Ubuntu to open an MP4 video file.
The code below failed with no error or warning.final VideoCapture camera = new VideoCapture("test-video.mp4");
There are some guides saying that OpenCV needs underlying ffmpeg dynamic library in order to keep its BSD license.
Is there any rebuilt ffmpeg library for this purpose ?
Thanks.