Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (100)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (5727)

  • How to Resize Video 720:1280 Bigger Height, Width and Crop To 1280:720 using ffmpeg ?

    31 juillet 2021, par ChhengRavy

    I have video Original size 720:1280 and want to convert it to size 1280:720 but before converting I want to increase it bigger first.

    


    I have a video original size 720:1280 Below

    


    Using Code Below, I can resize the video to 1280:720 but it is not the result that I want.

    


    ffmpeg -i input.mp4 -filter_complex scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:-1:-1:color=black output.mp4


    


    enter image description here

    


    This is what I want to get. Please Help Me To solve the problem. Your answer is so important to me.
Thank you so much. I am waiting your reply.

    


    This is what I want to get

    


  • 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;

  • FFmpeg more than 1000 frames duplicated and input height doesn't match

    2 septembre 2021, par Karine

    I'm currently using this code to record two windows side by side :

    &#xA;

    ffmpeg -f gdigrab -framerate 30 -i title="" -f gdigrab -framerate 30 -i title="" -c:v h264_nvenc -qp 0 -filter_complex hstack=inputs=2 2.mp4&#xA;

    &#xA;

    However it throw this error after execution :

    &#xA;

    More than 1000 frames duplicated&#xA;

    &#xA;

    Error Log : https://pastebin.com/gREVrKVK

    &#xA;

    The first window mostly time is the same frame, maybe 1 frame change in each 3 sec.

    &#xA;

    Another error in console is when the first window have a different height than second window, error :

    &#xA;

    [Parsed_hstack_0 @ 000002491166fd00] Input 1 height 500 does not match input 0 height 488.&#xA;[Parsed_hstack_0 @ 000002491166fd00] Failed to configure output pad on Parsed_hstack_0&#xA;

    &#xA;

    Error log : https://pastebin.com/vqdBPfpv

    &#xA;

    Looks like is not possible to record when they have different dimensions, so, if possible I would like to ask how to scale the first window to the same height (doesn't need to keep aspect ratio) of the second window, considering low CPU use above the video quality.

    &#xA;