Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (37)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

Sur d’autres sites (6973)

  • Using ffplay with RTSP and source-specific multicast

    14 septembre 2022, par bigbrobrody

    We are trying to use ffplay to join a live video source in a network that uses IGMPv3 source-specific multicast.

    


    If we use an SDP file this works fine and wireshark shows that ffplay correctly sends a source-specific multicast membership report.

    


    However, when we try to join the same source using RTSP, ffplay seems to ignore the source-specific address contained in the SDP response to RTSP DESCRIBE and fails because it tries to join for any source. This is the command used :

    


    ffplay -loglevel debug -rtsp_transport udp_multicast -protocol_whitelist rtp,udp,tcp -i rtsp://[username:password]@[ip address]/stream0

    


    The SDP response as reported by ffplay includes :

    


    a=source-filter: incl IN IP4 * [ssm ip address]

    


    The only error reported by ffplay is :

    


    Failed to parse interval end specification ''

    


    Wireshark shows that ffplay is not performing an SSM join :

    


    Membership Report / Join group [group IP address] for any sources

    


    Further details in the screenshot below. Are we doing something wrong, is this a feature of ffplay or a potential bug ?

    


    I note that libavformat/rtsp.h contains the comment /** The following are used only in SDP, not RTSP */ against code for sdp port, source-specific multicast addresses, etc. I’m not sure if that hints at our issue being because of a feature in ffmpeg.

    


    ffplay using rtsp and ssm

    


  • Anomalie #3386 : Spip derrière Varnish : port non-standard dans l’URL ?

    14 février 2015, par Fil Up

    Ah en effet, je n’ai pas le problème que tu signales car mon phpinfo() me dit (à tort !) qu’il est appelé par le port 80.
    Est-ce que ça peut être un effet du mod_rpaf que j’ai installé dans apache ?

    Exemple sur www.spip.net :

    HTTP_X_FORWARDED_FOR     78.202.xx.xx, 78.202.xx.xx
    HTTP_X_VARNISH     1559171843
    SERVER_SIGNATURE     
    Apache/2.2.22 (Debian) Server at www.spip.net Port 80

    SERVER_NAME www.spip.net
    SERVER_ADDR 127.0.0.1
    SERVER_PORT 80
    REMOTE_ADDR 78.202.xx.xx

    (78.202.xx.xx est l’adresse ip de mon navigateur)

  • Split video on android via ffmpeg

    27 septembre 2016, par Lior

    I have tried to use ffmpeg to split video,
    by adding compile 'org.bytedeco:javacv:1.+'and
    compile 'org.bytedeco.javacpp-presets:ffmpeg:3.1.2-1.2:android-arm' to my gradle file i got all of *.os files which is JNI wrap of all ffmpeg library to my android project .

    According ffmpeg wiki there is option to split the video but how i deal with command like ffmpeg -ss 00:22:30 -i Mononoke.Hime.mkv -ss 00:00:30 -frames:v 1 out3.jpg in android.

    I hope for some help if someone delt with splitting video file on android before, Thanks.