
Recherche avancée
Autres articles (111)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (5785)
-
qsv : enforcing continuous memory layout
30 juillet 2018, par Maxym Dmytrychenko -
avcodec/nvdec : avoid needless copy of output frame
7 mai 2018, par Timo Rothenpieleravcodec/nvdec : avoid needless copy of output frame
Replaces the data pointers with the mapped cuvid ones.
Adds buffer_refs to the frame to ensure the needed contexts stay alive
and the cuvid idx stays allocated.
Adds another buffer_ref to unmap the frame when it's unreferenced itself. -
Converting mov to mp4 with ffmpeg better quality [closed]
23 avril 2020, par Calamity JaneI want to convert mov videos to mp4. Currentoy I manage this with ffmpeg via bash with the following call :



ffmpeg -i input.mov -f mp4 -vcodec mpeg2video -acodec mp3 output.mp4




Yes that works, but the quality is abysmal. My 50Mb is shrunken to a handy 2.3 Mb file.
The I tried the variation where I just change the container :



ffmpeg -i input.mov -f mp4 -vcodec copy -acodec mp3 output.mp4




Yes that works, too, but the file is still huge since I don't compress the video. So my 50Mb stay 50Mb.



Is there a setting, where I can do a slight or gradual compression, without having a total lack of quality ? an output file of maybe 10 - 20 Mb would be my target.



What I tried :



ffmpeg -i input.mov -f mp4 -vcodec -qscale:v 4 -acodec mp3 output.mp4



Gives me the error message :



WARNING : library configuration mismatch
 [...]
 Unknown encoder '-qscale:v'



Version used :
ffmpeg version 2.8.11-0ubuntu0.16.04.1