
Recherche avancée
Autres articles (45)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (6826)
-
Adding a watermark with FFMPEG via Rails
16 juin 2016, par Felixin my Rails app I want to use ffmpeg to add a watermark to a movie while uploading.
For that I’ve added the stremio-ffmpeg gem.
My code looks like this :
options = {watermark: Rails.root.join('public/images/logo_klein.png'), watermark_filter: {position: "RT", padding_x: 10, padding_y: 10}, custom: '-strict experimental'}
tmp_path = File.join File.dirname(current_path), "tmp_file.mp4"
file = FFMPEG::Movie.new(self.file.path)
file.transcode(tmp_path, options)
File.rename tmp_path, current_pathBut my Image is not added to the movie. wenn I call http://localhost/images/logo_klein.php it is shown in browser (image)
What could be the problem for not added into the movie ? When I follow the console out transcoding is started properly. But nothing mentioned of watermarking only transcoding is mentiond
console output :
INFO -- : Running transcoding...
ffmpeg -y -i /var/www/ji/public/uploads/tmp/1466030485-10470-0 013-4987/2016-06-08_09.50.55.mp4 -strict experimental /var/www/ji/public/uploads/tmp/1466030485-10470-0013-4987/tmp_file.mp4What could be the problem ?
-
What is the correct path video using Streamio FFMPEG on Rails
5 avril 2013, par KhalidI follow this gem https://github.com/streamio/streamio-ffmpeg , then I do this :
movie = FFMPEG::Movie.new("#{Rails.root}/public/aaa.mov")
but the result is :
Errno::ENOENT: No such file or directory - ffmpeg -i /home/user/projects/test/public/aaa.mov
Does anyone know ?
Thanks
-
ffmpeg PNG to mp4 - Black screen
3 décembre 2015, par ilciavoI can create a mpg video using this line
ffmpeg -f image2 -i 100%03d0.png movie.mpg
But If I try creating an mp4 video I get a video with a black screen.
ffmpeg -f image2 -i 100%03d0.png movie.mp4
My directory with figures looks like :
1000010.png,1000020.png,...1001260.png