Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (52)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

Sur d’autres sites (4078)

  • Is there a way to parse Hevc rtsp packets and find height and width in c++ application

    2 août 2021, par dinesh47

    I have written a C++ application with processing of RTP video and Audio packet(Bitstream packets) but can't able to find a way to get height and width from VPs,SPs or PPs from every keyframe.
Note:I am using only pure c++ codes until encoding and writing the file part with ffmpeg lib

    


    Need to know How to Extract it from that extra data for Memcopy it to add with start code.

    


    Need to find Height and width with it(Parsing).

    


    i have Written in case like the folowing :

    


     byte *packet=&amp;*(frameData);&#xA;int size =ptr->m_size;&#xA;boost::shared_ptr<byte> dst ;&#xA;int naltype = (packet[0] >> 1) &amp; 0x3f;&#xA;&#xA;switch(naltype)&#xA;{&#xA;case HEVC_NAL_VPS:&#xA;    m_vpsSize=(size)&#x2B;4;&#xA;    m_vpsHeader[3]=1;&#xA;    memcpy(&amp;m_vpsHeader[4],&amp;packet[0],size); //need size and packet start and End dimension&#xA;    break;&#xA;case HEVC_NAL_SPS:&#xA;    m_spsSize=(size)&#x2B;4;&#xA;    m_spsHeader[3]=1;&#xA;    memcpy(&amp;m_spsHeader[4],&amp;packet[0],size);//need size and packet start and End dimension&#xA;    break;&#xA;case HEVC_NAL_PPS:&#xA;    m_ppsSize=(size)&#x2B;4;&#xA;    m_ppsHeader[3]=1;&#xA;    memcpy(&amp;m_ppsHeader[4],&amp;packet[0],size);//need size and packet start and End dimension&#xA;    break;&#xA;case 49:&#xA;    byte new_nal_header[2]={0};&#xA;    int startFU=packet[2]&amp;0x80;&#xA;    int endFU = packet[2]&amp;0x40;&#xA;    int fuType=packet[2] &amp; 0x3f;&#xA;    new_nal_header[0] = (packet[0] &amp; 0x81) | (fuType&lt;&lt;1);&#xA;    new_nal_header[1]=packet[1];&#xA;&#xA;}&#xA;</byte>

    &#xA;

  • I need to find the progress of the task being done by ffmpeg.exe and redirect it to the progress bar in my windows forms application ?

    22 avril 2019, par Malindu Dilanka

    I am creating a simple video converter using ffmpeg.exe tool. So, in order to display the progress of the conversion, I need to grab the output of ffmpeg cmd output and then transfer it to my textbox in the windows forms application. Or, maybe I could get the progress of the ffmpeg task and transfer it to a progress bar. How can I do any of these ?

    I tried using 2> something.txt to save the output from cmd inline with the command. But, when reading it, I am not able to update textbox.

  • trying to include ffmpeg in angular electron application - build fails on require()

    3 mai 2023, par Blair Holmes

    I have found a lot of resources for adding ffmpeg to my windows desktop application built with electron from my angular web app but I can't seem to get my project to build when I try and run it.

    &#xA;

    this is a pretty straight forward tutorial here : https://alexandercleasby.dev/blog/use-ffmpeg-electron

    &#xA;

    My problem comes in the require statements or when I try to use the modules via import, whenever I try to access the imported modules.

    &#xA;

    I get errors like this :

    &#xA;

    &#xA;

    Error : ./node_modules/ffprobe-static/index.js Module not found : Error :&#xA;Can't resolve 'os' in&#xA;'C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\node_modules\ffprobe-static'&#xA;resolve 'os' in&#xA;'C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\node_modules\ffprobe-static'&#xA;Parsed request is a module using description file :&#xA;C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\node_modules\ffprobe-static\package.json&#xA;(relative path : .)&#xA;Field 'browser' doesn't contain a valid alias configuration&#xA;resolve as module&#xA;looking for modules in C :/Users/MyUser/source/repos/my-app/my-app-angular-desktop&#xA;using description file : C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\package.json&#xA;(relative path : .)&#xA;Field 'browser' doesn't contain a valid alias configuration&#xA;using description file : C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\package.json&#xA;(relative path : ./os)&#xA;no extension&#xA;Field 'browser' doesn't contain a valid alias configuration&#xA;C :\Users\MyUser\source\repos\my-app\my-app-angular-desktop\os doesn't&#xA;exist

    &#xA;

    &#xA;

    Should I be trying to build with webpack directly instead of ng build ? I have never done that with an angular application so I"m not sure what steps I'd need to take.

    &#xA;

    I'm currently on angluar 11 with webpack 4.44.2.

    &#xA;