
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (93)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les sons
15 mai 2013, par -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6077)
-
Errno::ENOENT (No such file or directory) in using ffmpeg on amazon-s3
31 décembre 2015, par Haseeb AhmadI have application which is using amazon s3 posting videos to buckets.
When I do
after_commit
movie = FFMPEG::Movie.new("#{self.video.url}")
It gives error :
Errno::ENOENT (No such file or directory - the file 'http://getpayad-dev.s3.amazonaws.com/ads/videos/000/000/017/original/Ufone_Tarzan_commercial_%28Ufone_Network_Quality%29_most_Funny_Ad.mp4?1451571295' does not exist):
Same path copying and pasting in browser’s url work fine
-
How to compare the difference between 2 videos color in ffmpeg ?
3 décembre 2014, par nico_labI have read How to compare/show the difference between 2 videos in ffmpeg ? , but "blend=all_mode=difference" is green.
How do I get more colorful diffrence using blend filter ?sample command is
ffplay -f lavfi "movie=left.mp4,split[a1][a2]; movie=right.mp4,split[b1][b2]; [a1][b1]blend=all_mode=difference[blend];[a2]pad=2*iw:2*ih[left];[left][b2]overlay=w[tmp];[tmp][blend]overlay=0:h"
using "hue=s=0", color is chenge monochrome.
ffplay -f lavfi "movie=left.mp4,split[a1][a2]; movie=right.mp4,split[b1][b2]; [a1][b1]blend=all_mode=difference,hue=s=0[blend];[a2]pad=2*iw:2*ih[left];[left][b2]overlay=w[tmp];[tmp][blend]overlay=0:h"
The goal is this video. if you have a niconico account.
http://www.nicovideo.jp/watch/sm24864058if you don’t have a niconico account, embed page is
http://www.nicozon.net/watch/sm24864058 -
Transforming images and mp3 files into a video file on android
25 septembre 2017, par AlinI am thinking to start the development of a new project and I have some ideas in mind, but I am not sure how much is doable in android.
The steps of the app would be :- The user selects a set of images from Gallery
- The user selects an audio file from external storage
- I combine the images and the sound (each image is displayed for a timeframe) into a movie file that can be exported to YouTube
From my research I wasn’t able to find any way to create the movie. All the answers contained links to android NDK and external codecs.
So my question is : which would be the easiest way of making this on android ?