Recherche avancée

Médias (91)

Autres articles (75)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (9655)

  • Revision e125286d9c : update cpplint latest from (r103) : http://google-styleguide.googlecode.com/svn/

    3 mai 2013, par James Zern

    Changed Paths :
     Modify /tools/cpplint.py



    update cpplint

    latest from (r103) :
    http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py

    Change-Id : I474bf11e0f08115d5e579c92f43577978960d4ed

  • What role does bit rate play in the accuracy of Google Speech To Text transcription ?

    11 novembre 2020, par Jash Shah

    I am helping a client convert a video file using ffmpeg and they originally used -b:a 64k while transcoding their video to audio at a sampling rate (-ar 44100 argument in ffmpeg) of 44100. Their objective is that they want to generate the most accurate transcriptions using the Google Cloud Speech To Text API.

    


    While combing through their documentation I did not find anything on how bit rate impacts the accuracy of the transcription. So my question is thus - would using a higher bit rate such as 128k help me in getting better transcriptions or does it not matter ?

    


  • ffmpeg -pattern_type glob not working in Google Colab

    22 février 2023, par John Jannone

    I'm trying to combine images into video using ffmpeg in a Google Colab Notebook ; I'm getting errors but don't see what I'm doing wrong.

    


    !ffmpeg -pattern_type glob  -i 2023021522* -c:v libx264 video2.mp4

    


    returns : Option pattern_type not found.

    


    !ffmpeg -pattern_type glob  -i '2023021522*' -c:v libx264 video2.mp4 or
!ffmpeg -pattern_type glob  -i "2023021522*" -c:v libx264 video2.mp4

    


    return : 2023021522* : No such file or directory

    


    I also tried adding from glob import glob and just import glob