Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (70)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (11546)

  • avcodec/videotoolboxenc : don't wait when flushing data

    27 août 2020, par Tian Qi
    avcodec/videotoolboxenc : don't wait when flushing data
    

    because there is run in thread mode, few times will block
    the workflow at the wait, so check the status is flushing data,
    don't wait when flushing data.

    Signed-off-by : Tian Qi <tianqi@kuaishou.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • Revision 59ed9fbdd82dd3bf6d4c53b2d5f0f5c5d44f3a83 : un tri {{{ {par x/y/z} }}} dans les boucles DATA git-svn-id : ...

    23 décembre 2010, par Fil — Log

    un tri par x/y/z dans les boucles DATA git-svn-id : svn ://trac.rezo.net/spip/spip@16826 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d

  • Sync video and data with ffmpeg

    31 août 2022, par plj

    I join a video and data where I copy the video from the vid1.ts along with the data (klv) from the vid2.ts :

    &#xA;

    ffmpeg -y -i vid1.ts -i vid2.ts -c copy -map 0:0 -map 1:2 -shortest full_exclude.ts

    &#xA;

    When I probe the resulting video I see that the packets don't line up :

    &#xA;

    ffprobe -show_packets full_exclude.ts

    &#xA;

    The 1st data packet is :

    &#xA;

    [PACKET]&#xA;codec_type=data&#xA;stream_index=1&#xA;pts=126000&#xA;pts_time=1.400000&#xA;dts=126000&#xA;dts_time=1.400000&#xA;duration=N/A&#xA;duration_time=N/A&#xA;size=324&#xA;pos=564&#xA;flags=K_&#xA;[SIDE_DATA]&#xA;side_data_type=MPEGTS Stream ID&#xA;id=252&#xA;[/SIDE_DATA]&#xA;[/PACKET]&#xA;

    &#xA;

    The 1st video packet is :

    &#xA;

    [PACKET]&#xA;codec_type=video&#xA;stream_index=0&#xA;pts=341392&#xA;pts_time=3.793244&#xA;dts=341392&#xA;dts_time=3.793244&#xA;duration=N/A&#xA;duration_time=N/A&#xA;size=9270&#xA;pos=28952&#xA;flags=K_&#xA;[SIDE_DATA]&#xA;side_data_type=MPEGTS Stream ID&#xA;id=224&#xA;[/SIDE_DATA]&#xA;[/PACKET]&#xA;[PACKET]&#xA;

    &#xA;

    How do I get the data and video in sync with each other ?

    &#xA;