Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (104)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (13727)

  • /root/bin/ffmpeg : error while loading shared libraries : libtheoraenc.so.1 : cannot open shared object file : No such file or directory

    12 février 2014, par Paks

    my ffmpeg command gives error when I try to convert video format. I have installed ffmpeg manually as guided in this link https://trac.ffmpeg.org/wiki/CentosCompilationGuide. for above issue I have also checked http://unix.stackexchange.com/questions/34023/ffmpeg-error-while-loading-shared-libraries-libtheoraenc-so-1 but not able to resolve my issue.

    My command is : /root/bin/ffmpeg -i /home/pulsebrk/public_html/beta/user_uploads/6/1148a008470721f06c8dc71efa70622f99799e91.avi -acodec libvorbis -ac 2 -ab 96k -ar 44100 -b 345k -s x /home/pulsebrk/public_html/beta/user_uploads/6/1148a008470721f06c8dc71efa70622f99799e91.ogv and error is : /root/bin/ffmpeg : error while loading shared libraries : libtheoraenc.so.1 : cannot open shared object file : No such file or directory

    libtheroa version is : 1.1.1 please anyone drive me for above issue.

  • I need the script open waiting for new files

    26 septembre 2019, par AUDICOM

    I use the following FFMPEG script for DAV to AVI file conversion :

    for %% A IN (* .dav) DO ffmpeg -i "%% A" -vcodec libx264 "%% A.avi

    But DAV files are generated in the folder every 30 minutes, the script is triggered when the 1st DAV file is generated, but the conversion is fast, and it finishes before the next DAV file is generated in the folder, I need the script. convert the DAV and wait for the next file to arrive in the folder, or after converting the last DAV file that arrives in the folder 12:00 PM the script terminates the process.

  • avformat_open_input causes exception on RTP stream open

    3 avril 2014, par user3283475

    I'm trying to program a video player of the RTP stream. I'm using visual studio 2010. When avformat_open_input command is executed an exception is generated (ntdll.dll !774b70f4()). It works fine with normal file from disk(test.avi).

    #include "stdafx.h"
    #include

    //zeranoe headers and libraries(DLLs also from zeranoe)
    extern "C"
    {
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    }

    #pragma comment(lib, "avcodec.lib")
    #pragma comment(lib, "avformat.lib")

    int _tmain(int argc, _TCHAR* argv[])
    {
       AVFormatContext *pFormatCtx=NULL;
       //char* Filename="c:\\test.avi"; //if I use this there is no crash
       char* Filename="rtp://239.255.42.42:5004";//if I use rtp I receive exception
       int videoStream,i;
       AVCodec         *pCodec=NULL;
       AVCodecContext  *pCodecCtx=NULL;

       avcodec_register_all();
       av_register_all();
       avformat_network_init();

       unsigned int _expTime = 5000;
       static const AVIOInterruptCB int_cb = {interrupt_cb, &amp;_expTime};


       // Open video file
       if(avformat_open_input(&amp;pFormatCtx, Filename , NULL,NULL)!=0)//ntdll.dll exception when I try to open rtp stream
       return -1; // Couldn&#39;t open file

    Can someone help me please ?