Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (66)

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

  • Exchange data between ffmpeg and video player

    12 mars 2012, par ov1d1u

    I'm using ffmpeg as a proxy for playing RTSP streams in VLC (because it seems that VLC doesn't work too well with TCP-based RTSP streams). While in Linux I'm doing this by creating a FIFO file and using it as output for ffmpeg, in Windows I can't do this because os.mkfifo() doesn't work under this OS. So I have to find a way to start ffmpeg with subprocess.Popen() and sending it's converted data to VLC in real time (I'm using the VLC bindings for Python).

    I tried to set ffmpeg's output to stdout (ffmpeg.exe -y -i rtsp ://fms30.mediadirect.ro/live/utv/utv ?tcp -acodec libmp3lame -ar 44100 -vodec copy -f flv -), catching that output and sending it to a SimpleHTTPServer class using sockets (well, I'm not sure that this approach was a good idea). I also tried by using pipes (with win32pipe.CreateNamedPipe) but I was still out of luck.

    How I could do this ? Or why VLC doesn't want to play this stream (rtsp ://fms30.mediadirect.ro/live/utv/utv) while ffmpeg will can ? This is the actual code used in Linux, which doesn't works on Windows : http://pastebin.com/vqX1Edwg

  • difference between using SDL and using media player class that is videoview

    21 janvier 2014, par Whoami

    I have been surfing the net for some time to get basic understanding of media framework in android. As part of this,

    To display video we have media player class or video view component which can easily display the video. When we have such solution provided by the framework itself, then why there are few components avaiable like SDL [ Simple Direct Media Layer], which claims the same functionality as video view.?

    How both are different ?

    Kindly bare with me, if the question is very basic.

  • How can I stream video in swift using FFmpeg in real time ?

    13 novembre 2019, par rIn

    I want to make a real time video streaming app but I’m new to Swift and live streaming..

    Video input captured by AVCaptureSession is from iPhone and I want to encode the input from MPEG-4 to MPEG-2.
    I will use FFmpeg library to encode the video input in swift.

    Here’s my questions.

    1. I don’t know how to deliver video data to FFmpeg functions. Actually I’m not certain that I have to use FFmpeg library to encode video data from MPEG-4 to MPEG-2 transport stream. Is there any API that can encode video data in Swift by Apple ?

    2. How can I deal with video data from AVCaptureSession ? Are there frames or h.264 video in CMSampleBuffer ? I want to know what type of data is in CMSampleBuffer.

    I’m struggling to solve this problem. Please let me know anything if you have some experiences about this kind of project. Any ideas or advice for a better approach are welcome.