Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (76)

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

  • Can javascript MSE play segmented mp4 from the middle ?

    10 juillet 2020, par Elias Wagnerberger

    in my current project i have a video stream that ffmpeg encodes to a segmented mp4. that encoded data is piped into an application that sends that data to whomever connects to that application through a websocket. when a client connects i make sure to send the ftyp and the moov boxes first and then send the most recent segments recieved from ffmpeg.

    


    on the client side i just pass all binary data from the websocket to MSE.

    


    The problem i am facing is that this works if the client is connected from the very start and gets all the fragments that ffmpeg pipes out, but it does not work if the client connects in after ffmpeg sends its first few fragments.

    


    My question is :
Is it possible for MSE to play a fragmented mp4 from the middle when it is also provided the init segments ?

    


    If it is possible then how would that need to be implemented ?

    


    if it isnt possible then what format would allow me to stream live video over a websocket ?

    


  • lavfi/af_amix : fix memory leak

    4 décembre 2015, par Ganesh Ajjanagadde
    lavfi/af_amix : fix memory leak
    

    Recent commits 6aaac24d72a7da631173209841a3944fcb4a3309 and
    3835554bf8ed78539a3492c239f979c0ab03a15f made progress towards cleaning
    up usage of the formats API, and in particular fixed possible NULL pointer
    dereferences.

    This commit addresses the issue of possible resource leaks when some intermediate
    call fails.

    Tested with valgrind —leak-check=full —show-leak-kinds=all, and manual simulation
    of malloc/realloc failures.

    Fixes : CID 1250334.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/af_amix.c
  • pyffmpeg segmentation fault on osx

    1er septembre 2011, par gok

    I am having trouble installing and using pyffmpeg in OSX. (Snow Leopard)

    I tried different versions. Only configuration that seems to install is Python2.6, Cython 0.13 and pyffmpeg 2.0. (Python, ffmpeg and cython is installed with MacPorts and pyffmpeg with setup.py)

    But with that when I try to open a file

    stream=pyffmpeg.VideoStream()
    stream.open(filepath)

    it gives this error :

    Traceback (most recent call last):
     File "test.py", line 24, in test
       stream.open(filepath)
     File "pyffmpeg.pyx", line 2467, in pyffmpeg.VideoStream.open (pyffmpeg.c:16607)
     File "pyffmpeg.pyx", line 1920, in pyffmpeg.FFMpegReader.open (pyffmpeg.c:11361)
    IOError: Unable to open file test.mp4 (url_fopen)
    Segmentation fault

    Any idea what's wrong ?