Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (66)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7463)

  • avcodec/vvcdec : fix seeking for open GOP

    3 février 2024, par Nuo Mi
    avcodec/vvcdec : fix seeking for open GOP
    

    how to reproduce :
    wget https://media.xiph.org/video/derf/y4m/students_cif.y4m
    vvencapp —input students_cif.y4m —preset faster —output students.266
    MP4Box -add students.266:fps=30000/1001:par=12:11 -new students.mp4
    ffplay students.mp4

    • [DH] libavcodec/vvc/vvc_refs.c
    • [DH] libavcodec/vvc/vvc_refs.h
    • [DH] libavcodec/vvc/vvcdec.c
  • ffmpeg fails to open a WAV file - "too short LIST tag" [closed]

    5 janvier 2024, par brad

    I have a WAV file exported in FL Studio 21.2.2 on Win10, which ffmpeg/ffprobe cannot open.

    


    When running :

    


    ffprobe -v error -show_format -print_format json -hide_banner -i "path/to/file.wav


    


    This exception is thrown :

    


    [wav @ 0x132704440] too short LIST tag
[in#0 @ 0x132704340] Error opening input: Invalid data found when processing input


    


    Here's a screenshot of the file metadata in macOS

    


    Since i'm not able to open the file with ffmpeg, i can't correct/remove the metadata. Any ideas what I can do ? File is available upon request. Thanks !

    


  • FFmpeg - How do i get the extradata required to open the ALAC Codec ?

    15 décembre 2023, par Sowry

    I am wondering how to get the extradata from an ALAC media file using the FFmpeg library without having to manually parse the file ?

    



    I setup initially with :

    



    avformat_open_input(&formatContext, pszFileName, 0, 0);
avformat_find_stream_info(formatContext, NULL);
av_find_best_stream(formatContext, AVMEDIA_TYPE_AUDIO, -1, -1, &codec, 0);
codecContext = avcodec_alloc_context3(codec);


    



    Currently I am able to detect and find the ALAC codec but it fails to open the codec returning AVERROR_INVALIDDATA, which comes from the extradata and extradata_size not being set.

    



    avcodec_open2(codecContext, codec, NULL);


    



    The FFmpeg documentation states that some codecs require extradata and extradata_size to be set to the codec's specifications. But shouldn't this data be set by avformat_find_stream_info ?