Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (89)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (11234)

  • How to obtain titles and chapters information in DVD ?

    14 décembre 2022, par Tarhan

    I found many question about creating DVD menu using ffmpeg but i did not find any one about programmically access to DVD structure information. When i using libav (or FFmpeg) library i can open DVD image (iso file) and access to video, audio and subtitle streams. But i could not find any API.

    



    I can play video and found information using VLC player (and so libvlc library). But I need to do some processing on audio and subtitle stream programmically. I don't want to split VOBs using tools like SmartRipper, and only then do processing.

    



    Does libav(ffmpeg) contain any API for dealing with DVD menus ? If not can you recommend any other library which can be used to obtain information about title(chapter) start and end time with one frame(sample, AVPacket) accuracy ?

    



    I heard about libdvdnav library but i don't know if it right for me.
I'm new to libav and DVD format internals.

    


  • PHP extension writing

    19 octobre 2013, par Mikko Koppanen — Imagick

    I’ve written quite a few PHP extensions over the past years and thought that I could share some of the experience with larger community. PHP internals can be a bit scary at times and in the past I’ve scoured through a lot of extensions to find practical examples of things such as how to return objects from internal functions/methods, how to handle different types of parameters, class properties etc.

    To document some of the experiences I started a project called extsample, in which I plan to add practical examples related to extension writing. There won’t be extensive written documentation outside the code, but hopefully the code itself contains enough nuggets of information to be useful. As the README says, if you need a specific example or clarification on something just open an issue in Github.

    The project is still very fresh but hopefully soon it will contain more examples. Pull requests are also welcome if you have code that you want to share with others.

  • Cannot play H.264 stream using MSE

    8 juillet 2016, par lian

    I’m trying to stream H.264 data over websockets to a video element using MSE.

    I’m able to send and play a pre-recorded file, but when i try to create the data stream with the following command :

    ffmpeg -i rtsp://192.168.1.101/stream.264 -vcodec copy -an -f mp4 -reset_timestamps 1
    -movflags empty_moov+default_base_moof+frag_keyframe -loglevel quiet -

    I get this in chromes media-internals :

    render_id: 215
    player_id: 13
    pipeline_state: kStopped
    event: WEBMEDIAPLAYER_CREATED
    url: blob:http%3A//127.0.0.1%3A8080/e468616d-5bde-47e0-8e59-1881ddb53abc
    debug: ISO BMFF boxes that run to EOS are not supported
    error: media::MediaSourceState::Append: stream parsing failed. Data size=727 append_window_start=0 append_window_end=inf
    pipeline_error: chunk demuxer: append failed

    I think the problem has something to do with the debug line about ISO BMFF boxes, but have been unable to find any references to this message.