Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (99)

  • 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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8375)

  • FFMPEG not copying over metadata GPS data

    15 novembre 2017, par JK81

    Recording device tags the video file with geolocation, when converting from mov to mp4 the geolocation data is missing.
    ffmpeg -i source.mov -r 60 -c:v libx264 -c:a aac -map_metadata -1 -movflags faststart destination.mp4

    Am I doing something wrong ? I’m running the command from Windows 10 x64. If it’s not possible, is there a way to use a command at the same time for ExifTool to write it ?

    The lines for metadata missing :
    com.apple.quicktime.location.I &
    ©xyz

  • Put text into AVFrame

    19 février 2024, par Michal

    I use the FFmpeg library and I have an object of AVFrame which uses the format AV_PIX_FMT_YUV420P. I'd like to put a text on such frame in a given location, font size etc.

    


    I cannot find a proper API in FFmpeg library to do it, there is a function drawtext, but it's a static function inside a .c file (not a header).

    


    How to do it with FFmpeg and if it's not possible, what other library I should use instead ?

    


  • Android SIGSEGV code1 vs code2

    24 janvier 2014, par nmxprime

    As of i've seen, SIGSEGV (code 2) comes during memory access not own by the process, i.e., accessing a buffer of size 10 at 11th location. [Please correct if my observation is wrong]. What SIGSEGV (code 1) means ??

    I have this during the execution of ffmpeg(with neon enabled).

    avcodec_decode_video2(ctx, frame, &got_picture, avpkt);
    if(got_picture) {
    fprintf(stderr,"Got-Picture = %d",got_picture);
    }

    So how to resolve this code 1 Segment fault ? Any insight into this issue ??[i wish to better understand why it occurs, possibly in general]