Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (60)

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

  • fate/hevc : add clip for persistent_rice_adaptation_enabled_flag

    29 août 2020, par Xu Guangxin
    fate/hevc : add clip for persistent_rice_adaptation_enabled_flag
    

    Tests the issue fixed in c8bc0f66a875bc3708d8dc11b757f2198606ffd7.

    Signed-off-by : Xu Guangxin <oddstone@gmail.com>

    • [DH] tests/fate/hevc.mak
    • [DH] tests/ref/fate/hevc-conformance-WPP_HIGH_TP_444_8BIT_RExt_Apple_2
  • If I cut a 10 second clip into two parts, would the ending time for the first clip be 00:00:05 or 00:00:04 to prevent overlapping ?

    28 mai 2022, par DIRTY DAVE

    I'm trying to cut a 10 second clip into two parts and then merging the two clips into one using a movie editing software.

    &#xA;

    ffmpeg -ss 00:00:00 -i C:/Users/Dave/Desktop/movie.mp4 -to 00:00:05 -c copy -copyts C:/Users/Dave/Desktop/part1.mp4

    &#xA;

    ffmpeg -ss 00:00:05 -i C:/Users/Dave/Desktop/movie.mp4 -to 00:00:10 -c copy -copyts C:/Users/Dave/Desktop/part2.mp4

    &#xA;

    I'm confused on whether the clip time being cut in the first command should be either&#xA;00:00:05 or 00:00:04 to prevent an overlapping second of a clip because the second command is starting at 00:00:05. What should it be ?

    &#xA;

  • libavutil/common : clip nan value to amin

    15 novembre 2021, par Mark Reid
    libavutil/common : clip nan value to amin
    

    Changes av_clipf to return amin if a is nan.
    Before if a is nan av_clipf_c returned nan and
    av_clipf_sse would return amax. Now the both
    should behave the same.

    This works because nan > amin is false.
    The max(nan, amin) will be amin.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/common.h
    • [DH] libavutil/x86/intmath.h