Recherche avancée

Médias (91)

Autres articles (76)

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

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

  • Escape character "|" error (Linux command)

    22 mars 2013, par user1812668

    I'm trying to run a Linux command in Java.

    This is the command :

    "ffmpeg -i rtmp ://192.168.1.112/garage/stream26g -f mpegts -acodec libmp3lame -ar 48000 -ab 64000 -s 480x320 -r 30 -vcodec libx264 -b 544k -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -subq 5 -trellis 2 -refs 0 -coder 0 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 200k -maxrate 544k -bufsize 544k -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 10 -qmax 30 -qdiff 4 -level 30 -aspect 480:320 -g 30 -async 2 - | vod - 10 stream/stream26g/sample stream/stream26g/stream.m3u8 http://www.tshizerbia.com//video/ 5" ;

    But it gives me an error :

    Unable to find a suitable output format for |

    And I don't know what is the problem

    I used this to run the command

    Process p = Runtime.getRuntime().exec(command);

    If I put \\| in the string the message error is :

    Unable to find a suitable output format for |

    How can I escape this character ? Any ideas ?

  • lavd/decklink : Fix compile issue on OS X

    24 juin 2016, par Rick Kern
    lavd/decklink : Fix compile issue on OS X
    

    Fixes #4124 : Invalid argument ’-std=c99’ not allowed with ’C++/ObjC++’
    C++ files fail to compile. This adds ’-std=c++11’ to CXX_FLAGS to fix.

    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] common.mak
    • [DH] configure
  • lavc/qsvenc : Fix bitrate_limit to allow AVC encode in limited bitrate

    15 octobre 2019, par Linjie Fu
    lavc/qsvenc : Fix bitrate_limit to allow AVC encode in limited bitrate
    

    MFXVideoENCODE_Query calls CheckVideoParamQueryLike in MSDK and
    will determine whether to set param.mfx.TargetKbps to the allowed
    minTargetKbps according to the bitrate_limit in extco2 buffer.

    Thus q->param.ExtParam must be set before MFXVideoENCODE_Query in case
    minTargetKbps is written to TargetKbps by default.

    1080P AVC encoding with option "-bitrate_limit 0 -b:v 100k" :
    Before patch :
    902 kbps
    After patch :
    156 kbps
    Signed-off-by : Linjie Fu <linjie.fu@intel.com>

    • [DH] libavcodec/qsvenc.c