Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (65)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (11254)

  • Play FFMPEG Sound Sample with OpenAL

    16 avril 2013, par Asim

    i am using FFMPEG to load Audio Video from File...with the video its working but i don't know how to play audio samples coming ... here is my routine that is getting audio samples...

    m_AdotimeBase = (int64_t(m_Adocdec_ctx->time_base.num) * AV_TIME_BASE) / int64_t(m_Adocdec_ctx->time_base.den);  
    if(!m_Adofmt_ctx)
    {
       //AfxMessageBox(L"m_timeBase");
       return FALSE ;
    }
    int64_t seekAdoTarget = int64_t(m_currFrame) * m_AdotimeBase;  


    if(av_seek_frame(m_Adofmt_ctx, -1, seekAdoTarget, AVSEEK_FLAG_ANY) < 0)
    {
       /*CString st;
       st.Format(L"%d",m_currFrame);
       AfxMessageBox(L"av_seek_frame "+st);*/
       m_currFrame = m_totalFrames-1;
       return FALSE ;
    }

    if ((ret = av_read_frame(m_Adofmt_ctx, &packet)) < 0)
           return FALSE;
    if (packet.stream_index == 0)      
    {
       ret = avcodec_decode_audio4(m_Adocdec_ctx, &in_AdeoFrame, &got_frame, &packet);
       if (ret < 0)
       {
           av_free_packet(&packet);
           return FALSE;
       }
    }

    My problem is i want to listen that coming sample using OPENAL i tried hard to develop using this but won't be able .... but no success Please help mee. if u have some tutorial or refrence material plz do share with me

  • FFmpeg split mp3 lost Head and tail [on hold]

    27 février 2015, par ACEE

    I created a noise of aftereffect. and When I use the FFmpeg is lost data like :
    enter link description here
    command :
    [avconv or ffmpeg] -i noise.mp3 -ss 0 -t 8.0 after.mp3

    What do I need ?

    file noise.mp3 :
    enter link description here

  • Play AVI with sound in OpenCV on Win32

    5 janvier 2015, par Andrei Shumilov

    I have working OpenCV project, so don’t ask me replace OpenCV. I need only add sound there. I need play AVI by OpenCV and any sound player (vfw/ffmpeg...) on Win32. I found only one sample : Audio output with video processing with opencv

    Mr. Karl Phillip wrote there : "On my Mac I compiled it..."

    But I must use MSVS2010. Ok, I installed mingw to try it on Win32, but still confuse in libs. I’m not a good programmer.

    Give me please links to WORKING examples OpenCV + anysoundplayer on Win32 or help me port Karl’s example at least.