
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (84)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (12270)
-
Is it posible to add an HTML page as an overlay in a RTMP stream using Nginx and FFMPEG ?
4 août 2021, par tanowallaI have already installed Nginx on a EC2 instance (Ubuntu 18.04) for livestreaming to Youtube using RTMP. I want to setup a HTML page with a world clock and transparent background.


I installed Nginx using this tutorial.


https://www.scaleway.com/en/docs/setup-rtmp-streaming-server/


Would it be possible to load the HTML page using NGINX and FFMPEG so i can overlay it over the RTMP livestream incoming from a camera and push it to Youtube ?


I hope someone gets the idea, i apologize for my english, it is not my native language and have really no idea if this is even possible.


Thank you very much in advance.


-
How to http streaming while encoding the accessed file
5 décembre 2020, par hibiki31I am making a web application that plays videos.


Files include non-mp4 in my server.
So I need to convert it, but I want to do it when it is accessed.
I can't change the original or use additional storage space.


I'm learning Python, but I'm happy with any solution.


This function is implemented by Plex Home media server.
https://www.plex.tv/


Thank you.



Thanks for the comments i found.
http://nginx.org/en/docs/http/ngx_http_hls_module.html


I haven't tried the code yet.


I'm worried about three options.


First, implemented in Python code.
Second, implemented as a module for applications like Nginx.
Third, Google already knows the answer.


-
Ffmpeg mathematical "expression" syntax in filters
9 novembre 2022, par Jason CMultiple ffmpeg filters take a mathematical expression as a parameter, for example
setpts
andselect
(examples from docs) :

setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))';
select=select=between(t\,10\,20)



The docs for each filter are generally good about listing available variables for that specific filter, but the actual syntax of this expression appears (?) to be completely undocumented, despite its heavy use. For example, what functions are available (e.g.
sin
,between
) ? Are boolean combinations allowable and if so, what are the operators ? What other mathematical operators are available ?

What is the syntax of these expressions ? Or, at the very least, is some non-ffmpeg library parsing them and if so, what is it ? That way I can at least look up the syntax. Or have I missed some documentation section somewhere...?