Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (77)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5165)

  • Red5 server + ffmpeg feed stream, and cannot play the stream

    16 juillet 2014, par user1914692

    Ubuntu 12.04,

    (a) start Red5 server in Terminal 1

    (b) feed a stream to the Red5 server in Terminal 2

    ffmpeg -re -i '/usr/share/red5/webapps/oflaDemo/streams/avatar.flv' -vcodec libx264 -ab 128k -ac 2 -ar 44100 -r 25 -s 320x240 -vb 660k -f flv 'rtmp://localhost/oflaDemo/streamTest'

    Terminal 2 shows some messages that it is streaming.

    (c) play the stream
    I use Movie Player : rtmp ://localhost/oflaDemo/streamTest

    [Result] An error occured. Stream contains no data.

  • Class not found Symfony2

    31 octobre 2012, par CaptainStiggz

    I've installed the ffmpeg.so extension on my server. I want to use the ffmpeg-php library in my Symfony 2 application. If I do :

    $ffmpeg = new ffmpeg_movie('movie.flv');

    In a standalone php file, it works beautifully. But if I put the same code into my Symfony2 controller, I get

    Fatal error: Class 'Example\ExampleBundle\Controller\ffmpeg_movie' not found in...

    It must have to do with Symfony's namespace options, but I'm not sure how to resolve it.

  • How to overlay an input over an image using filters ?

    9 mai 2012, par Jona

    I'm looking to create a video using a set of png images that have transparency merged with a static background.

    After doing a lot of digging I seems like it's definitely possible by using the filters library.

    My initial video making without including the background is :

    ffmpeg -y -qscale 1 -r 1 -b 9600 -loop -i bg.png -i frame_%d.png -s hd720 testvid.mp4

    Using -vf I can apply the background as overlay :

    ffmpeg -y -qscale 1 -r 1 -b 9600 -i frame_%d.png -vf "movie=bg.png [wm];[in][wm] overlay=0:0 [out]" -s hd720 testvid.mp4

    However the problem is it's overlaying the background over the input. According libacfilter I can split the input and play with it's content. I'm wondering if I can somehow change the overlay order ?

    Any help greatly appreciated !

    UPDATE 1 :
    I'm trying to make the following filter work but I'm getting the movie without the background :

    ffmpeg -y -qscale 1 -r 1 -b 9600 -i frame_%d.png -vf "movie=bg.png [bg]; [in] split [T1], fifo, [bg] overlay=0:0, [T2] overlay=0:0 [out]; [T1] fifo [T2]" -s hd720 testvid.mp4