Recherche avancée

Médias (91)

Autres articles (92)

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

  • transcoding part anexB bitstream

    30 octobre 2023, par bot.top.pop

    I'm using gohlslib for converting RTMP to HLS, this library gives me HLS and LHS with the transmuxing feature where each segment is of 2s.

    


    But I also want to support the ABR, the flow with this is NALUs are packed in either AVCC or AnexB format and stored in fmp4 parts. []parts make one segment.

    


    I was thinking if I could be able to transcode this anexB or AVCC stream format after its packed into fmp4.
I tried to check what's packed in parts and stored the output as .h264 file.

    


    The first part of a segment has NALUs in this order SPS PPS SPS PPS slice of IDR slice of non-IDR...
but the later parts that are created don't have it.

    


    Only the 1st part of every segment has SPS PPS SPS PPS slice of IDR.

    


    I may be wrong to say that this is what raw .h264 content.

    


    My question is, is it even possible to transcode such part files using Go or CXX while maintaining same PTS and DTS of the transmuxed parts/segment

    


  • FFMPEG slow / fast motion part a video anywhere

    27 juin 2017, par Muhammad Umar

    I am trying to cut a part of Video

    Here is the code i have tried
    Let’s say i have 6 seconds video and i want to slow down 2:5 seconds video that 3 second video

    First approach after searching is, Cut the video, then apply slow filter then concat it with original video. But this is a mid part not entire video. How can i modify below code

    ffmpeg -i Soon.mp4 -filter_complex
    [0:v]trim=2:5,setpts=PTS-STARTPTS[v1] ;[v1]setpts=0.5PTS[v1] ;[0:a]atempo=2[a]
    concat=n=1:v=1:a=1 -map "[v]" -map "[a] -preset superfast -profile:v
    baseline output.mp4

  • Is FFmpeg a part of recent APIs ?

    15 octobre 2015, par Léon Pelletier

    When using MediaCodec and MediaMuxer, I’ve noticed some mentions of ffmpeg in the logs. Does it means that a part of FFmpeg has been integrated into Android Framework ? Can I call it ?