
Recherche avancée
Autres articles (80)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9155)
-
Any Java library for live media streaming ? [on hold]
29 novembre 2016, par NiconoidI’m developing a personal project which consists basically in a Java server reading the System’s Stereo Mix and streaming all the content through HTTP into a HTML5 player in a webapp.
I’ve been searching for days how to achieve this through a library as making it from ground up would be overly tedious and will take too much time. I’ve just found Red5, which isn’t useful as I want to stream purely over HTTP, and ffserver (ffmpeg) that has been dropped months ago.
Which alternatives do I have related to Java-based libraries in terms of live streaming over HTTP ?
-
Using Zeranoe FFmpeg build can I remove ID3 tags while converting the files ? [closed]
16 février 2013, par user2079183My system has been infected with Malware though a rootkit and I am converting my files to simpler formats in attempt to remove any malware hiding in them. In terms of my music files, I am looking for a way to batch remove all of the ID3 tags from my music files to insure that any malware is removed from the ID3's. Is there a setting in FFMPEG which removes or does not carry the ID3 tags over to the output file ?
THanks in advance !
-
Render current file name when creating animation from multiple files
9 janvier 2018, par GeuisI’m rendering animations from a collection of png’s. I’d like to add the name of the file as a text overlay. I’ve got
drawtext
working with static text, but haven’t been able to find a way to access the file name being rendered.Current command :
ffmpeg -framerate 2 -i layer-%d.png -i logo.png -filter_complex "[0:v]fps=30[img];[1:v][img]scale2ref=163:163[a][b];[b][a]overlay=(81):(main_h-163-81)[vid];[vid]drawtext=text='TEXT':x=100:y=100:fontfile=font/SourceSansPro-Regular.otf:fontsize=30:fontcolor=white" -preset ultrafast -movflags +faststart -vcodec libx264 -crf 23 -pix_fmt yuv420p output.mp4
Is there something I can put in the
'TEXT'
area to get the file name ?