Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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, par

    Unlike 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, par

    Afin 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
    qsv : enforcing continuous memory layout
    

    we need to make sure that memory allocation for Y/UV planes is continuous and re-used from a
    pool

    Signed-off-by : Maxym Dmytrychenko <maxim.d33@gmail.com>

    • [DBH] libavcodec/qsvenc.c
  • avcodec/nvdec : avoid needless copy of output frame

    7 mai 2018, par Timo Rothenpieler
    avcodec/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.

    • [DH] libavcodec/nvdec.c
  • Converting mov to mp4 with ffmpeg better quality [closed]

    23 avril 2020, par Calamity Jane

    I want to convert mov videos to mp4. Currentoy I manage this with ffmpeg via bash with the following call :

    &#xA;&#xA;

    ffmpeg -i input.mov -f mp4 -vcodec mpeg2video -acodec mp3 output.mp4&#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

    ffmpeg -i input.mov -f mp4 -vcodec copy -acodec mp3 output.mp4&#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

    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.

    &#xA;&#xA;

    What I tried :

    &#xA;&#xA;

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

    &#xA;&#xA;

    Gives me the error message :

    &#xA;&#xA;

    WARNING : library configuration mismatch&#xA; [...]&#xA; Unknown encoder '-qscale:v'

    &#xA;&#xA;

    Version used :&#xA;ffmpeg version 2.8.11-0ubuntu0.16.04.1

    &#xA;