Recherche avancée

Médias (91)

Autres articles (64)

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

  • rtpdec : HEVC/H.265 support

    26 août 2014, par Thomas Volkert
    rtpdec : HEVC/H.265 support
    

    As specified in draft-ietf-payload-rtp-h265-06.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/rtpdec.c
    • [DH] libavformat/rtpdec_formats.h
    • [DH] libavformat/rtpdec_hevc.c
    • [DH] libavformat/version.h
  • rtpdec : HEVC/H.265 support

    26 août 2014, par Thomas Volkert
    rtpdec : HEVC/H.265 support
    

    As specified in draft-ietf-payload-rtp-h265-06.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] Changelog
    • [DBH] libavformat/Makefile
    • [DBH] libavformat/rtpdec.c
    • [DBH] libavformat/rtpdec_formats.h
    • [DBH] libavformat/rtpdec_hevc.c
    • [DBH] libavformat/version.h
  • openCV VideoCapture doesn't work with gstreamer x264

    18 juin 2014, par nschoe

    I’d like to display a rtp / vp8 video stream that comes from gstreamer, in openCV.

    I have already a working solution which is implemented like this :

    gst-launch-0.10 udpsrc port=6666 ! "application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)VP8-DRAFT-IETF-01,payload=(int)120" ! rtpvp8depay ! vp8dec ! ffmpegcolorspace ! ffenc_mpeg4 ! filesink location=videoStream

    Basically it grabs incoming data from a UDP socket, depacketize rtp, decode vp8, pass to ffmpegcolorspace (I still don’t understand what this is for, I see it everywhere in gstreamer).

    The videoStream is a pipe I created with mkfifo. On the side, I have my openCV code that does :

    VideoCapture cap("videoStream");

    and uses cap.read() to push into a Mat.

    My main concern is that I use ffenc_mpeg4 here and I believe this alters my video quality. I tried using x264enc in place of ffenc_mpeg4 but I have no output : openCV doesn’t react, neither does gstreamer, and after a couple of seconds, gst-launch just stops.

    Any idea what I could use instead of ffenc_mpeg4 ? I looked for "lossless codec" on the net, but it seems I am confusing things such as codec, contains, format, compression and encoding ; so any help would be (greatly) appreciated !

    Thanks in advance !