Recherche avancée

Médias (91)

Autres articles (49)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (8844)

  • mobile-ffmpeg can't open gallery videos

    25 juillet 2020, par MoTahir

    I'm trying to practice video editing with ffmpeg, I made a sample app which allows the users to either record a video then edit it or choose a video from gallery to edit.

    


    When the user records videos with the application a temporary file is created then that file path is sent to ffmpeg to edit then save

    


    "-i $videoPath  -vf crop=ih/$screenR:ih $outPath"


    


    I'm just cropping the video then saving it as a test, The above command works as intended without any problems.

    


    When I try to edit videos from gallery it doesn't work, I understand that the storage system in new versions of android devices is different, the uri is just an address to the content not an actual path to the file

    


    the video path from gallery is something like this

    


    


    content ://media/external/file/38625

    


    


    ffmpeg can not access the video with that path so it can't edit it, what should I do ? thank you in advance.

    


  • Free Open Source Matomo Tag Manager now available as a beta

    7 juin 2018, par Matomo Core Team

    Matomo Tag Manager is the number one open source alternative to …Wait a minute, did you just say TAG MANAGER !

    That’s right ! Matomo’s free open source Tag Manager is now available as a beta ⟎

  • ffmpeg open rtsp stream and keep encoded until a frame is read

    20 avril 2022, par ghylander

    I have an ip camera which is live streaming 24/7.

    


    I want to open the rtsp stream with ffmpeg on a client, but since continuously decoding the stream is cpu-intensive, I want to keep the stream encoded until I specifically request for a frame

    


    How can I achieve this (preferable in python, but C is ok too) ?

    


    Using ffmpeg-python, I can open a stream and keep it raw, but how do I make sure that when I request a frame from the encoded stream, I start reading the frame from the beginning of the frame ?