Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (53)

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

  • ffmpeg frame->pts out-of-order when decode hevc

    23 octobre 2023, par ValiantHeart

    I try to set pkt->pts to 0,1,2,3,4,5,6,
but the frame->pts received is 0,1,4,5,3,6,2 where the pict_type was I, I, B, B, B, B, P.

    


    int num = 0;
pkt->pts = num++;
avcodec_send_packet(dec_ctx, pkt);
avcodec_receive_frame(dec_ctx, frame); 


    


    I tried to read h264 file, it is correct ; and I tried to use official 'decode_video.c', it's still incorrect in hevc.

    


    Why the frame->pts is not 0,1,2,3,4,5,6 ?

    


  • ffmpeg sepia effect on video

    22 juin 2015, par Gufran Khurshid

    How can I apply simple sepia effect of a video using FFmpeg ? I am seeking for a single line FFmpeg command which I will be using in android.Though I have learnt colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131 on official FFmpeg doc , but unable to apply it properly.Thank you.

  • RTMP Authentication for Wowza

    6 février 2017, par James Oanta

    I have a java encoder that currently does not support RTMP authentication.

    I’ve done some research on how to implement that part this days but the RTMP protocol lacks of documentation regarding this and I couldn’t find anything (very helpful) related to this.

    Basically I have the following url schema : rtmp ://user:pass@wowza_adress:1935/application

    In the official documentation (V1.0) released by adobe there is no specification of any authentication command nor any RTMP authentication reference.

    Could someone give me an hint/example on how this should be done ?