Recherche avancée

Médias (91)

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

Sur d’autres sites (11588)

  • EmguCV capture rtsp ip camera stream ffmpeg

    2 février 2018, par Mr Neo

    I am working with IP camera and EmguCV to detect person in an area.
    Everything is work normally with Highgui capture source.
    But with Arlo camera which use FFMPEG format, I am unable to get stream without any exception.
    Here is the code I have tried :

    if (capture == null)
           {
               try
               {
                   capture = new Capture("rtsp://<ip>:8554/live");
                   capture.ImageGrabbed += Capture_ImageGrabbed;
                   capture.Grab();
                   capture.Start();
               }


               catch (NullReferenceException exception)
               {
                   MessageBox.Show(exception.Message);
               }
               catch (TypeInitializationException exc)
               {
                   MessageBox.Show(
                      "Attention: You have to copy all the assemblies and native libraries from an official release of EmguCV to the directory of the demo." +
                      Environment.NewLine + Environment.NewLine + exc);
               }
    }
    </ip>

    and here is Capture_ImageGrabbed event which is not fired.

    private void Capture_ImageGrabbed(object sender, EventArgs e)
       {
           Mat image = new Mat();
           capture.Retrieve(image);
           picCAM.Image = image.Bitmap;
       }

    Thanks so much for your help !

  • Combine .dash video and audio segments to .mp4

    11 décembre 2019, par Mike Stevens

    I was able to download some dash video segments (youtube-dl was apparently blocked from downloading the .mpd and just downloading, concatenating as normal) and was hoping to combine/concatenate them so I could watch in VLC, perhaps using ffmpeg. I was able to download the relevant .mpd and .ismc files, so I have all of the DASH video and audio segments, as well as the .mpd and .ismc downloaded and in one folder.

    The video files are labelled as such

    video=869000.dash
    video=869000-0.dash
    video=869000-600.dash
    video=869000-1200.dash

    and the audio in a similar fashion

    audio=96000.dash
    audio=96000-0.dash
    audio=96000-96225.dash

    Would anyone know of a way to combine all of these into one watchable video file ? AdobeHDS used to work great for combining fragments, and youtube-dl cleary has some sort of method to do it, but neither works with this particular .mpd. I don’t believe concatenate in ffmpeg will work, when I try to do that, it initializes the first .dash file (audio or video), but stops there.

    When I try to put the .mpd file through ffmpeg, it returns "Failed to open an initialization section in playlist 0". I would’ve assumed this initialization was the video=869000.dash file though (which is the one segment file that ffmpeg does recognize) ?

  • Did not locate the video track for seeking

    5 novembre 2018, par Bruce Young

    I using android MediaPlayer to play some audios.It’s works 100% fine with the method seekTo() in some format like m4a(ffmpeg show the media info below) :
    normal is the audio file name

    But when I use other format like matroska,webm,the seekTo()method always fail !(ffmpeg show the media info below)

    seekbad is the audio file name

    Okay,when the seekTo() fail the android studio console show some logs like this :

    11-05 11:07:00.815 763-22357/? E/MatroskaExtractor: Did not locate the video track for seeking

    Than I google the logs and find out the sourcecode in google git :
    https://android.googlesource.com/platform/frameworks/av/+/304ef91624e12661e7e35c2c0c235da84a73e9c0/media/libstagefright/matroska/MatroskaExtractor.cpp

    In MatroskaExtractor.cpp some code like this :

    // Always *search* based on the video track, but finalize based on mTrackNum
    if (!pTP) {
       ALOGE("Did not locate the video track for seeking");
       return;
    }

    I do not know why my media file ’Did not locate the video track for seeking’,Does anybody know it,Thanks a lot !