Recherche avancée

Médias (91)

Autres articles (77)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Do any of the FFMPEG libraries have a method for determining the frame type (I, P or B) of a frame WITHOUT first decoding ?

    9 mars 2021, par dicroce

    Every once and a while this comes up and I've never been able to find a good solution but I figured I'd ask the experts : is there a video frame parser in FFMPEG that can determine frame type WITHOUT resorting to decoding ?

    


  • Batch combining multiple audio files with same picture to create mp4 files

    31 décembre 2017, par Mikael

    I need some help with batch combining hundreds of audio files (mp3s) that I fully own with the same picture to create mp4 files with identical names as the audios. It would be even better if I could do this on a parent directory with the audio files spread out in subdirectories rather than have all the audios in one large folder.

    I’ve tried using ffmpeg but am unable to do this in batch and on files with names that includes spaces. There are also seems to be some discrepancies between different ffmpeg versions but I’m using the latest one (20171229)

  • FFMPEG : How to transcode(transfer) Attached Picture (APIC) from source mp3 file to destination mp3 file using FFMPEG ?

    24 février 2012, par javanetbeans

    I have input file as 02.mp3. I want to change it to mp3 file only with specific bit rate. While doing so, I want to preserve all the metadata and the APIC, attached picture corresponding to image should also be transfered to the destionation file. I am using FFMPEG and i am using the following command line...

    ffmpeg -y -i 02.mp3 -id3v2_version 3 -ab 128000 -ss 0 -acodec libmp3lame -f mp3 -ac 2 -ar 44100 output.mp3

    source file : 02.mp3
    destination file : output.mp3.

    But in destination file, i am not getting APIC(attached picture corresponding to 02.mp3). Can anyone help. I am getting all other mp3 tags in output.mp3 except for APIC. How to get APIC in destinaton file as well ?