Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (77)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

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

  • Revision 96419 : La librairie en version 1.9.2 v1.9.12 Add support for Direct Stream ...

    11 juin 2018, par kent1@… — Log

    La librairie en version 1.9.2
    v1.9.12
    Add support for Direct Stream Digital (DSD) / DSD Storage Facility (DSF) file format
    Add detection (not parsing) of WebP image format
    bugfix #1910 : Quicktime embedded images
    v1.9.11
    #64 - update constructor syntax for PHP 7
    #62 - infinite loop in large PNG files
    #61 - ID3v2 remove BOM from frame descriptions
    #60 - missing "break" in module.audio-video.quicktime.php
    #59 - .gitignore comments
    #58 - inconsistency in relation to module.tag.id3v2.php
    #57 - comparing instead of assign
    #56 - unsupported MIME type "audio/x-wave"
    #55 - readme.md variable reference
    #54 - QuickTime ? false 1000fps
    #53 - Quicktime / ID3v2 multiple genres
    #52 - sys_get_temp_dir in GetDataImageSize ?
    demo.joinmp3.php enhancements
    m4b (audiobook) chapters not parsed correctly
    sqlite3 caching not working
    bugfix #1903 - Quicktime meta atom not parsed

  • Make an Alpha Mask video from PNG files

    15 juin 2019, par Archimedes Trajano

    For RenPy it uses the notion of an Alpha Mask video https://www.renpy.org/doc/html/movie.html#movie-displayables-and-movie-sprites

    I can convert the a bunch of PNGs with alpha channel to http://wiki.webmproject.org/howtos/convert-png-frames-to-webm-video I was wondering how to do the same sort of thing without creating another set of PNG files with just the alpha frame.

    I’ll be okay with something that uses imagemagik in the middle if needed.

  • what is the best way to append a video file to multiple video files using batch file [on hold]

    5 avril 2017, par JAGGADAKU

    i am beginner with computer programming and i have knowledge of c/c++

    from [https://trac.ffmpeg.org/wiki/Concatenate][1] i have learned that how to merge video files using ffmpeg

    To list all video files containing in a folder

    (for %%i in (*.mp4) do @echo %%i) > mylist.txt

    to concatenate files

    ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4

    This merges all files of a list to one single file.
    but How do i append one video file(main.mp4) at the starting of all the video files listed in mylist.txt ?

    can someone help me ?

    Hello there

    i have tried following code i don’t know what’s wrong with it but it is not `

    @echo off
    (for %%i in (*.mp4) do @echo %%i) > mylist.txt

    for /F "tokens=*" %%A in (mylist.txt) do (
       echo %%A
       ffmpeg -i "concat:main.mp4|%%A" -c copy  %%Aoutput.mp4

    )
    `