Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (108)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12062)

  • ffmpeg-Create the video slideshow with effect ? [on hold]

    1er octobre 2013, par Lily Shukla

    I want to make video slide show with image using the ffmpeg.
    i try the code

    Using a single image as an input

    If you want to create a video out of just one image, this will do (output video duration is set to 30 seconds with -t 30) :

    ffmpeg -loop 1 -i img.png -c:v libx264 -t 30 -pix_fmt yuv420p out.mp4

    but sir it only showing the picture without any effect.
    i want to add effect like we see in power point.
    plz sie how to do it
    ffmpeg-Create the video slideshow with effect ???

  • Failed to create secure directory pulse audio ffmpeg

    30 mai 2021, par john

    I'm trying to run rstp camera streaming with pulse audio and ffmpeg. I have a usergroup "adam" and I'm in "john".

    


    I run sudo -u adam ffmpeg -f video4linux -i /dev/video2 -f pulse -i default -f rstp://localhost:1111/tmp/cam

    


    I get error

    


    Failed to created secure directory /home/adam/.config/pulse: no such file or directory


    


    How can I resolve this ?

    


  • Try to execute ffmpeg in python - subtitles error

    3 septembre 2022, par user103162

    I try to exectute :
./ffmpeg.exe -i "video.mkv" -vf subtitles="video.mkv" "video.mp4"
This command works fine

    


    But not in my python code

    


    
from pathlib import Path
import subprocess
import os


ffmpeg = r"D:\Archives\ffmpeg.exe"
os.chdir(r"D:\temp\video")
videos = Path(".")

for file_mkv in videos.glob("*.mkv"):
    file_mp4 = file_mkv.with_suffix(".mp4")
    subprocess.run([ffmpeg, "-i", file_mkv, "-vf", f'subtitles="{file_mkv}"', file_mp4])



    


    Error :
[Parsed_subtitles_0 @ 0000020cb26222c0] Unable to open "video.mkv"
[AVFilterGraph @ 0000020cb715a380] Error initializing filter 'subtitles' with args '"video.mkv"'
Error reinitializing filters !
Failed to inject frame into filter network : Invalid argument
Error while processing the decoded data for stream #0:0
Conversion failed !