Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (101)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (15639)

  • lavf/ffmenc : do not fail on missing codec

    19 février 2015, par Lukasz Marek
    lavf/ffmenc : do not fail on missing codec
    

    ffm encoder fails when codec is not found.
    It may happen when stream is being copied.
    This commit allows to store such stream and provides
    backward compatibility with version prior 2.5 release.

    fixes #4266

    Signed-off-by : Lukasz Marek <lukasz.m.luki2@gmail.com>

    • [DH] libavformat/ffmenc.c
  • vulkan_h264 : reject end_frame being called without valid session parameters

    20 mai 2023, par Lynne
    vulkan_h264 : reject end_frame being called without valid session parameters
    

    When seeking through MBAFF-coded H264, this can happen. Decoding calls end_frame
    without calling start_frame. We are unable to decode this, as no frame
    state has been set.

    Happens for both VAAPI and Vulkan. Could be an issue elsewhere, hence
    the individual commit.

    • [DH] libavcodec/vulkan_h264.c
  • I need a way to calculate time differentials between 2 time variables in Batch

    9 juillet 2022, par Youcef

    first of all here's my little batch script project that I wrote really quickly for video processing convenience with ffmpeg

    &#xA;

    set start="00:01:52.000"&#xA;set finish="00:01:52.000"&#xA;set /A duration=24&#xA;set /A resolution=1080&#xA;set /A framerate=60&#xA;set /A filesizeinMB=8&#xA;set /A bitrate=(%filesizeinMB%*8192)/%duration%&#xA;&#xA;"%~dp0ffmpeg.exe" -ss %start% -i "%~1" -c:v libvpx-vp9 -an -pass 1 ^&#xA;-t %duration% -b:v %bitrate%k -crf 12 -vf fps=%framerate%,scale=-1:%resolution% ^&#xA;-auto-alt-ref 1 -lag-in-frames 25 -row-mt 1 -map_metadata -1 ^&#xA;-f null NUL&#xA;&#xA;"%~dp0ffmpeg.exe" -ss %start% -i "%~1" -c:v libvpx-vp9 -an -pass 2 ^&#xA;-t %duration% -b:v %bitrate%k -crf 12 -vf fps=%framerate%,scale=-1:%resolution% ^&#xA;-auto-alt-ref 1 -lag-in-frames 25 -row-mt 1 -map_metadata -1 ^&#xA;-f webm "%~dp0%~n1.webm"&#xA;

    &#xA;

    As of now, I'm manually imputing start, and duration for the script to work. For convenience, I would like a way to only input start and finish variables without bothering with duration, and having it something like

    &#xA;

    set /A duration=%finish%-%start%&#xA;

    &#xA;

    but before doing that I need to convert the time strings into simple integers or fractionals (seconds of course) And i'm kind of in a loss about how I would approach this&#xA;Some help would be greatly appreciated, thank you

    &#xA;