Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (57)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7668)

  • Anomalie #2686 (Nouveau) : Boucle {date>=#ENV{date}} en erreur

    3 mai 2012, par marcimat -

    Hello, Cy_altern montrait que la boucle suivante est en erreur depuis il faut analyser...">r19261, avec date=2012-04-05 dans l’environnement.

    #ID_ARTICLE Effectivement, le code généré transtype en INT la variable. Il fait cela parce qu’il ne trouve pas la colonne date dans la description de la (...)

  • How to use FFmpeg to generate a pure black stream and push to RTMP by code in C++

    23 avril 2022, par Guohy

    I'm new in FFmpeg. I want to generate a pure black stream using FFmpeg, and I don't want to use the FFmpeg command. I know below command can work.

    


    ffmpeg -f lavfi -i color=size=1920x1080:rate=25:color=black -f flv rtmp://172.16.63.123:9911/live/33bld


    


    So, someone knows how to generate a pure black stream and push to RTMP by code in C++ ? Thanks a lot.

    


  • C run linux shell command(fmpeg) slower than typing directly in terminal

    11 novembre 2014, par dadylonglegs

    I’m writing an application that execute a linux shell command (ffmpeg) from my C code. Such as :

    char command[2000];
    sprintf(command, "ffmpeg -i %s/%s -r 1 -vf scale=-1:120 -vframes 1 -ss  00:00:00 %s.gif", publicFolder, mediaFile, mediaFile);
    system(command);

    To extract video thumbnail from a specific video. But the strange that it is too much slower when executing shell command form C compare to typing directly to the terminal. I have no idea about this.
    Can anybody help me pls ?. Thanks in advance.