Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5282)

  • lavc/hevcdec : move the check for multiple frames in a packet

    3 juin 2024, par Anton Khirnov
    lavc/hevcdec : move the check for multiple frames in a packet
    

    Do not do it in hls_slice_header(), which is the wrong place for it.
    Avoids special magic return value of 1 in that function. The comment
    mentioning potential corrupted state is no longer relevant, as
    hls_slice_header() modifies no state beyond SliceHeader, which will only
    get used for a valid frame.

    • [DH] libavcodec/hevc/hevcdec.c
  • ffmpeg make a movie with multiple numbers in filename [closed]

    22 juillet 2024, par NNN

    I have the following four files

    


    mov_00_00.png
mov_00_01.png
mov_01_00.png
mov_01_01.png


    


    I can make a movie using

    


    ffmpeg.exe -i mov_%02d_00.png -filter:v "setpts=10*PTS" out.mp4

    


    But this does not consider the files ending with 01.png.

    


    I tried

    


    ffmpeg.exe -i mov_%02d_%02d.png -filter:v "setpts=10*PTS" out.mp4


    


    But it says

    


    [in#0 @ 0000021982d69000] Error opening input: No such file or directory
Error opening input file mov_%02d_%02d.png.
Error opening input files: No such file or directory


    


    What command line magic do I need to use to make this work ? Thanks.

    


    Edit : I'm using the Windows version under WSL and the glob option is not supported.

    


  • lavf : deprecate avformat_transfer_internal_stream_timing_info()

    5 juillet 2024, par Anton Khirnov
    lavf : deprecate avformat_transfer_internal_stream_timing_info()
    

    And av_stream_get_codec_timebase().

    They were both added for ffmpeg CLI, which no longer calls either of
    them. Furthermore the notion of "internal stream timing info" that needs
    to be transferred with a special magic API function is fundamentally
    flawed and should be removed.

    • [DH] doc/APIchanges
    • [DH] libavformat/avformat.c
    • [DH] libavformat/avformat.h
    • [DH] libavformat/internal.h
    • [DH] libavformat/options.c
    • [DH] libavformat/version_major.h