Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (83)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (11727)

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

    


  • AAC encoder : tweak rate-distortion logic

    23 septembre 2015, par Claudio Freire
    AAC encoder : tweak rate-distortion logic
    

    This patch modifies the encode frame function to
    retry encoding the frame when the resulting bit count
    is too far off target, but only adjusting lambda
    in small, incremental step. It also makes the logic
    more conservative - otherwise it will contend with
    bit reservoir-related variations in bit allocation,
    and result in artifacts when frame have to be truncated
    (usually at high bit rates transitioning from low
    complexity to high complexity).

    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/aacpsy.c
    • [DH] libavcodec/psymodel.h
    • [DH] tests/fate/aac.mak
  • Linux fast high res audio + video recording

    7 août 2020, par majif24810

    I am trying to record at least 1280X720 webcam plus its audio. ffmpeg is terribly slow with such resolution, even vlc get 15FPS. CPU usage is low during these attempts. I know webcamera can give 1280X720 at 30fps - it works with C++ OpenCV smoothly. My question is - how do I record at higher resolution smoothly both audio and video ? Btw, I am making a sort of CCTV program.