Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (68)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (5801)

  • Javascript Discord bot error : "FFMPEG not found" even though ffmpeg-binaries have been added to the package.json

    13 août 2018, par Xyvyrianeth

    I keep my bot online using Heroku, so installing FFMPEG to my computer wouldn’t really help me any.

    The issue is that I’m still getting this error despite having the npm ffmpeg-binaries added to my package.json’s dependencies. I’ve also tried using git URLs from Github and the official FFMPEG website, as well as trying to install the git directly using the run-command option in Heroku’s application page, but I keep getting this same error. Am I missing something ?

  • ffmpeg concat error unable to find a suitable output format

    27 janvier 2020, par jasan

    I’m trying to batch concat a outro video to multiple videos.
    I am just tetsing it using the following command :

    ffmpeg -i test.mp4 -i hello.mp4 -filter comp
    lex “[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]” -map “[v]” -map “[a]” outpu
    t_video.mp4

    However I get the following Error :

    [NULL @ 04fc2c00] Unable to find a suitable output format for '[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]'
    [0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]: Invalid argument
  • FFmpegFrameGrabber deprecated pixel format error

    6 janvier 2015, par TomTom

    I tried to show the images my phone sends over WiFi with JavaCV and the FFmpegFrameGrabber class. Unfortunately I get this error, no matter which pixel format I set (tried from 0 up to 65).

    Input #0, mjpeg, from 'http://IP:PORT/video':
    Duration: N/A, bitrate: N/A
    Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 640x480 [SAR 1:1 DAR 2:3], 24 tbr, 1200k tbn, 24 tbc    
    [swscaler @ 0x7ff6cc3cba00] deprecated pixel format used, make sure you did set range correctly

    This is how I create the FrameGrabber :

    FrameGrabber grabber = new FFmpegFrameGrabber("http://IP:PORT/video");
    grabber.setFormat("mjpeg");
    grabber.setVideoCodec(8);
    grabber.setFrameRate(24);

    And then getting the frame :

    frame = grabber.grab();

    EDIT :

    Apparently this error comes from the ffmpeg library and has something to do with jpeg.

    It is located in : libswscale/utils.c

    Line 975 and 976 cause this error :

    if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat)
        av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");

    Unfortunately I am not skilled enough to delete/change this line. So I just ignore this messages as it doesn’t affect the program. Unless someone can recompile an edited version of ffmpeg for mac :)