Recherche avancée

Médias (91)

Autres articles (107)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (6569)

  • Revision 1cffea9fb7 : Merge "Rework pred pixel buffer system in non-RD coding mode"

    31 octobre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_pickmode.c



    Merge "Rework pred pixel buffer system in non-RD coding mode"

  • Revision 5e97862a71 : Merge "Enable iterative motion search for 4x4 inter pred" into experimental

    30 mai 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_rdopt.c



    Merge "Enable iterative motion search for 4x4 inter pred" into experimental

  • Can I run a program from Command Prompt on only a numbered subset of files ?

    28 août 2020, par Andrew Shibata

    I have an experiment with 2 groups : English speakers and Mandarin-English bilinguals. I have a batch file that works for converting audio files (using ffmpeg) for the English monolingual group. The Mandarin speaker group also has a few additional trials where they record some more sentences in Mandarin and I'd like to either run ffmpeg separately on just those trials or move that subset to a different folder after the fact.

    


    The file formats are [subject ID]-[trial #]-vowels_record.ogg. The English trials are trial #s 6-35 and the Mandarin trials are trial #s 36-50.

    


    The following code WORKS for my English only dataset :

    


    for %%a in ("*vowels_record.ogg") do ffmpeg -i "%%a" "vowel_wavs\%%~na.wav

    


    This is my attempt at figuring out how to get just the relevant files into relevant folders :

    


    for %%a in ("*{6..35}-vowels_record.ogg") do ffmpeg -i "%%a" "vowel_wavs\%%~na.wav"
for %%a in ("*{36..50}-vowels_record.ogg") do ffmpeg -i "%%a" "mandarin_wavs\%%~na.wav"


    


    I have some regex experience, but not as much with making .bat files and I'm unsure what the right way is to target the range of files I'm looking for.