Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (56)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7348)

  • [Help]Delay in live streaming ?

    14 septembre 2017, par user8583508

    I do not understand how they can make this video ?
    enter link description here
    Real time decreases over time, not directly ?

  • Adaptive bit rate streaming of mp4 of different gop size using media source api

    25 décembre 2018, par wahab khurram

    I want the adaptive bitrate streaming of the mp4 video of different gop keyframe size.

    I know there are couple of options for multi bitrate streaming i.e hls, dash etc

    But I already uploaded the videos on the server each video have the 360p, 480p and 720p mp4 file and each video are having different keyframe intervals.

    So the real challenge is to make the own multi bitrate mp4 media player using the media source api

    I have brain storming all aspect.

    We can only cut the h264 at keyframe

    So my real challenge is to know the video each keyframe, the keyframe chunk duration, the offset duration and the offset byte position in the mp4 file.

    So my question is how I can get these following using ffmpeg, ffprobe or any other software.

    1- Keyframe chunk duration

    2- Offset video duration

    3- Offset byte position in video.

    The following ffprobe command give the detailed info of the each keyframe, maybe this will help

    ffprobe -i "1080p.mp4" -select_streams v -skip_frame nokey -show_frames

    Thanks !

  • Camera Rendering Buffers and Stutters When Large Video Files Being Processd with FFmpeg

    20 avril 2023, par TIANYU HU

    When rendering a real-time camera, I use ffmpeg to process a large video file(like 4G or even larger) at the same time. I noticed that the video frames are buffering and stuttering.

    


    Pipeline :

    


    DISPLAY=:0 gst-launch-1.0 filesrc location=/home/user/jellyfish-120-mbps-4k-uhd-hevc-10bit.mkv ! matroskademux name=demux demux.video_0 ! queue ! h265parse ! nvv4l2decoder ! nvvidconv ! xvimagesink

    


    FFmpeg command :

    


    ffmpeg -i ${file_name} -c copy -f segment -segment_time 600 -segment_format_options movflags=+faststart -reset_timestamps 1 ./${file_name}_%02d.mp4 -y

    


    And there are some warning indicated that “a lot of buffers are being dropped” duration stuttering.
pipeline warning picture

    


    The requirement can be summarized as “real-time video rendering has higher priority, and the low rate of large file processing is accepted”, are there any possible solutions of this issue from your perspective ? Thanks in advance.