Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (5982)

  • avcodec/pngdec : split P frames handling to a separate function.

    27 novembre 2014, par Benoit Fouet
    avcodec/pngdec : split P frames handling to a separate function.
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/pngdec.c
  • How to record a livestream in ffmpeg or gstreamer and split the files without skipping or duplicating frames

    15 décembre 2020, par Blake Cochrane

    Can somone please recommend a solution for safely recording a live stream to a file that would not produce a corrupted file if the system was unsavely shut down.

    &#xA;

    I am starting on a project using a battery powered Raspberry Pi 4B.&#xA;I am using GStreamer to use the ASIC for Raw Pi camera to h.264 compression to create a RTSP/HLS/RTMP stream.&#xA;I need to continuosly record the livestream to a file on the Pi without any duplicate & missing frames or transcoding - eg using -vcodec copy.&#xA;As the Pi is battery powered, it can be unsafely shut down randomly when the battery is out of energy.&#xA;I know that if a mp4 container isn't 'finalised' with the moov atom before the file finishes writing which would leave the file corrupted/unrepairable and unplayable.&#xA;So if I have an mp4 recording of 6 hours that is corrupted and unfixable that is a problem.&#xA;My idea was to split the recording to a new file after x amount of minutes or frames or bytes as losing the last few minutes is not so bad as to lose hours of recordings.&#xA;I would need to set the last frame in the old file as the previous frame to the next I frame (starting frame) in the new file as a h.264 stream can only start on an I frame.

    &#xA;

    So it would go like this.&#xA;file 1&#xA;| Frame |0001|I|&#xA;| --- | --- | --- |&#xA;|Frame|0002|P|&#xA;|Frame|0003|B|&#xA;...&#xA;| Frame |1524|B|&#xA;| --- | --- | --- |&#xA;| Frame |1525|P|

    &#xA;

    file 2&#xA;| Frame |1526|I|&#xA;| --- | --- | --- |&#xA;| Frame |1527|B|

    &#xA;

    Then all of the split files can be appended to each other without transcoding in ffmpeg.&#xA;I don't need to record the live stream directly to an mp4, whatever container it is in can be converted to an mp4 when appending the split files.

    &#xA;

    There is a python script of the Raspberry pi that accomplishes all of this but it can not be used for a live stream multicast as the Pi camera can not be accessed by more than one process at a time.&#xA;Unless there is a way to live stream the latest frames in an mp4 file that is continiously being recorded to, I am stuck.

    &#xA;

  • configure : Split some logical blocks off from HAVE_LIST

    6 mars 2014, par Diego Biurrun
    configure : Split some logical blocks off from HAVE_LIST
    
    • [DBH] configure