Recherche avancée

Médias (91)

Autres articles (87)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • 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 (...)

Sur d’autres sites (7589)

  • In some cases, the value of FFmpegMSS is null

    16 février 2018, par Sanhei
    Uri uri = new Uri("https://cloud189-nj.oos-js.ctyunapi.cn/68e09e6a-3a50-4f7b-ba59-968d61dcb771?response-content-type=video/mp4&Expires=1518683112&response-content-disposition=attachment%3Bfilename%3D%22%5BUHA-WINGS%5D%5BKakegurui%5D%5B01%5D%5B720p%5D%5BGB%5D.mp4%22&AWSAccessKeyId=ad2d051c334eb8bbf4c1&Signature=22RXF7qDozpBQNl44/QVx62Anv4%3D");
    var FFmpegMSS = FFmpegInteropMSS.CreateFFmpegInteropMSSFromUri(uri, true, true);

    When the value of uri is "http://edge.ivideo.sina.com.cn/31451018.flv?KID=sina,viask&Expires=1518796800&ssig=7zn7dHMQVK",the program can run normally

    What is the difference between them ?
    How do I modify the code to make ffmpeg work properly ?

    My English is not good, I’m sorry for the inconvenience.

  • avfilter/af_apsyclip : fix peak overestimation

    29 janvier 2022, par Jason Jang
    avfilter/af_apsyclip : fix peak overestimation
    

    Ignore more samples that are near the edge of the block. The reason
    is that the filtering tends to cause these samples to go above the
    window more than the samples near the middle. If these samples are
    included in the unwindowed peak estimation, the peak can be
    overestimated. Because the block is windowed again before
    overlapping, overshoots near the edge of the block are not very
    important.

    0.1 is the value from the version originally contributed to calf.

    Signed-off-by : Jason Jang <jcj83429@gmail.com>

    • [DH] libavfilter/af_apsyclip.c
  • FFMPEG file writer in python 2.7

    6 avril 2017, par byBanachTarskiIamcorrect

    Trying to animate a string in python, i think my code is fine but just having difficulties with the file writer. My code is (based off https://jakevdp.github.io/blog/2012/08/18/matplotlib-animation-tutorial/) :

    import numpy as np
    import scipy as sci
    import matplotlib.pyplot as plt
    import matplotlib.animation as animation
    plt.rcParams['animation.ffmpeg_path'] = 'C:\FFMPEG\bin\ffmpeg'


    s1=10.15
    gamma=(np.pi*np.sqrt(2))/2
    gamma=sci.special.jn_zeros(0,10)
    gamma1=gamma[9]
    gamma2=gamma[8]
    print gamma1,gamma2

    sigma=np.linspace(0,2*s1,10000)

    def xprime(sigma,t):
       alpha = gamma1*(np.cos(np.pi*t/s1)*np.cos((np.pi*sigma)/s1))
       beta = gamma1*(np.sin(np.pi*t/s1)*np.sin((np.pi*sigma)/s1))
       xprime=np.cos(alpha)*np.cos(beta)
       return xprime

    def yprime(sigma,t):
       alpha = gamma2*(np.cos(np.pi*t/s1)*np.cos((np.pi*sigma)/s1))
       beta = gamma2*(np.sin(np.pi*t/s1)*np.sin((np.pi*sigma)/s1))
       yprime=np.cos(alpha)*np.sin(beta)
       return yprime

    fig = plt.figure()
    ax = plt.axes(xlim=(-0.4, 0.4), ylim=(-3, 3))
    line, = ax.plot([], [], lw=2)

    def init():
       line.set_data([], [])
       return line,

    def animate(i):
       sigma=np.linspace(0,2*s1,10000)
       t = (i*2*s1)/200
       yint=sci.integrate.cumtrapz(yprime(sigma,t),sigma)
       xint=sci.integrate.cumtrapz(xprime(sigma,t),sigma)
       line.set_data(xint, yint)
       return line,


    anim = animation.FuncAnimation(fig, animate, init_func=init,
                              frames=200, interval=20, blit=True)

    FFwriter=animation.FFMpegWriter()
    anim.save('basic_animation.mp4', writer=FFwriter, fps=30, extra_args=['-vcodec', 'libx264'])

    plt.show()

    Currently getting the error message

    RuntimeError: Passing in values for arguments for arguments fps, codec, bitrate, extra_args, or metadata is not supported when writer is an existing MovieWriter instance. These should instead be passed as arguments when creating the MovieWriter instance.'

    I think my error is in the calling or placement of the FFMpeg file but i’m unsure what i’m doing wrong. Probably very obvious but can’t see it at the moment / unsure what the error message actually means.