Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (86)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5848)

  • Ffmpeg libx264rgb and libx264 yuv444p gives very different results

    1er février 2020, par Mustafa Akın Yılmaz

    I am trying to create a lossy compressed video from several .png files. I am using the following ffmpeg commdans :

    ffmpeg -i %8d.png -frames:v 4 -c:v libx264rgb -pix_fmt rgb24 -g 4 -qp 30 -r 25 out.mp4

    and

    ffmpeg -i %8d.png -frames:v 4 -c:v libx264 -pix_fmt yuv444p -g 4 -qp 30 -r 25 out.mp4

    Then I am extracting frames from the videos with the command :

    ffmpeg -i out.mp4 -r 25 %8d.png

    When I compare the bitrate and PSNR, I found that the yuv444p gives about 2 db gain at the same bitrate. Why such a huge difference is observed even I did set yuv444p which does not apply chroma subsampling ?

  • Ffmpeg libx264rgb and libx264 yuv444p gives very different results

    1er février 2020, par Mustafa Akın Yılmaz

    I am trying to create a lossy compressed video from several .png files. I am using the following ffmpeg commdans :

    



    ffmpeg -i %8d.png -frames:v 4 -c:v libx264rgb -pix_fmt rgb24 -g 4 -qp 30 -r 25 out.mp4


    



    and

    



    ffmpeg -i %8d.png -frames:v 4 -c:v libx264 -pix_fmt yuv444p -g 4 -qp 30 -r 25 out.mp4


    



    Then I am extracting frames from the videos with the command :

    



    ffmpeg -i out.mp4 -r 25 %8d.png


    



    When I compare the bitrate and PSNR, I found that the yuv444p gives about 2 db gain at the same bitrate. Why such a huge difference is observed even I did set yuv444p which does not apply chroma subsampling ?

    


  • Using FFmpeg and IPython

    25 février 2014, par Kreger51

    I am relatively new to Python (I used MATLAB a lot more). I essentially want to be able to make and save animations. So I went and checked how it's done and found this :
    http://jakevdp.github.io/blog/2012/08/18/matplotlib-animation-tutorial/

    I straight up copied/pasted the code in an IPython Notebook.

    I understand that ffmpeg must be installed, which I thought I did (according to http://www.wikihow.com/Install-FFmpeg-on-Windows). The path is C :/ffmpeg. It does work when I try ffmpeg -version in the command prompt. It also works in WinPython's command prompt. I don't know if it helps, but the path for Ipython is :
    C :\Users\Sal\WinPython-32bit-3.3.2.3\python-3.3.2\Scripts /

    However, it still doesn't work. The error given is :
    AttributeError : 'str' object has no attribute 'saving'
    This error occurs at the .save command of course.
    I even tried to add what's below. Doesn't do anything extra.
    writer = 'ffmpeg'

    I am using Windows 7, WinPython3.3.

    Thank you very much