Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (91)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (6680)

  • Anomalie #2794 : Affichage bandeau

    10 septembre 2012, par marcimat -

    J’ai baissé celui du porte plume déjà là http://zone.spip.org/trac/spip-zone/changeset/65728 Et le z-index du menu est à 10 aussi j’ai l’impression.

  • What's the difference between H265, x265, x264, H264 and which of these uses GPU instead of CPU and how to use H265 GPU NVIDIA acceleration in ffmpeg ?

    30 juillet 2022, par Fab98

    I'm not sure if
x264/5
use CPU and if h264/5 use GPU and also if h265 is basically HEVC_NVENC for NVIDIA GPU acceleration. So, if you could give me more info about these encoding types it would be great. I understood that, summing up a lot, x26* use CPU and are slower but more accurate while h26* are the opposite but h265 is the most recent and optimal trade off.
Furthermore, I was trying to convert a video using GPU acceleration and my question is :

    


    Does the following command tell to the GPU to use h265 to encode a video holding the same audio and at upgrading it at its maximum video quality ? Furthermore, are there other ways to express the same command ?

    


    ffmpeg.exe -hwaccel_output_format cuda -i "input" -c:v hevc_nvenc -preset medium -rc constqp -qp 0 -c:a copy "output"


    


  • Converting PNG images to MP4 in Jupyter

    15 mars 2020, par Steve H

    This has had me going round in circles for hours, so I’m hoping one of you kind gents can help.

    I am trying to learn more about data science and have followed this course on creating a population pyramid (https://www.viralml.com/video-content.html?v=WmyYyOtZwzs). There were a few problems in the code, which I rectified, but one has eluded me.

    I am trying to convert a collection of images in the format anim_%d.png to an mp4 file using the code :

    ffmpeg -framerate 10 -i "anim_%d.png" -pix_fmt yuv420p out.mp4

    However, I get an invalid syntax error.

    I have also tried :

    avconv -f image2 -i anim_%d.png -r 76 -s 800x600 foo.avi

    then :

    ffmpeg -r 10 -i "anim_%d.png" -pix_fmt yuv420p out.mp4

    But they all give a syntax error.

    I am using Jupyter, via Anaconda on a Windows machine with Python 3.

    Any help would be greatly appreciated.

    Thanks
    Steve