Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (65)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9420)

  • python module ffpyplayer showing or displaying video frames to screen

    19 octobre 2016, par user2305443

    Using python module ffpyplayer, How can I see the frames or get the img object to display or show the video image/frames to the screen ?, in the tutorial that I followed, it seems very simple, it reads the frames and plays oudio but (does not display) any video image or frame to the screen, only if I add the (print img, t) will print the frame info to the screen but not video image is displayed on the screen.

    I being following tutorials from : https://pypi.python.org/pypi/ffpyplayer, and here : http://matham.github.io/ffpyplayer/player.html, and searched google but the only relevant results point to the same info, I am somewhat new to programming and python, and so maybe I am missing something that seems to be very simple but I can’t figure it out myself.

    I am using : windows 7 64bit, python 2.7.11 32bit.

    Any Help will be appreciated thank you very much.

    from ffpyplayer.player import MediaPlayer

    vid = 'test_video.flv'
    player = MediaPlayer(vid)
    val = ''
    while val != 'eof':
       frame, val = player.get_frame()
       if val != 'eof' and frame is not None:
           img, t = frame
           print img, t     #This prints the image object
           # display img    #This does nothing!
  • opencv_ffmpeg module crash (IP Camera)

    25 novembre 2016, par Suraksha Ajith

    I’m using IP webcam android app(It converts mobile camera into IP web camera).
    I’m running below code in Visual Studio 2015 with OpenCV 3.1.

    VideoCapture cap; Mat img;
    cap.open("http://192.168.0.101:8080/video?x.mjpeg");
    while(waitKey(33)!=27)
    {
       try{
           cap>>img;  //code crashes here
           if(img.empty())
           {
            cout<<"camera Closed"<code>

    Getting below error.cIf the internet connection is slow or if the Wi-Fi is disconnected in my android device the program crashes
    Error :

    Exception thrown at 0x0BF2F6F0 (opencv_ffmpeg310.dll) in test.exe :
    0xC0000005 : Access violation reading location 0x00000020.

    If there is a handler for this exception, the program may be safely
    continued.

    even if the code is wrapped within try catch block, it crashes !

    Should I use try {} catch (...) block in source file, if yes, then where should I use this ?
    I referred this link but did not find the right answer.

  • Getting ffprobe or avprobe not found while using youtube_dl module

    26 décembre 2016, par Avinash
    import youtube_dl


    options = {
       'format':'bestaudio/best',
       'extractaudio':True,
       'audioformat': 'mp3',
       'outtmpl':'%(id)s.%(ext)s',
       'noplaylist':True,
       'nocheckcertificate':True,
       'postprocessors': [{
           'key': 'FFmpegExtractAudio',
           'preferredcodec': 'mp3',
           'preferredquality': '192',
       }],

    }

    with youtube_dl.YoutubeDL(options) as ydl:
       ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc'])

    I am Getting

    "youtube_dl.utils.DownloadError : ERROR : ffprobe or avprobe not found.
    Please install one."

    I downloaded ffmpeg and tried giving its bin folder location in path variable . I also tried copying that bin folder to my youtube_dl package folder. None of them worked.

    Thanks in advance.