Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (31)

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

  • h264 segments timeline for live http

    18 mai 2017, par Manuel

    I want to stream h264 from IP camera through http range requests.
    Recording 10min video to file with :

    ffmpeg -i rtsp://192.168.1.128:554/ch0_0.h264 -vcodec copy -an -f mp4 -reset_timestamps 1  -segment_time 1 -t 600 -movflags empty_moov+default_base_moof+frag_keyframe video.mp4

    During the recording every second I capture the video structure with (python lib) :

    qtfaststart -l video.mp4

    I can capture the init header without any problem and also the rest of the processing video. The thing is that I don’t know how to make the timeline for each segment :

    moof 104

    mdat 41899 ---- > segment 1 104+41899

    moof 432

    mdat 831469 -----> segment 2 432+831469

    How I can capture the timeline for each segment ?

    eg :

    segment1 = from 0 to 2 sec

    segment2 = from 2 to 4 sec ...and so on

  • Understand your visitors by seeing where they click, hover, type and scroll, and replay their actions in a video

    18 mai 2017, par InnoCraft — Plugins

    Hi, this is Mike from InnoCraft, the company of the makers of Piwik Analytics which is used by over 1 million websites and apps in over 150 countries.

    I’m very proud to introduce you to our Heatmap & Session Recording feature which lets you analyze your visitors’ behaviour on a whole new level that was not possible before.

    With Heatmaps you can see where people think something is clickable but it is not, how far down the page do they scroll, whether they see your important buttons and Call To Actions, or even whether you can re-position your page layout to put the important content in more visible places. Both the mouse movements and all clicks are recorded and viewable on these new beautiful heatmap visualisations.

    With Session Recordings, you get to see a video showing exactly what a visitor did on your pages, including all mouse movements, scrolls, text typed in the keyboard, and more. Using these recordings you can improve the usability on your website, replace costly (and less effective) eye tracking sessions, and you can now see exactly what problems your visitors experience or how they behave on your website. This gives new insights and ability to understand what your users think.

    -> Read the rest of the story on the Heatmaps & Session Recordings Marketplace page.

    What does the new Heatmaps reports look like ?

    Here is below just a little preview of the new Heatmaps reports.

    1) Mouse move and Click Heatmaps

    2) A Scroll Heatmap

    What does the new Session Recording look like ?

    You can replay videos of exactly what your users did on your websites including mouse moves, scrolls, typing in forms, and more.

    1) Listing all recorded video sessions

    2) Playing a recorded video session

    Where do I get Heatmaps & Session Recording for Piwik ?

    The new premium plugin is available on the Piwik Marketplace :

    This is a premium plugin for Piwik and comes with our 14 day money back guarantee and 1-click installation & updates (all product updates come for free).

    You can also signup for a free Piwik Cloud-hosted trial to discover the power of Heatmaps & Session Recordings !

  • Recording video using ffmpeg in android

    12 juin 2017, par Vishal Ghorpade

    i was studying ffmpeg for android library,was unable to understand a part of the code.

    public void onPreviewFrame(byte[] data, Camera camera)
    {
       if (audioRecord == null || audioRecord.getRecordingState() != AudioRecord.RECORDSTATE_RECORDING)
       {
            startTime = System.currentTimeMillis();
            return;
       }

       if (RECORD_LENGTH > 0) {
           int i = imagesIndex++ % images.length;
           yuvImage = images[i];
           timestamps[i] = 1000 * (System.currentTimeMillis() - startTime);
       }

    //till here i was able to understand but the first statement is for what purpose?

       /* get video data */
       if (yuvImage != null && recording) {
           ((ByteBuffer)yuvImage.image[0].position(0)).put(data);
       }
    }