Recherche avancée

Médias (91)

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (13384)

  • Video compression using ffmpeg error in downloading 'libx264'

    27 juin 2020, par yso

    I am using ffmpeg to compress a video file :

    


    ffmpeg -i Testchange.mp4 -vcodec libx264 -crf 23 crf23.mp4


    


    I recently downloaded the following version of ffmpeg : ffmpeg-4.3-macos64-static

    


    I keep getting the following error : Unknown encoder 'libx264'

    


    How do i solve this ?

    


    Previous answers on stack overflow have been focused on ubuntu os, i am using mac ?

    


    I tried typing this into the command line to no avail :

    


    brew install ffmpeg --with-libx264


    


  • audio segments are not downloading in firefox using MPEG dash(.mpd)

    20 septembre 2016, par Srini

    I generated mpd file using Mp4Box, it’s working in chrome but not in firefox (video only playing in firefox no audio) and I used Dash.js plugin for mpd file.

    This below link is example of my mpd file

    http://clipsnow.com/ffmpeg/output.mpd

  • Downloading, transcoding, then streaming on the fly with VLC

    12 avril 2012, par Alexis K

    I need to download a file from a web service the immediatley extract the audio, then transcode it, then stream it out.

    When I use :

    vlc.exe URL :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}

    it is really choppy when I listen to it on the other computer. What is strange also is that for some YouTube links, the above works well, but for others it dosen't work well. I am not sure why this is.

    However, when I download the audio first, then stream it out, like this
    vlc.exe "song.mp3" :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}

    it works well. The issue is I can't always download the song before hand (long pod casts or internet radio...).

    Is there a command or VLC optimization that I can use to help remedy this situation ? Or another program that would be good ?