Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (38)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

  • 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 ?

    


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

  • 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 ?