Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (71)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11733)

  • Play video using ffmpeg and apply filter

    24 juillet 2018, par Yarik Denisyk

    I am working on some project and I need to play video and apply a filter. Is there some way to play video from the server and apply a filter to extract alpha in real time ?

    I am using the following command for extract alpha when video on my device.

    ffmpeg -i video_with_mask
    -filter_complex "[1]crop=iw:ih/2:0:0[rgb] ;[1]crop=iw:ih/2:0:ih/2[alp] ;\
    [rgb][alp]alphamerge[va]"

  • IOS html5 audio API can not play m4a converted by ffmpeg

    11 juillet 2017, par Cheng Jeiry

    I’m using Html5 audio api play m4a on IOS
    I converted mp3 to m4a by ffmpeg. here is the script

    ffmpeg -ss 0 -i ./Uploads/" + str(current) + ".mp3 -t 15 -c:a aac -b:a 64k ./Uploads/" + str(current) + "_lite.m4a

    then I play the m4a by audio api on IOS. and I got the error

    undefined:1 Uncaught (in promise) DOMException: Failed to load because no supported source was found.

    then a try mp3 mp4 format, works fine.

    Is there a solution to resolve this error ? Thank you very much !

  • How can I stream then play YUV format with/without VLC/FFMPEG ?

    13 janvier 2023, par orfruit

    I'm able to play a local YUV file through VLC (as expected)

    


    .\vlc.exe --demux rawvideo --rawvid-fps 25 --rawvid-width 480 --rawvid-height 360 --rawvid-chroma I420 out.yuv


    


    Also FFPLAY is playing well

    


    .\ffplay.exe -f rawvideo -pixel_format yuv420p -video_size 480x360 out.yuv


    


    Conversion to YUV was done with FFMPEG

    


    .\ffmpeg.exe -i "video.mp4" -c:v rawvideo -pixel_format yuv420p out.yuv


    


    However, I'm not able o stream it and play'it over local network.
I know, it sounds crazy :) but I plan to use VLC as a monitor/debugger for some YUV data.

    


    The original MP4 file is streamed/played fine with VLC (test on the same computer)

    


    .\vlc.exe "video.mp4" --sout="#std{access=http, mux=ts, dst=:55555/}"
.\vlc.exe http://192.168.0.174:55555/


    


    So the big question !
How can I stream the YUV format and VLC recognise an play it as well ?

    


    All that I tried with VLC is not playable.

    


    Thanks for any hints !