Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (81)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (8673)

  • Anomalie #3811 (Fermé) : Sur le Wiki de Contrib = versionning apparent incorrect !

    4 mai 2017, par cedric -
  • Android how to record my mobile screen in android with out using USB cable ?

    21 juin 2012, par Rajesh

    I am wondering to do the android application which should record my screen activities and should store as the video file .

    1) i need to take the screen shots of my screen movements with the periodic interval and should store in sdcard.

    2) how to create the video from the images which is already available in my sdcard. I have tried with the FFMPEG. but i have few problems dont know how to solve it .. the truth is dont know the program to convert it .

    3 ) is it possible to show the picture in my camera ?? That means if user opens the camera from my app some times i should show the pictures which available in my sdcard .. if its so please advice me .

    Thanks ,
    Rajesh .

  • call avio_open function with non-english filename is invalid

    3 juillet 2013, par Faller

    i have been writing unicode based program with libav and i wanna make some file through libav with filename "中.mp4".

    this filename is not english, and when i call, function return positive integer(not fail).

    but there is "ѱ۰.mp4" instead of "中.mp4". (invalid file name.)

    what's the matter ?

    char * szFilenameA = 0;

    #ifdef _UNICODE
       CSHArray<char> aFilenameBuffer;
       aFilenameBuffer.Alloc(lstrlen(szFileName) * 2);
       ZeroMemory(aFilenameBuffer, aFilenameBuffer.GetSize());
       WideCharToMultiByte(CP_ACP, 0, szFileName, lstrlen(szFileName), aFilenameBuffer, aFilenameBuffer.GetSize(), NULL, NULL);
       szFilenameA = aFilenameBuffer;
    #else
       szFilenameA = (TCHAR *)szFileName;
    #endif

       ZeroMemory(m_pOutputFormatCtx->filename,1024);
       _snprintf(m_pOutputFormatCtx->filename, strlen(szFilenameA), "%s", szFilenameA);

       avio_open(&amp;m_pOutputFormatCtx->pb, szFilenameA, AVIO_FLAG_WRITE)
    </char>