Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (98)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (13491)

  • avformat/psxstr : fix unknown sector type 00/80

    2 janvier 2024, par aybe aybe
    avformat/psxstr : fix unknown sector type 00/80
    

    This third patch fixes warnings that are false positives (still on STRv1).

    That's because these sectors are simply empty ones as can be read in "System Description CD-ROM XA, May 1991,
    4.3.2.3".

    Haven't attempted significant refactoring as it just works, left a comment instead about the situation.

    The result is that there are no more false warnings when converting.

    Signed-off-by : aybe <aybe@users.noreply.github.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/psxstr.c
  • Line 1 : unknown keyword ' file' ffmpeg

    6 janvier 2024, par pops64

    I am trying to run a concation of multiple files using ffmpeg. Followed directions in docs and getting

    &#xA;

    Line 1: unknown keyword &#x27;file&#x27;&#xA;[in#0 @ 000001b09b25e840] Error opening input: Invalid data found when processing input&#xA;Error opening input file mylist.txt.&#xA;Error opening input files: Invalid data found when processing input&#xA;

    &#xA;

    I am not sure what is going wrong. The text file appears to be in the correct format.

    &#xA;

    $clips = Get-ChildItem -Path Y:\****\Test -File -Filter "*.mp4"&#xA;$regex = "(?:\w&#x2B;)-(?:[i]&#x2B;-)?(?\d&#x2B;)-(?\d&#x2B;)-(?:\w&#x2B;)"&#xA;$groupedScenes = $clips | Group-Object {[regex]::Match($_.Name, $regex).Groups["scene_id"].value}&#xA;foreach($scene in $groupedScenes)&#xA;{&#xA;    $sortedScene = $scene.Group | Sort-Object {[regex]::Match($_.Name, $regex).Groups["clip_id"].value -as [int]} &#xA;    foreach($i in $sortedScene) &#xA;    {&#xA;        "file &#x27;Y:\*****\Test\$i&#x27;" | Out-File mylist.txt -Encoding utf8 -Append&#xA;    }&#xA;    .\ffmpeg.exe -f concat -safe 0 -i mylist.txt -map 0 -c:v hevc_amf -quality quality -rc cqp -qp_p 26 -qp_i 26 -c:a aac -b:a 128K -y Y:\*****\Test\Procssed\$sortedScene.mp4&#xA;    Remove-Item mylist.txt&#xA;}&#xA;

    &#xA;

  • Possible issue / unknown "feature" of ffmpeg ? [closed]

    23 septembre 2023, par Grumpy OldMan

    I'm using ffmpeg to split up a MP4 file into shorter (about 5 seconds) files, each of which I will then later add hard-coded captions to.

    &#xA;

    ffmpeg -i master.mp4 -ss 00:00:00 -t 00:00:05 -c:v copy -c:a copy x-01.mp4&#xA;

    &#xA;

    It seems that if there is SRT file with the same base name as the output file (i.e. 'x-01.srt' in the above example), captions will be added to it. This is not what I was wanting. My workflow is to add it at a later stage. Is this an intended feature of the software or did I accidentally discover some sort of unintended side effect ?

    &#xA;

    I've tried searching the web, but can't find any mention of the "feature". If I change the ffmpeg command to use an output file name that does not have an associated ".srt" file with the same name, it works as expected.

    &#xA;