Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (94)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (10578)

  • ffmpeg - where to save the video I plan to cut to frames

    28 décembre 2017, par Kyle

    I have ffmpeg up and running on my computer.

    Now I am trying to cut a video into individual frames. The video is titled IMG_2299.MOV.

    I am using the following command :

    ffmpeg -i img_2299.mov $filename%12d.jpeg

    Two questions :
    1) where do I need the actual video saved for this to work ? In the same folder as the ff* executable files (/usr/loca/bin) ?
    2) And where will the images created be saved ?

    I can run the command above — but I don’t see any results.

    Thank you for any help you can offer.

  • avcodec/ac3dec : Hardcode tables to save space

    23 mai, par Andreas Rheinhardt
    avcodec/ac3dec : Hardcode tables to save space
    

    The code to initialize the ungrouped bap mantissa tables
    (bap 3 or 5) takes more bytes of .text than the tables itself ;
    they have therefore been hardcoded.

    For GCC (14, -O3, albeit in an av_cold function), the initialization
    code takes 99B each for the fixed and floating point decoders
    (the code is currently duplicated), whereas the hardcoded tables
    only take 96B. For Clang 19 it were 374B each (I don't now what
    Clang was doing there).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3dec.c
    • [DH] libavcodec/ac3dec_data.c
    • [DH] libavcodec/ac3dec_data.h
  • How to save decoded raw rgba frames using ffmpeg ?

    13 novembre 2019, par peetonn

    I need to transcode mp4 video to a raw video frames stored in a file.
    I’m trying this command but it fails with Unable to find a suitable output format for 'test.rgba' :

    ffmpeg -i test.mp4 -vcodec rawvideo -pix_fmt rgba -an test.rgba