Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (65)

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

  • How to generate video preview thumbnails for use in VideoJS ?

    30 octobre 2019, par steven

    I moved over to VideoJs (html5) and need to figure out how to generate thumbnails for the seekbar. I have tried using videojs-thumbnails, however that requires having a preloaded vtt file with a sprite image. I’m trying to figure out a way to automatically load thumbnails for a regular mp4 (h264) file. Flowplayer was able to do this with it’s own videos, trying now to figure out how to do it with VideoJs.

    I was hoping their was some plugin that I missed that was capable of doing this, but have yet to find it. The best I figured out was to extract the thumbnails from the mp4 file, combine it into a sprite image, and use the #xywh attribute.

    If there is no plugin that automatically does this in VideoJS, what command line program can I use to create a VTT file with sprite image on Ubuntu ? I am dealing with lots of video files, so doing it manually just isn’t feasible.

    My video player :

      <div class="video_player_js" style="width:auto; height:auto;">
     <video class="vjs-16-9 video-js vjs-default-skin vjs-big-play-centered" controls="controls" preload="auto" width="auto" height="auto" data-setup="{&quot;fluid&quot;: true}">
       <source src="test.mp4" type="video/mp4"></source>
       <track kind="metadata" src="thumbnails.vtt"></track>
       <p class="vjs-no-js">To view this video enabled Javascript.</p>
     </video>
    </div>

    Sample vtt file :

    WEBVTT

    00:00:00.000 --> 00:00:03.000
    thumbnails.jpg#xywh=0,0,120,68

    00:00:03.000 --> 00:00:06.000
    thumbnails.jpg#xywh=120,0,120,68

    00:00:06.000 --> 00:00:09.000
    thumbnails.jpg#xywh=240,0,120,68
  • Use `peerDependencies` for jQuery

    21 février 2021, par mpdude
    Use `peerDependencies` for jQuery
    

    Would it make sense to specify `jquery` as a `peerDependency` to make sure it matches the version of jQuery the main project installs ?

  • Failed to find two consecutive MPEG audio frames [closed]

    3 décembre 2024, par matrixebiz

    I'm receiving this error trying to download/convert an m3u8

    &#xA;

    [mp3 @ 000001c8f5112200] Format mp3 detected only with low score of 1, misdetection possible!&#xA;[mp3 @ 000001c8f5112200] Failed to find two consecutive MPEG audio frames.&#xA;[in#0 @ 000001c8f5111f40] Error opening input: Invalid data found when processing input&#xA;

    &#xA;

    Any way to fix this in my ffmpeg command line ? Also, playing the stream in VLC and other apps shows this in the path /%EF%BB%BF for some reason.&#xA;VLC is unable to open the MRL 'file :///C :/Temp/%EF%BB%BF'. Check the log for details. Then it will play the actual video.

    &#xA;

    Do i need to change the beginning of the m3u8 ?&#xA;#EXTM3U&#xA;#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1000,RESOLUTION=640x360,

    &#xA;

    Even if I remove it and just leave the URL that is inside the m3u8, will still display the %EF%BB%BF which I need to stop from happening

    &#xA;

    EDIT : Adding the PowerShell script I'm using to output my file :

    &#xA;

    function Replace-FileText&#xA;{&#xA;    [CmdletBinding()]&#xA;    Param&#xA;    (&#xA;        $File1,&#xA;        $File2,&#xA;        $File1StartAnchor,&#xA;        $File1EndAnchor = "$",&#xA;        $File2StartAnchor,&#xA;        $File2EndAnchor = "$"&#xA;    )&#xA;    &#xA;    #Escape the regex meta characters, this assumes literals are used in the input&#xA;    $File1StartAnchorEscaped = [System.Text.RegularExpressions.Regex]::Escape($File1StartAnchor)&#xA;    $File2StartAnchorEscaped = [System.Text.RegularExpressions.Regex]::Escape($File2StartAnchor)&#xA;&#xA;    if ($PSBoundParameters.ContainsKey(&#x27;File1EndAnchor&#x27;))&#xA;    {&#xA;        $File1EndAnchorEscaped = [System.Text.RegularExpressions.Regex]::Escape($File1EndAnchor)&#xA;    }&#xA;    else&#xA;    {&#xA;        $File1EndAnchorEscaped = $File1EndAnchor&#xA;    }&#xA;&#xA;    if ($PSBoundParameters.ContainsKey(&#x27;File2EndAnchor&#x27;))&#xA;    {&#xA;        $File2EndAnchorEscaped = [System.Text.RegularExpressions.Regex]::Escape($File2EndAnchor)&#xA;    }&#xA;    else&#xA;    {&#xA;        $File2EndAnchorEscaped = $File2EndAnchor&#xA;    }&#xA;&#xA;&#xA;    if ((Get-Content $File1 -Raw) -match "$File1StartAnchorEscaped(.*?)$File1EndAnchorEscaped")&#xA;    {&#xA;        Write-Host "Found the following string in between the anchors in $File1 :$($Matches[1])"&#xA;        $TextToInject = $Matches[1]&#xA;    }&#xA;    else&#xA;    {&#xA;        Write-Host "Could not find the Start and end Anchors in $File1"&#xA;        return&#xA;    }&#xA; &#xA;    if ((Get-Content $File2 -Raw) -match "$File2StartAnchorEscaped(.*?)$File2EndAnchorEscaped")&#xA;    {&#xA;        Write-Host "Found the following string in between the anchors in $File2 :$($Matches[1])"&#xA;        $TextToReplace = $Matches[1]&#xA;    }&#xA;    else&#xA;    {&#xA;        Write-Host "Could not find the Start Anchor in $File2"&#xA;        return&#xA;    }&#xA; &#xA;    (Get-Content $File2 -Raw) -replace $TextToReplace,$TextToInject | Out-File $File2 -NoNewline&#xA;}&#xA; &#xA; &#xA;Replace-FileText -File1 &#x27;C:\EQDA\File1.txt&#x27; -File2 &#x27;C:\EQDA\File2.txt&#x27; -File1StartAnchor &#x27;two&#x27; -File1EndAnchor &#x27;"&#x27; -File2StartAnchor &#x27;four&#x27;&#xA;Replace-FileText -File1 &#x27;C:\EQDA\File1.txt&#x27; -File2 &#x27;C:\EQDA\File2.txt&#x27; -File1StartAnchor &#x27;server-&#x27; -File1EndAnchor &#x27;-name&#x27; -File2StartAnchor &#x27;server-&#x27; -File2EndAnchor &#x27;-name&#x27;&#xA;

    &#xA;