Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (16284)

  • illegal text-relocoation (direct reference) to (global,weak) for architecture i386

    7 janvier 2015, par OrangeDog

    Searching about shows this error in a number of mailing lists, but neither a general solution nor explanation is forthcoming.

    What does illegal text-relocoation (direct reference) to (global,weak) mean and how can it be resolved.

    Specifically, I have built ffmpeg-2.5.2 using this script. When building XCode tests that use it, there is the following error :

    ld: illegal text-relocoation (direct reference) to (global,weak)
       _ff_h264_cabac_tables in <...>/myLib.a(cabac.o)
       from _ff_h264_decode_mb_cabac in <...>/myLib.a(h264_cabac.o)
       for architecture i386

    Does this require compiler/linker options to fix, or some kind of code change ?

  • fftools/ffmpeg_enc : only promote first frame side data to global when meaningful

    23 mars 2024, par Anton Khirnov
    fftools/ffmpeg_enc : only promote first frame side data to global when meaningful
    

    Skip those side data types that do not make sense as global side data.

    • [DH] fftools/ffmpeg_enc.c
  • In Python, why do 'writer' is considered to be as an unexpected keyword argument for save

    23 mars 2014, par Strömungsmechanik

    I would like to save an animation using the function save in Python. During compilation, I get the following message :

    anim.save('mymovie.mp4',writer="ffmpeg")
    TypeError: save() got an unexpected keyword argument 'writer'

    Please note that I have installed successfully FFmpeg. Here is a minimal working environment :

    import numpy as np
    from matplotlib import pyplot as plt
    from matplotlib import animation
    from numpy import pi

    X,Y = np.meshgrid(np.arange(0,2*np.pi,.2),np.arange(0,2*np.pi,.2) )  
    U = np.cos(X)
    V = np.sin(Y)

    fig,ax = plt.subplots(1,1)
    Q = ax.quiver( X, Y, U, V, pivot='mid', color='r', units='inches')

    ax.set_xlim(0, 2*pi)
    ax.set_ylim(0, 2*pi)

    def update_quiver(num, Q, X, Y):
       U = np.cos(X + num*0.1)
       V = np.sin(Y + num*0.1)
       Q.set_UVC(U,V)
       return Q,

    anim = animation.FuncAnimation(fig, update_quiver, fargs=(Q, X, Y),
       interval=10, blit=False)

    anim.save('mymovie.mp4',writer="ffmpeg")