Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (33)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

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

  • Have python translate the correct file name

    24 avril 2018, par DutchNinja

    I’m trying to make a small simple program that can make a video out of a bunch of pictures.

    I found this :

    os.system("ffmpeg -r 1 -i img%01d.png -vcodec mpeg4 -y movie.mp4")

    It works but only if the file names are imgxxx.png

    my files are named : xx.xx.xx.xxx.jpg (example : 11.58.30.445.jpg). As you might understand the file names are made from the time the picture is taken.

    I have tried several options but I can’t make python read the correct files. I could rename all the files but I want the program to run by itself so renaming all the files is not the solution I’m looking for.

    Thanks in advance for all the help.

  • FFmpeg Cropping Fps Drop

    7 mai 2022, par James

    FFmpeg Commands works but having a problem in fps drop also using libx264 for encoding any idea to get this good

    


    "-y" "-noautorotate" "-ss" "301" "-t" "11" "-i" "/mnt/shared/Pictures/[BTCLOD.COM] COSTA RICA IN 4K 60fps HDR (ULTRA HD)-1080p60.mp4" \
"-strict" "experimental" "-vf" "crop=w=606:h=1080:x=657:y=0" \
"-vcodec" "libx264" "-crf" "18" "-r" "15" "-b:v" "2500k" \
"-acodec" "copy" "-ab" "128k" "-sample_fmt" "s16" \
"-ss" "0" "-t" "11" "/storage/emulated/0/VEditor/VideoCroper/[BTCLOD.COM] COSTA RICA IN 4K 60fps HDR (ULTRA HD)-1080p60-0-6.mp4"


    


  • RTSP streaming to html5 video

    19 février 2017, par Gautier Drusch

    On a project, we have a camera with a RTSP stream (video & audio, encoded in H264). We need to make the stream available on all browsers (desktop & mobile).

    I’ve seen some solutions :

    • Convert the stream on HLS (iOS) and MPEG DASH (other browsers) with FFMPEG on a server
    • Video only with jsmpeg

    The problem is since we need a really live streaming (e.g. the user can record some pictures/video on live), a low the latency solution is a specification of the project.

    Any ideas ?