
Recherche avancée
Autres articles (72)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (14984)
-
Open source media server for web service.
20 février 2016, par ScarfaceI am currently building a website where users can listen to music, and watch videos. However, I am worried about the media content(music/videos) being downloaded from the website(I initially stuck to the HTML5 video/audio tags), I did a little research and found that my best option to prevent this was by using a media server, I have search for free open source media servers to use, but none seem promising. I thought my best bet was ffmpeg, but I am scared to use it as there it seems to be no longer maintained. Does anyone know of any good media servers out there I could use ?
-
Live Streaming App iOS
23 août 2016, par Jay GajjarI am trying to develop a live-streaming application like the meerkat app, where user A can broadcast a live stream while other users are able to watch it. I am having trouble understanding the architecture and mechanisms used to upload video to a server. Currently, I am using a dedicated server with
FFMPEG
installed on it. I also knowFFServer
can be used to performRTSP
communication, but I am still unclear how to do this. Can anyone guide me on this ?I would like to know how to upload videos to a server or whether there is another way to perform a live stream. Open source frameworks are welcome.
-
Is there a way to handle discontinuities with FFMPEG ?
16 avril 2020, par Dave SteinI am running ffmpeg like this, to get a screenshot from an HLS manifest :



ffmpeg -i 'https://example.com/myfile.ism/manifest' -vframes 1 test.jpg -y



There are times where there are gaps in the HLS manifest. When I run that command, it fails because it can't find a frame. Is there anything I can do to make it more resilient ? ie if it fails getting the time this very second, try the second before that ?



When I watch the video in something like video.js, or even HLS directly in Safari, I see a frame regardless of gaps. It just jumps sometimes - I always see a frame.



How would I be able to replicate that here such that the ffmpeg command will always return a frame ?