Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (75)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5238)

  • avformat/version_major : postpone some deprecations until the next bump

    19 février, par James Almer
    avformat/version_major : postpone some deprecations until the next bump
    

    They are either too recent, or are not trivial to remove.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/version_major.h
  • How to find the presentation time stamp of a given frame number for FFMPEG decoding ?

    21 août 2017, par Deepankar Arya

    I am using the C APIs of ffmpeg for some video processing. My aim is to extract the screen shot of a given frame number. I have understood that ffmpeg has an av_seek_frame function to seek to a given timestamp(expressed in appropriated base units of the video stream). I assume that I will have to goto to the most recent I frame for the given frame(using the AVSEEK_FLAG_BACKWARD flag) and read onwards untill I meet the required frame. For that I need to give a seek time stamp to the av_seek_frame function. My main issue is that given a frame number, how do I find an associated presentation time stamp to seek to ?

  • ImportError : FFmpeg libraries are not found. Please install FFmpeg in ubuntu 22.04 LTS

    8 juin 2023, par Schrödinger's Cat

    Here i am using diart library for audio transcription using whisper open ai model model for one dependency is throwing error that i mention in the question here is my

    &#xA;

    Traceback (most recent call last):&#xA;File "/home/vkyc/Desktop/projectRasa/audio/lib/python3.10/site- &#xA;packages/torchaudio/_extension.py", line 71, in _init_ffmpeg&#xA;_load_lib("libtorchaudio_ffmpeg")&#xA;File "/home/vkyc/Desktop/projectRasa/audio/lib/python3.10/site- &#xA;packages/torchaudio/_extension.py", line 52, in _load_lib&#xA;torch.ops.load_library(path)&#xA;File "/home/vkyc/Desktop/projectRasa/audio/lib/python3.10/site- &#xA;packages/torch/_ops.py", &#xA;line 573, in load_library&#xA;ctypes.CDLL(path)&#xA;File "/usr/lib/python3.10/ctypes/__init__.py", line 374, in __init__&#xA;self._handle = _dlopen(self._name, mode)&#xA;OSError: libavdevice.so.58: cannot open shared object file: No such file or directory&#xA;&#xA;The above exception was the direct cause of the following exception:&#xA;&#xA;Traceback (most recent call last):&#xA;File "/home/vkyc/Desktop/audio_streaming/LiveStream.py", line 13, in <module>&#xA;from diart.sources import MicrophoneAudioSource&#xA;File "/home/vkyc/Desktop/projectRasa/audio/lib/python3.10/site- &#xA;packages/diart/sources.py", line 11, in <module>&#xA;from torchaudio.io import StreamReader&#xA;File "/home/vkyc/Desktop/projectRasa/audio/lib/python3.10/site- &#xA;packages/torchaudio/io/__init__.py", line 21, in __getattr__&#xA;torchaudio._extension._init_ffmpeg()&#xA;File "/home/vkyc/Desktop/projectRasa/audio/lib/python3.10/site- &#xA;packages/torchaudio/_extension.py", line 73, in _init_ffmpeg&#xA;raise ImportError("FFmpeg libraries are not found. Please install FFmpeg.") from err&#xA;ImportError: FFmpeg libraries are not found. Please install FFmpeg.&#xA;</module></module>

    &#xA;

    i tried pip install python-ffmpeg&#xA;also install from system using the command sudo apt install ffmpeg&#xA;although all ffmpeg install on system using pip and also from terminal using sudo apt command but still throwing same error

    &#xA;

    ImportError: FFmpeg libraries are not found. Please install &#xA;FFmpeg&#xA;

    &#xA;

    if any one know about please resove this error

    &#xA;