Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (37)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (7992)

  • fate/async : test error code from underlying protocol

    10 octobre 2015, par Zhang Rui
    fate/async : test error code from underlying protocol
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/async.c
    • [DH] tests/ref/fate/async
  • fate : add test for async protocol

    21 juillet 2015, par Zhang Rui
    fate : add test for async protocol
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/Makefile
    • [DH] libavformat/async.c
    • [DH] tests/fate/libavformat.mak
    • [DH] tests/ref/fate/async
  • How to configure ffmpeg with libsrt (Secure Reliable Transport) protocol ?

    15 mars 2019, par Developer

    I want to configure ffmpeg with libsrt (Secure Reliable Transport) protocol on linux-Ubuntu OS, I followed the steps from this link

    But when run $./configure --enable-libsrt command it gives me an error :

    ERROR: srt >= 1.3.0 not found using pkg-config

    I modified the configuration file, it executed the above command but when i run $ make command it end up with the following errors :

    LD  ffmpeg_g
    libavformat/libavformat.so: undefined reference to `srt_socket'
    libavformat/libavformat.so: undefined reference to `srt_bind'
    libavformat/libavformat.so: undefined reference to `srt_getsockopt'
    libavformat/libavformat.so: undefined reference to `srt_close'
    libavformat/libavformat.so: undefined reference to `srt_epoll_add_usock'
    libavformat/libavformat.so: undefined reference to `srt_startup'
    libavformat/libavformat.so: undefined reference to `srt_connect'
    libavformat/libavformat.so: undefined reference to `srt_epoll_release'
    libavformat/libavformat.so: undefined reference to `srt_listen'
    libavformat/libavformat.so: undefined reference to `srt_getlasterror'
    libavformat/libavformat.so: undefined reference to `srt_getlasterror_str'
    libavformat/libavformat.so: undefined reference to `srt_cleanup'
    libavformat/libavformat.so: undefined reference to `srt_setsockopt'
    libavformat/libavformat.so: undefined reference to `srt_sendmsg'
    libavformat/libavformat.so: undefined reference to `srt_clearlasterror'
    libavformat/libavformat.so: undefined reference to `srt_epoll_wait'
    libavformat/libavformat.so: undefined reference to `srt_epoll_remove_usock'
    libavformat/libavformat.so: undefined reference to `srt_epoll_create'
    libavformat/libavformat.so: undefined reference to `srt_recvmsg'
    libavformat/libavformat.so: undefined reference to `srt_accept'
    collect2: error: ld returned 1 exit status
    Makefile:108: recipe for target 'ffmpeg_g' failed
    make: *** [ffmpeg_g] Error 1

    What are exact steps to enable libsrt with ffmpeg ? Am i missing anything ? Is there any patch i have to add to existing ffmpeg source ?

    Thanks in advance !!!