Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (70)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (13393)

  • Revision 115390 : Pour la vérif date, on ne fait plus de dérogation en dur, mais on gère ...

    14 mai 2019, par rastapopoulos@… — Log

    Pour la vérif date, on ne fait plus de dérogation en dur, mais on gère le cas où c’est vide dans la fonction dédiée. En effet, même si c’est vide, on veut absolument passer dedans car ça peut être normalisé ! Là si c’était vide, pas de normalisation et donc pétage de SQL si on devait avoir un datetime. Dans tous les cas, la fonction renvoie pareil qu’avant : chaine vide, si la date est vide, mais c’est fait en interne.

  • How to record browser animation to video, on Server/VPS

    11 novembre 2015, par Andy B

    I have one big question : How to record an animation that plays in the browser on a server/VPS ? We’re looking for a open/source or even proprietary solution.

    The use-case :

    We have an online project that generates animations and we want to record them on the server side.
    Practically it’s as simple as that, as opening a url(eg : https://greensock.com/gsap) in the browser and record the animation.

    On the local PC it works if we use ffmpeg, but we want to record the video on the server side, especially on a VPS without GUI.

    There are some solutions :

    1. Install a Lightweight GUI on the VPS, accesible through VNC

    Something like this :
    https://vpsboard.com/topic/2786-running-a-lightweight-gui-on-your-vps/

    Then create a cron job that will do the following :

    • open the browser with the correct url and play the animation
    • use ffmpeg to record the animation
    • save the video somewhere

    This solution allows a SINGLE execution thread at the same time and I don’t really like the setup.

    1. Use a fake X server

    Create/use a fake X server, tell the browser to run in there, tell ffmpeg to record that screen !?

    The question is : HOW ?

    1. Virtual Machines within the VPS

    The question is : HOW ?

    I would like to have the possibility to execute this job in a sort of container (be it docker or virtual machines within the VPS), having also the possibility to execute multiple jobs in parallel.

    Thank you all in advance !

  • undefined reference to pl_log_create_341 whenever I try to compile ffmpeg and mpv under Arch Linux [closed]

    3 février 2024, par Mike Nguyen

    Ever since yesterday, I have been struggling to compile ffmpeg, and to a further extent, mpv, on Arch Linux due to the following error that is probably unique to my install :

    


    /usr/bin/ld: libavfilter/libavfilter.so: undefined reference to pl_log_create_341 collect2: error: ld returned 1 exit status make: *** [Makefile:133: ffplay_g] Error 1 make: *** Waiting for unfinished jobs.... /usr/bin/ld: libavfilter/libavfilter.so: undefined reference to pl_log_create_341'
collect2 : error : ld returned 1 exit status
make : *** [Makefile:133 : ffprobe_g] Error 1
/usr/bin/ld : libavfilter/libavfilter.so : undefined reference to pl_log_create_341' collect2: error: ld returned 1 exit status make: *** [Makefile:133: ffmpeg_g] Error 1

    


    I was trying to install mpd on my system, but pacman forced me to remove a ton of essential packages relating to multimedia, Qt, etc. I have since been able to reinstall most of these packages.

    


    However, my ffmpeg has been corrupted (as well as mpv failing to start) due to another error that apparently no one else has been getting (I have searched Google for this) :

    


    symbol lookup error: /usr/lib/libavfilter.so.9: undefined symbol: pl_tone_map_auto

    


    I have both libavfilter.so.9.12.100 and libavfilter.so.9.13.100 in my /usr/lib directory, and I am forced to run sudo ln -s /usr/lib/libavfilter.so.9.12.100 /usr/lib/libavfilter.so.9 every time I run pacman.

    


    I have spent countless hours browsing the web about what solutions are available, but as I said, I seem to be the only one getting these errors.

    


    Whether it's installing ffmpeg-git via the AUR, or removing and reinstalling mpv, nothing seems to fix the problem. And no one else is having this problem.

    


    I might be forced to do a clean install of Arch Linux, but I don't have the time for it.