
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (28)
-
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 ;
-
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 ) (...) -
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
Sur d’autres sites (5406)
-
FFmpeg : Batch convert all audio (mp3) in folder to video (mp4) with album artwork (but it down scales my resolution)
9 février 2021, par unknownmanI followed this source (FFmpeg : Batch convert all audio (mp3) in folder to video (mp4) with album artwork) and it works, but it down scales my album cover from
1425 x 1406
dimension to400 x 396
.

My Batch code is


echo off
for %%a in ("*.mp3") do (
 ffmpeg -i "%%a" -an -vcodec copy "C:\mp4\%%~na.jpg"
 "C:\ffmpeg\bin\ffmpeg" -loop 1 -i "C:\mp4\%%~na.jpg" -i "%%a" -c:v libx264 -vf pad="width=ceil(iw/2)*2:height=ceil(ih/2)*2" -preset veryslow -tune stillimage -crf 18 -pix_fmt yuv420p -c:a aac -shortest -strict experimental -b:a 192k -shortest "C:\mp4\%%~na.mp4" )
pause



Problem is I don't know how to fix "down scaling" thing, and I am sorry for stupid questions but I need to know it. I watched other errors or tried to understand codes from others but I am not doing it well.


-
ffmpeg convert video to size 275x157 pixels [closed]
21 janvier 2024, par degrI want to make video of exact size 275x157, but ffmpeg always make it 274x156.


So far I try next list of commands :


//it from my opinion, it should make vide of my size, and add padding if necessary, but result is same - 274x156
ffmpeg -i ScreenRecorderProject7.mkv -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4

//more advanced variant of previous command, not work also
ffmpeg -i ScreenRecorderProject7.mkv -strict -2 -filter:v "pad=275:157:(275-iw*min(275/iw\,157/ih))/2:(157-ih*min(275/iw\,157/ih))/2" WrathTrailer1334x750.mp4

//it told width is not divisible by 2
ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf scale=275x157 -aspect 1.75259 output.mp4

//in description it was mentioned it add 1px pad, but I feel it is wrong; result incorrect
ffmpeg -i ScreenRecorderProject5.mkv -strict -2 -vf pad="width=ceil(iw/2)*2:height=ceil(ih/2)*2" output.mp4



Also I try to do so with movavi video editor, streamlabs and couple online video converters and always I'm getting wrong resolution. Cant understand what is wrong with that numbers


-
how to pass arguments to existing process instance in c#
28 octobre 2013, par Akash LanghaniI am using ffmpeg and I have start a process and I want to pass an argument to same instance after its start, so how to do this in c sharp any resource. Basically I am using ffmpeg to recored desktop screen and ffmpeg recording can be stop with "q" word.