Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (109)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (14456)

  • Cannot stop and (re-play) a rtsp stream with FFMediaElement

    5 mars 2024, par CactusJack

    I have a problem using stop and play on a rtsp stream using the FFMediaElement.

    


    I am initializing an instance of the MediaElement once by doing m_MediaPlayer = new MediaPlayer();
This instance should live the whole application lifetime.

    


    After this, I open the rtsp stream : await m_MediaPlayer.Open(new Uri(rtspAdress));
The media opens, and when I do m_MediaPlayer.Play(); the stream is displayed in the MediaElement.

    


    Now I want to stop the stream with m_MediaPlayer.Stop(); and play it again. After calling play again, the stream is not diplayed anymore. The log says :

    


    Direct Command 'Close' accepted. Perparing execution.
OnStreamReadInterrupt was requested an immediate read exit.
EVENT START : BufferingEnded
EVENT DONE : BufferingEnded
V BLK : 14.388 | CLK : 14.417 | DFT : 29 | IX : 4 | RNG : 48.897% | PQ : 0.0k | TQ : 0.0k
Direct Command 'Close' entered
MediaState changed : + Close
Media closed.
OnStreamReadInterrupt was requested an immediate read exit.
EVENT START : MediaStateChanged
EVENT START : MediaClosed
EVENT DONE : MediaStateChanged
Direct Command 'Close' completed. Result : True
EVENT DONE : MediaClosed
Dispose Entered. Waiting for Command Manager processor to stop.
Dispose is waiting for pending direct commands.
Dispose is closing media.
EVENT START : MediaClosed
Media closed.
EVENT DONE : MediaClosed
Dispose completed.

    


    So why is Stop disposing the media ?
When I create a new player before re-playing and open the stream again, it works. But this takes a moment, so I just wat to stop and start again. Is that possible ?

    


  • FFMPEG play an overlay video

    6 juillet 2016, par Chris

    Hello everyone,

    I’m struggling hours on placing an image over a video (overlay) and to play the output directly in the web browser (I have FFMPEG installed on the server). Here is what I have :

    $output = shell_exec($command);                
    $image =  '/image.png';        
    $video =  '/videoin.mp4';      
    $saved_video_path= "";      
    $i = "'";    
    $command = '/usr/local/bin/ffmpeg -i ' . $video . ' -i ' . $image . ' -filter_complex "[0:v][1:v] overlay=10:10:enable=' . $i . 'between(t,5,10)' . $i    . '" '.$saved_video_path;            
    echo "$output";      

    I would really appreciate your help !

    Chris

  • GIF to MP4 Conversion with ffmpeg won't play in browsers or certain computers

    24 janvier 2014, par Gordnfreeman

    I am using a script to convert a gif to an mp4 file using ImageMagick and ffmpeg (the latest version from http://ffmpeg.gusari.org/static/). The conversion works and gives me a mp4 file which I can play on my home computer but not any other one, the file also does not play in browsers. I have downloaded a lot of codecs at home so I suspect that is the issue.

    The code I am using, I will include all of it incase there is a problem earlier on in the script :

    convert ORIGINALGIF.gif NEWPNG%03d.png
    ffmpeg -framerate 10 -i NEWPNG%03d.png NEWVIDEO.mp4

    And that is about it this script works and creates the file but I can only view it on my home computer, I did some research and found the script below :

    ffmpeg -framerate 10 -i NEWPNG%03d.png -b 1500k -vcodec libx264 -vpre slow -vpre baseline -g 30 NEWVID.mp4

    I have tried this and a few variations of it but even if the file gets made it cannot be played in any browsers.