Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (76)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (5159)

  • What are all the codecs and formats not supported by FFmpeg ?

    4 mars 2020, par Alexander Swann

    We are building a service where we do not know what format/codec a video uploaded by a user is in. Due to the nature of the application, we expect input video formats to be very fragmented, diverse and niche. We are currently using FFmpeg to transcode input formats to a consistent output (e.g. mp4).

    Due to the above scenario, I would like to establish a general list of what formats and codecs are not currently supported by FFmpeg. This is so I can research other open source video transcoding tools which I can utilise to fill in the gaps and allow our service to be more reliable for the user.

    Are there resources online that can help at least get a general idea of what might not be supported by FFmpeg ?

  • PHP Convert image+audio = video

    31 octobre 2014, par jQuery Angry Bird

    Hi I saw THIS Question.There is no proper rather vague answer.

    He said ffmpeg -r 10 -b 1800 -i %03d.jpg test1800.mp4 .Pretty vague.

    What i want is I have 2 inputs i wil give from php file . Image,Audio ,And Output will be Video .
    I saw people saying ffmpeg And all that .But does it/can it convert Image+Audio to Video ??
    If yes then what should be done ?? I saw lots of questions .but NONE of then answers properly.I didnt see ANY PHP code to do so online.Thanks.

  • Bitrate change with ffmpeg .mp4 -> .wav [duplicate]

    14 juin 2020, par jshackle

    I don't know too much about ffmpeg nor audio in general. I have an .mp4 audio file that I am trying to convert into a .wav file, so I can open it in python with PySoundFile. An issue is that the bitrate increases dramatically from the .mp4 file to the .wav file (I believe 130kb/s -> 1400kb/s) and so the file size increases and becomes harder to handle in python.

    



    For the conversion, I am using a command I found online as I am not familiar with ffmpeg :

    



    ffmpeg -i inFile.mp4 -ab 160k -ac 2 -ar 44100 -vn outFile.wav

    



    I tried playing around with the arguments a little, but I'm still not sure what they do and didn't notice any differences. Is there something going on in the command that is increasing the bitrate ? is it something inherent about .wav files ? should I convert to a different format and if so, how would I do that ?