Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (66)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7709)

  • Revision 30332 : On passe la génération de la file d’attente et donc des inserts en base ...

    29 juillet 2009, par kent1@… — Log

    On passe la génération de la file d’attente et donc des inserts en base dans l’action spipmotion_ajouter_file
    On ajoute un suffixe au nom de fichier -encoded pour éviter de boucler sur les encodages
    On clean aussi un chouilla

  • ffmpeg - Copy audio channel but keep the same quality

    30 janvier 2021, par Michele Stieven

    I have a bunch of videos which have been recorded in stereo but the audio is present only on the left channel. I'm using this command to convert them :

    


    find * -prune -name “*.mp4” -exec ffmpeg -n -i “{}” —c:a copy ac 1 “./final/{}” \;


    


    This command seems to lower the files' size, and I'm glad since I don't need a perfect video, having the size so small is fine. However, I need a perfect audio, just the same quality as the original... just in both channels. With this command, the audio quality gets significantly worse. I wouldn't like to mess with options, I'd like to maintain just the exact same audio quality.

    


    The command -c:a copy doesn't seem to work in combination with this command. How can I do it ?

    


    Thanks.

    


    Edit : Here's the report : https://gist.github.com/UserGalileo/49bc8b7b85c05fe29bb044b6f599d71d

    


  • ffmpeg returning blank video upon concat

    23 août 2020, par Coski

    I'm trying to combine an audio and image file into a single .mp4 file that plays for the duration of the audio.

    


    This is my code :

    


    import ffmpeg

audio = r'D:\Reddit Bot\Content\juice\audio_1.mp3'
image = r'D:\Reddit Bot\Content\juice\comment_1.png'
save = r'D:\Reddit Bot\Content\juice\combined_1.mp4'

input_still = ffmpeg.input(image)
input_audio = ffmpeg.input(audio)

(ffmpeg
 .concat(input_still, input_audio, v=1, a=1)
 .output(save)
 .run(overwrite_output=True)
 )


    


    However, the resulting .mp4 file is audio only (and has a resolution of 1072x1920 as oppose to the image file's ratio of 1080x1920 ??)

    


    Any help is appreciated, thanks.