Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (55)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7227)

  • FFplay show time when cursor is active

    7 janvier 2018, par Slump 64

    So recently I’ve found solution to make my ffplay display time at the bottom of the video playing

    ffplay -vf "drawtext=text='%{pts\:hms}':box=1:x=(w-tw)/2:y=h-(2*lh)"

    Can I make it show time only if I use cursor and then show nothing when cursor is fading or when I press SPACE ?

    Edit : OR show how much time out of total is played, or even a percentage.

  • Revision c147cf3d3b : Add unit test to test tile decoding error handling. Also fix bugs related with

    2 juillet 2014, par hkuang

    Changed Paths :
     Modify /test/decode_test_driver.cc


     Modify /test/decode_test_driver.h


     Modify /test/invalid_file_test.cc


     Modify /test/test-data.sha1


     Modify /test/test.mk


     Modify /vp9/decoder/vp9_decodeframe.c



    Add unit test to test tile decoding error handling.

    Also fix bugs related with corrupted frame handling.
    Return VPX_CODEC_CORRUPT_FRAME when getting corrupted
    block.

    Change-Id : I7207ccc7c68c4df2b40b561315d16e49ccf7ff41

  • Bash script for re-encode file if re-encoded file does not already exist for all in directory

    25 octobre 2022, par steve

    I have a bash script that takes 1 argument (a file) and runs an ffmpeg command to create a duplicate of the file encoded with a different codec.

    


    #!/bin/bash

ffmpeg -i "$1" -vn -acodec aac "$(basename "${1/.wav}").aac"


    


    I just want to modify this bash script so instead of taking an argument, it instead just checks for all files in the directory to see if the re-encoded file already exists, and if it does not, creates it. Does anyone know how to do this ?

    


    Thanks for your help

    


    EDIT : the solution below is working with slight modification :

    


    #!/bin/bash

for file in ./*.wav; do
    [ -e "$file" ] || continue # check if any file exists
    if [[ ! -f "${file}.aac" ]]; then
       ffmpeg -i "${file}" -vn -acodec aac "$(basename "${file}").aac"
    fi;
done;