Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (11664)

  • Merge commit '3303f86467efa99f23c670707f5be094cc9ce547'

    12 octobre 2017, par James Almer
    Merge commit '3303f86467efa99f23c670707f5be094cc9ce547'
    

    * commit '3303f86467efa99f23c670707f5be094cc9ce547' :
    nvenc : Remove qmin and qmax constraints for nvenc vbr

    [10:06:59 CEST] <BtbN> jamrial, 3303f86467 is a no-op. NV_ENC_PARAMS_RC_2_PASS_VBR is a deprecated rc mode(http://git.videolan.org/?p=ffmpeg.git;a=blob;f=compat/nvenc/nvEncodeAPI.h;h=c3a829421282d5f22f82fc285723f13eb660f053;hb=HEAD#l268).
    [10:07:14 CEST] <BtbN> And the first hunk with qmin/qmax was applied to ffmpeg quite a while ago already.
    [10:07:49 CEST] <BtbN> In a slightly different fashion, but with the same effect
    [10:07:58 CEST] <BtbN> Came as a patch from nvidia iirc

    Merged-by : James Almer <jamrial@gmail.com>

  • Restreaming raw data to ffserver gives rc buffer overflow error

    19 octobre 2017, par Nithish Reddy J

    My goal here is to fetch stream from live url to opencv python, process this stream and restream it to ffserver. Below is the command i use :

    python store.py | ffmpeg -f rawvideo -pixel_format yuv420p -video_size
    544x576 -framerate 25 -i - http://localhost:8090/feed1.ffm

    Below is my ffserver.conf file

    <feed>

    File /tmp/feed1.ffm
    FileMaxSize 3G
    ACL allow 127.0.0.1

    </feed>

    <stream>
    Format mpeg
    VideoBitRate 128
    VideoBufferSize 60000
    VideoFrameRate 25
    VideoSize 544x576
    VideoGopSize 12
    NoAudio
    VideoQMax 45
    ACL allow localhost
    ACL allow 192.168.0.0 192.168.255.255

    </stream>

    and when i run the command stated above it gives me the error

    [mpeg1video @ 0x1c6e6c0] rc buffer underflow

    and to test my feed when i hit the command

    ffplay http://localhost:8090/test1.mpg

    I can see the output feed being played but there is a green mask applied on the feed.Attaching Image :
    enter image description here

  • How to pause a vedio when a watermark is added to it (with multiple overlays) using ffmpeg

    26 octobre 2017, par Manjula Tevula

    Am using FFMpegConverter to add watermark to a vedio.
    Successfully added watermark during specified timeframes.

    Now i need to pause the vedio when watermark is applied.

    NReco.VideoConverter.FFMpegConverter wrap = new FFMpegConverter() ;

    strFinal = -i D :\car.jpg -i D :\car.jpg -i D :\car.jpg -filter_complex \"[1:v] scale = 400:500[sc1] ;[2:v] scale = 20:10[sc2] ;[3:v] scale = 40:50[sc3] ;[0:v][sc1] overlay = 50:100:enable = ’between(t,6,8)’[tmp1] ;[tmp1][sc2] overlay = 100:150:enable=’between(t,10,12)’[tmp2] ;[tmp2][sc3] overlay = 120:180:enable=’between(t,14,18)’\""

    wrap.Invoke("-i D :/ch03_20170102120110_new(0).avi " + strFinal + " D :\Output.mp4") ;

    output is succesfully generated.

    can anyone help me with ffmpeg command to pause the vedio

    thank you