
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (100)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (9598)
-
Adding unique RGB color watermark per video frame with FFmpeg
8 juin 2016, par Dustin KersteinI’d like to add a unique watermark onto each unique video frame in an h264 mp4 video. More specifically, I want the watermark to be a X by X pixel square solid 8-bit RGB color, and each color watermark should be unique across all frames in the video (up to the theoretical 24 bit max of 16.7 million colors/frames).
Is this possible to do programatically using FFmpeg filters (or another tool) without requiring a photo for each possible color watermark ?
If not, assuming I already have the full set of 1029 solid color photos downloaded from http://www.solidbackgrounds.com, can anyone think of an easy way to watermark a video with <= 1029 frames using FFmpeg ?
-
How to preserve color when extracting thumbnail from videos with FFMPEG ?
7 novembre 2022, par coffee-catI'm using FFMPEG to extract thumbnails from arbitrary user-submitted videos to jpg and the outputs are noticeably darker than the input video.


Here is an image captured of a MP4 input (SMPTE Color Bars) using Mac OS's built in screen capture utility (which seems to have a reasonably accurate color representation. Red value on this image is R : 191, G : 0, B : 1.



Here is the same image captured using the FFMPEG script below. Red value on this image is R : 176, G : 0, B : 2.



Here is the ffmpeg options I'm using to extract these images :


ffmpeg -i input-video.mp4 \
 -vframes 1 \
 -filter:v scale=600:-1 \
 -qscale:v 90 \
 -f singlejpeg \
 thumb.jpg 



Any thoughts on how to solve this ?


(Note that while there are related topics on Stack Overflow, all of them are specific to known input video types. I'm looking for a solution that will work across arbitrary inputs.)


-
Encode multiple files from the same Folder with Google Colab & FFmpeg
16 août 2021, par Ptibouc77i made a Google colab to encode my videos, but actually i can only do files on by one.
I want to encode all video files from the same folder.


I tried this but didn't seem to works


import os

DIRECTORY= '/content/drive/My Drive/Videos'
for filename in os.listdir(DIRECTORY):
 if (filename.endswith(".mov")): #or .avi, .mpeg, whatever.
 os.system("ffmpeg -i {0} -c:v libx265 -crf 26 -c:a aac -b:a 160k output%d.mp4".format(filename))
 print(filename)



Edit : I edited the FFmpeg command but still not workings on Google Colab.
Edit 2 : Print command only return the name of the files with the extension like "MyMovie.mov" how do i put the full path to the ffmpeg command ? I also want to put the ouput files to a subfolder named x265