
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (75)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (11846)
-
FFMPEG - How do i apply a Bitstream filter for a specific timestamp or percentage of a video or audio stream
31 janvier 2024, par David ClewsHiya i would like to apply a simple noise bitstream filter to a video stream using ffmpeg but i can only figure out a way to only apply a bitstream filter all the way through a video stream. Is there a way to only select a range or just a specific timestamp of the position required.


This is the current code im currently using.


ffmpeg -framerate 10 -loop 1 -i input.jpeg -t 5 -bsf:v noise -c:v mpeg2video -q:v 2 -filter_complex scale=320:-1 output.ts


i would like something like
hh:mm:ss:duration
orhh:mm:ss,duration:hh:mm:ss,duration


-
Evolution #4110 (Nouveau) : set_request : premier paramètre décrivant un chemin dans un tableau
11 mars 2018, par Maïeul Rouquettesi je fais
set_request(’saisie_modifiee_evenements_1[options][date_debut_max_fixe]’)
celui me crée dans get une entrée
saisie_modifiee_evenements_1[options][date_debut_max_fixe]
dans le $GET, et pas une sous entrée "debut_max_fixe" dans l’entre "options" du "saisie_modifiee_evenements" du $GET
Par cohérence, il faudrait que request fonctionne ainsi aussi
-
how do I apply watermark on multiple videos in the current directory with ffmpeg
22 octobre 2017, par Ariane Martins Gomes Do RegoLinux + ffmpeg
I have a folder with 300 videos. I need to apply the same watermark on all these videos, so in the folder I have 300 video files + 1 png file which is my watermark, how do I do this without the system asking to overwrite the files ? how to generate a different name for each output file ? that is at least video1.mp4 video2.mp4 etc...
ffmpeg -i video.mp4 -i watermark.png -filter_complex 'overlay=10:10' output.mp4
I found something like that.
It works without errors, but asks if I want to replace the previous video with the next video to be tagged :
#!/bin/bash
for f in *.mp4; do ffmpeg -i "$f" -i watermark.png -filter_complex 'overlay=10:10' -strict -2 "$~nf-360p.mp4"; doneHow do I generate a command that has the flag that in each mp4 file processed to apply the watermark of the current directory, gets a different name so that the output files were not overwritten ?
Thanks.