
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (74)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 -
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 (...)
Sur d’autres sites (8548)
-
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 ?