Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (46)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5844)

  • Merge commit ’46bacb5cc6169ff5e8e982495c4925467c1d8bb7’

    14 janvier 2014, par Michael Niedermayer
    Merge commit ’46bacb5cc6169ff5e8e982495c4925467c1d8bb7’
    

    * commit ’46bacb5cc6169ff5e8e982495c4925467c1d8bb7’ :
    x86 : Consistently use cpu flag detection macros in places that still miss it

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/x86/mpegaudiodsp.c
    • [DH] libswscale/x86/swscale.c
    • [DH] libswscale/x86/yuv2rgb.c
  • Evolution #3498 (Fermé) : 3.1 : SPIP 3.1.0-beta [22291] SVP (bouton "version obsolete")

    4 juillet 2015, par YannX DYX

    Mini-amélioration (perte de fonctionnalité par rapport à 3.0)

    L’affichage des plugins* ecrire/ ?exec=admin_plugin*
    montre en plus eventuellement des "short" "information" pour pour les plugins en version
    - incompatible
    - obsolete
    Ces blocs, générés dans svp/formulaires/inc-admin_plugin.html écrasent et masquent le nom du plugin (car ils ont un padding-top & padding-bottom trop imposants) : padding : 0.6925em 10px 0.6925em 40px ; )



    version incompatible


    Leur stylisation dépend de .formulaire_spip ... .information
    que l’on pourrait re-styler (sans doute dans svp/prive/style_prive_plugin_svp.html ) pour réduire à 2px ... ce qui rendrait la lecture et l’usage plus facile

    Par ailleurs je recupère (en PHP 5.3.13 ! ) un :
    Warning : Invalid argument supplied for foreach() in I :\www\.4LR\plugins-dist\svp\formulaires\admin_plugin.php on line 126

    Et, "last but not least" les boutons individuels d’action (visibles au survol, et à la coche) sur les plugins ne fonctionnent pas, avec un message !
    (X) Aucun plugin sélectionné...

    Désolé, mais je ne sais pas aller plus loin...

  • Using libav, how to force RTSP stream over TCP ?

    15 août 2023, par hamidi

    By using ffmpeg or ffplay you may specify "-rtsp_transport tcp" switch to force the rtsp stream be opened via tcp. In programming, I'm using libav to open the rtsp stream with the following code :

    &#xA;

    AVDictionary *options = NULL;&#xA;av_dict_set(&amp;options, "rtsp_transport", "tcp", 0);&#xA;int status = avformat_open_input(&amp;mFormatContext, path.c_str(), inputFormat, &amp;options);&#xA;

    &#xA;

    and I expect the same behavior. But the url 'path' is opened via udp. I may figure this out this way :

    &#xA;

    I create an SDP file with libav and write the received packets to it. Then I use ffplay to process and play the sdp file. I get errors like :

    &#xA;

    &#xA;

    RTP : missed 1 packets

    &#xA;

    &#xA;

    &#xA;

    error while decoding MB 75 38, bytestream -48

    &#xA;

    &#xA;

    If the rtsp stream has been opened via TCP, I should not miss any packets, and the second type of error, I think, is caused by losing packets too. So, it seems that the rtsp_transport option is not working.

    &#xA;

    Any idea ?

    &#xA;

    Update

    &#xA;

    I found that av_dict_set works as expected, but the SDP file is made incorrectly (maybe). Its content is like :

    &#xA;

    v=0&#xA;o=- 0 0 IN IP4 127.0.0.1&#xA;s=No Name&#xA;c=IN IP4 226.1.1.15/0&#xA;t=0 0&#xA;a=tool:libavformat 56.40.101&#xA;m=video 43908 RTP/AVP 96&#xA;a=rtpmap:96 H264/90000&#xA;a=fmtp:96 packetization-mode=1; sprop-parameter-sets=Z00AKpY1QPAET8s3AQEBAgA=,aO48gAA=; profile-level-id=4D002A&#xA;

    &#xA;

    I researched about it and found that the line beginning with 'm' should contain TCP instead of RTP/AVP, although all of this is my guess. The ffplay is reading the sdp file in the same system, so no socket or network connection exists between ffplay and the sdp file. So my guess may be incorrect. What do you think about the sdp file ? May it be incorrect ? I make it by av_sdp_create function and don't change it. I write it directly to the file.

    &#xA;