Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (71)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

Sur d’autres sites (9339)

  • FFMPEG : Making a specifc range of color pixels transparent

    28 décembre 2017, par Pan Ng

    I am trying to overlay one video on top of another using ffmpeg, but couldn’t quite understand the error.
    I based on the existing command from here

    More specifically, I want to replace the all colors close to a specific color (say brown r:82,g:44,b:11), and then have them set as transparent.

    ffmpeg -i moonmen.mp4 -i transparent_overlay.mp4 -filter_complex
    "[1]split[m][a];
    [a]geq='if(between(r(X,Y), 77, 87)*between(g(X,Y), 39, 49)*between(b(X,Y), 06, 16) ,255:255:255,0:0:0)';
    [m][al]alphamerge[ovr];
    [0][ovr]overlay"
    output.mp4

    but I got error :

    [Parsed_geq_1 @ 0x7fc8e2e08400] Either YCbCr or RGB but not both must be specified
    [AVFilterGraph @ 0x7fc8e2e07c60] Error initializing filter 'geq' with args 'if(between(r(X,Y), 77, 87)*between(g(X,Y), 39, 49)*between(b(X,Y), 06, 16) ,255:255:255,0:0:0)'
    Error initializing complex filters.
    Invalid argument
  • How to live stream a local video using FFmpeg [closed]

    20 novembre 2022, par param trivedi

    I have been trying to stream local video on VLC using the FFmpeg library like this :

    


    $ ffmpeg -i sample.mp4 -v 0 -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000


    


    I have not been able to stream the file on VLC.

    


  • Regarding making a AVI file from G.711 PCM audio and H264 video

    23 septembre 2019, par Nidheesh V

    I have a G711 alaw and G711 ulaw audio pipes, and a h.264 video pipe.


    I want to create a .avi file which is made using the G711 audio and video using ffmpeg binary.

    i have tried using the below commands to generate ,but no luck

    ffmpeg -f h264 -i  /tmp/stream-0.h264 -vcodec  copy  -f pcm_alaw -i /tmp/audio-0.g711   -acodec copy  /tmp/sdcard/re_main.avi.

    When i run this command, the ffmpeg just hangs with the below print

    Seems stream 0 codec frame rate differs from container frame rate: 50.00 (50/1) -> 25.00 (50/2)
    Input #0, h264, from '/tmp/stream-0.h264':
     Duration: N/A, bitrate: N/A
       Stream #0.0: Video: h264, yuv420p, 1920x1080, 25 fps, 25 tbr, 1200k tbn, 50 tbc

    How can we make a AVI file ?