Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (71)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

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

  • FFMPEG : Generate 7.1 channel audio file with the longest time of input file

    10 juin 2020, par Anthony

    I want to use ffmpeg to generate 7.1 channel audio file from 8 different audio files.
But I found the output file's duration is decided by the input file with shortest duration.
I didn't find any parameter to auto-pad the shorter audio file or choose the longest duration as final duration.

    



    I already have seen the offlical document as below.
https://ffmpeg.org/ffmpeg-all.html
https://trac.ffmpeg.org/wiki/AudioChannelManipulation
But nothing is helpful.

    



    This is the command I use right now :

    



    ffmpeg -i fl.wav -i fr.wav -i fc.wav -i lfe.wav -i bl.wav -i bl.wav -i sl.wav -i sr.wav -filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a][6:a][7:a]join=inputs=8:channel_layout=7.1[a]" -map "[a]" output.wav

    


  • Nomenclature #4519 : Renommage de terminologie (blacklist / whitelist)

    16 juillet 2020

    Et linux aussi :
    - https://seenthis.net/messages/867414

    Avec une liste proposée de terminologies :

    Proposed alternatives for master/slave include :

    • primary/secondary
    • main/replica or subordinate
    • initiator/target
    • requester/responder
    • controller/device
    • host/worker or proxy
    • leader/follower
    • director/performer

    Proposed alternatives for blacklist/whitelist include :

    • denylist/allowlist
    • blocklist/passlist
  • Why my youtube video made with ffmpeg only shows 360P and 1080P on mobile devices but works fine on desktop ?

    1er janvier 2020, par CheeseWithMe

    I am trying to create a video from an image and sound file with ffmpeg.

    This is what I use :

    ffmpeg -y -loop 1 -r 6  -i current_image.png -i current_audio.wav -shortest -c:v libx264 -preset ultrafast -tune stillimage -pix_fmt yuv420p -c:a aac out.mp4

    But uploading this on youtube will display only in 360P and 1080P on mobile devices while on Desktop I have all the resolutions up to 1080P.

    It has the same effect with the command from FFmpeg wiki on enconding from youtube

    ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mkv

    I have no idea why is this happening, I could use some guidance.