
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (54)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (3475)
-
FFMPEG - live stream with dynamic content
6 octobre 2019, par ArturekI’m trying to create a live stream with changing data in real-time on youtube.
Let’s say I want to show the current Bitcoin price in real-time. For instance, using python and sending requests to some public APIs, I can very easily get current prices of Bitcoin. But I have no idea how to create such a live stream, which will be automatically updated with fresh data.
I know that I can use ffmpeg to stream on youtube, but how would I change the content of my stream ? I know how to create an image every n seconds with the current price, but then I don’t know how to update my live stream with this image.
# To make sure you know what I mean, I created a basic sample.
import requests
import json
import time
createYtLiveStream()
while(True):
response = requests.get('https://api.coindesk.com/v1/bpi/currentprice.json').json()
price = response['bpi']['USD']['rate']
# Create an image with Bitcoin price inside
img = convertTextToPng(price)
# Update my live stream with this new image (I don't know how to do it)
updateYtLiveStream(img)
time.sleep(20)I want to do it on Ubuntu. Can you tell me how can I do it, please ?
Thanks. -
How Can I capture and record a live stream using ffmpeg ? (Without any encoding or transcoding)
25 février 2015, par Sina DavaniHow Can I capture and record a live stream using ffmpeg ? (Without any encoding or transcoding)
I have a program written using ffmpeg. It captures a live stream and then plays it on the display (a simple video player).
What I need now is the ability to save the input stream in a file on the disk so it could be played later using a standard video player.
Can anyone please give me a simple example that would show how it is done ? When I am writing the captured packets from the input stream directly in to a file ; at the end the file is corrupted and it is unusable. I did try to set the header for the file ; but that didn’t work either. -
Icecast live stream extract none silent parts into individual files
18 avril 2020, par NokoaI am looking to split an icecast audio live stream into individual audio files separated by silences. I was able to achieve this with FFMPEG when having the source input file saved locally first. I can't do that because I have 20 streams being monitored and the original files keeps growing and end up taking too much space on my drive.



Is it possible to do this directly with a live stream audio without saving the full original uncut stream file to drive ?