Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (69)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

Sur d’autres sites (13479)

  • compile own ffmpeg filter

    20 juin 2023, par lfk

    I'm trying compile my own ffmpeg filter using official tutorial. My filter uses C++ code. I made header file and adapted my C++ function definition for C. Now I'm trying compile with command make -j<libavfilter> ffmpeg</libavfilter>, but receiving an error message

    &#xA;

    &#xA;

    gcc -Llibavcodec -Llibavdevice -Llibavfilter -Llibavformat&#xA;-Llibavresample -Llibavutil -Llibpostproc -Llibswscale -Llibswresample -Wl,—as-needed -Wl,-z,noexecstack -Wl,—warn-common -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample&#xA;-o ffmpeg_g fftools/ffmpeg_opt.o fftools/ffmpeg_filter.o fftools/ffmpeg_hw.o fftools/cmdutils.o fftools/ffmpeg.o -lavdevice&#xA;-lavfilter -lavformat -lavcodec -lswresample -lswscale -lavutil -lm -pthread -lm -lm -lz -pthread -lm -lz -lm -lm -pthread -lm libavfilter/libavfilter.a(vf_foobar.o) : In function `filter_frame' :&#xA;/home/joeyes/ffmpeg_sources/ffmpeg/libavfilter/vf_foobar.c:302 :&#xA;undefined reference to MyFunction.c&#xA;collect2 : ld returned 1 exit status&#xA;*** [ffmpeg_g] Error 1

    &#xA;

    &#xA;

    For compilation I added OBJS-$(CONFIG_FOOBAR_FILTER) &#x2B;= vf_foobar.o MyCode.o to /libavfilter/makefile

    &#xA;

    Also I put MyCode.h & MyCode.cpp to /libavfilter folder

    &#xA;

  • Error while saving a matplotlib animation, missing 'dpi' argument

    27 septembre 2020, par aarcas

    I'm trying to save an animation of matplotlib.animation.AnimationFunc and I get an error saying 'dpi' argument missing. Obviously, I have the dpi set so I don't understand where this error comes from.

    &#xA;&#xA;

    I'm running python 3.6 and matplotlib 3.0.3, I also just installed ffmpeg from ubuntu official repositories (Ubuntu 18.04).

    &#xA;&#xA;

    This is the part of my code that should affect that, although I think it should be something of the system :

    &#xA;&#xA;

    Writer = writers[&#x27;ffmpeg&#x27;]&#xA;writer = Writer(fps=15, metadata=dict(artist=&#x27;Me&#x27;), bitrate=1800,)&#xA;ani = FuncAnimation(fig, anime, interval=time_step *&#xA;                    10**3, frames=F, repeat=False,) &#xA;ani.save(&#x27;standard_map.mp4&#x27;, writer=Writer, dpi=100)&#xA;

    &#xA;&#xA;

    The errors is :

    &#xA;&#xA;

    with writer.saving(self._fig, filename, dpi):&#xA;File "/usr/lib/python3.6/contextlib.py", line 159, in helper&#xA;    return _GeneratorContextManager(func, args, kwds)&#xA;File "/usr/lib/python3.6/contextlib.py", line 60, in __init__&#xA;    self.gen = func(*args, **kwds) TypeError: saving() missing 1 required positional argument: &#x27;dpi&#x27;&#xA;

    &#xA;&#xA;

    I tried both adding the lines they suggested there and the error stills the same.

    &#xA;&#xA;

    plt.rcParams[&#x27;animation.ffmpeg_path&#x27;] = &#x27;/usr/bin/ffmpeg&#x27;&#xA;

    &#xA;&#xA;

    I also tried changing the writer to 'imagemagick' the one set on Ubuntu by default and the error persists.

    &#xA;

  • What are all the command `options` to execute with ?

    25 janvier 2023, par Phil Lucks

    I'd like to be able to compress the video in a way to help improve upload times.

    &#xA;

    In reading the docs for FFMpeg Kit, using React Native, there is a basic execute command string of &#x27;-i file1.mp4 -c:v mpeg4 file2.mp4&#x27;... I can guess at what some of this means, in terms of input & output file names based on the ffMPEG docs, however, some of these options I am not sure of.

    &#xA;

    Like why is there a -i flag prefix ? Is this "input" ?&#xA;Why is there -c:v ? Is this "convert video" ?&#xA;What if I want to reduce frame rate, or change size of video ?

    &#xA;

    The TS def is just a string...

    &#xA;

    Is there a good place to understand what the official docs options map to the strings ? I think

    &#xA;