
Recherche avancée
Autres articles (51)
-
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) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (4768)
-
I am getting a SAR error when combining videos. What did I do wrong ?
24 mai 2019, par Dresden21I am using this command for combining a bunch of videos in the folder :
FOR %i in (*.mp4) DO ffmpeg -i intro.mkv -i %i -filter_complex "[0:0]
[0:1]
[1:0][1:1]concat=n=2:v=1:a=1[v][a]" -map "[v]" -map "[a]" -crf 17 -preset
veryfast -b:a 192k %i_intronew.mp4When I run this command I get this error :
Input link in1:v0 parameters (size 1280x720, SAR 1281:1280) do not match
the corresponding output link in0:v0 parameters (1280x720, SAR 1:1)What am I doing wrong ?
-
Trying to combine videos losslessly with ffmpeg
16 novembre 2016, par Jarppii am trying to create bath that would automatically join multiple videos that are in folder (liimattavat) and that would make them to .ts files in (roska) and after that it would just combine them all without quality loss to (valmis.mp4)
but i dont seem to get it working as i get something like path doesn’t exist@echo off
for %%a in ("liimattavat\*.mp4") do ffmpeg -i %%a -c copy -bsf:v h264_mp4toannexb -f mpegts "roska\%%~na.ts"
for %%a in ("roska\*.ts") do "concat:"roska\*.ts" -c copy -bsf:a aac_adtstoasc valmis.mp4
pausesorry if i was confusing, please ask me if you need more specific information.
-
I use ffmpeg to format videos according to tik-toke standards [closed]
8 mai 2024, par John RedI use ffmpeg to format videos according to tik-toke standards, but I don't know why videos are not cropped and lose quality.


const transcode = async () => {
 const ffmpeg = ffmpegRef.current;
 await ffmpeg.writeFile('input.mp4', await fetchFile(file));
 await ffmpeg.exec([
 '-i', 'input.mp4',
 '-vf', 'scale=1080:1920,crop=ih*(9/16):ih',
 'output.mp4'
 ]);
 const data = await ffmpeg.readFile('output.mp4');
 videoRef.current.src =
 URL.createObjectURL(new Blob([data.buffer], { type: 'video/mp4' }));
}



Changed the resolution and cropped it. It didn't help in any way, only lost quality. Not what I wanted at all.