Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (95)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (14736)

  • OpenCV : How to get list of available codecs ?

    4 mai 2023, par mrgloom

    How to get list of codecs available on current system, i.e. as I understand cv2.VideoWriter can fail when codec is not available.
What codec is used by default ?

    


    Not sure if it's for all cases, but seems opencv fallback to mp4v codec as default with message : OpenCV: FFMPEG: fallback to use tag 0x7634706d/'mp4v'

    


    Also to add new codecs do we need to rebuild opencv or we can just install additional codecs \ update ffmpeg via something like apt get ?

    


  • Create directory list where each line in list consists of mp3 file name and mp3 duration

    14 octobre 2015, par Kes

    I wish to produce a list from the directory of the mp3 file names in the directory and the playing duration of each file.

    The below command produces a list of mp3 files in the directory

    for name in *.mp3; do ffmpeg -i "$name" 2>&1 |  grep -o -P "(?<=Input #0, mp3, from ').*(?=.mp3':)"  ; done;

    The below command produces a list of the duration of each of the MP3 files

    for name in *.mp3; do ffmpeg -i "$name" 2>&1 | grep -o -P '(?<=Duration: 00:).*(?=.[0-9]{2}, start)'  ; done;

    I need to combine the output of both these commands into one output showing

    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • mm:ss filename
    • ..
  • ffmpeg command not found but pip list shows ffmpeg

    7 mars, par your_doomsday07

    I have been trying to install ffmpeg using the command
pip install ffmpeg and I am doing this in a server where we dont have sudo permissions. On writing ffmpeg I get ffmpeg : command not found. Then I checked with pip list and it showed ffmpeg. Please help me.