Recherche avancée

Médias (91)

Autres articles (23)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (5705)

  • Improve XHTML support by escaping special characters in SWF URL

    29 novembre 2016, par JamesMGreene
    Improve XHTML support by escaping special characters in SWF URL
    

    But only escape them if the page is rendering in XML mode !

    Fixes #647

  • FFprobe or FFMpeg Get length of file in special time

    27 septembre 2016, par mohsen nayyeri

    I want to get start bit of video file.

    Example :
    Output of FFmpeg

    frame=  199 fps= 24 q=25.0 size=    2919kB time=00:00:09.92
    bitrate=2410.3kbits/

    I have time and i want to give size.
    I want to get start bit size from time. In this example i have time=00:00:09 and i want give 2919kB.

    Please help me.

  • How to open file name contain special characters in FFmpeg ?

    28 janvier 2015, par Alen Lee

    my project process the video by FFmpeg libarary, I test the my code with file which the file name contains special characters(like ’()+,-.09@A[]^_`a{} ®,Ѐ,ऄ, ఆ, Ⴀ,ᐁ,ᣀ,ᴀ,₠,⓪,⭙,ⶀ,㈀,啊.mp4’), but it failed to open the video stream at avformat_open_input().

    I test it via ffmpeg.exe with command line, it can open the file successfully.

    This is my code snippet :

       AVFormatContext *pFormatCtx = NULL;
       AVCodecContext  *pCodecCtx = NULL;
       AVFrame         *pFrameRGB = NULL;
       unsigned int    i, videoStream;
       AVCodec         *pCodec;
       AVFrame         *pFrame;
       AVPacket        packet;
       int             frameFinished;
       int             numBytes;
       uint8_t         *buffer;
       AVPixelFormat   ImgFmt = AV_PIX_FMT_YUV420P;

       // Register all formats and codecs
       av_register_all();

       // Open video file
       if (avformat_open_input(&pFormatCtx, inputFilePath, NULL, NULL) != 0)
       {
           printf("Couldn't open file.");
           return -1;
       }

    it occur error at the avformat_open_input(), I think it failed because of the Unicode file name string

    Anybody can help me ?

    Thanks