Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (33)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

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

Sur d’autres sites (5225)

  • Merging parts of GOPRO clips with concat filter produces the ffmpeg buffer error

    17 septembre 2023, par Sailor Jerry

    Here is my command line :

    


    ffmpeg -y  -ss 670497ms  -i "GX030058.MP4" -to 25977ms  -i "GX040058.MP4" \
 -filter_complex   \
"[0][1]concat=v=1:a=1 [concv] [conca]" \
 -map [concv] -map [conca] \
 "out.mp4"


    


    it produces the following error and the audio goes out of sync

    


    [out_0_0 @ 0x7fca2d508bc0] 100 buffers queued in out_0_0, something may be wrong.s speed=0.539x    
[out_0_1 @ 0x7fca2d5093c0] 100 buffers queued in out_0_1, something may be wrong.
[out_0_1 @ 0x7fca2d5093c0] 1000 buffers queued in out_0_1, something may be wrong.


    


    If I just issue command :

    


    ffmpeg -y  -ss 670497ms  -i "GX030058.MP4" -to 25977ms  -i "GX040058.MP4" "out.mp4"


    


    Then audio has no problems.

    


    The reason I use the filter, because the actual filter is more complex and also includes adding the overlay to these concatenated clips, but the problem exists even with concat operation only.

    


  • FFMPEG Windows Batch - Recursive Convert based and settings based on Frame Height

    3 avril 2017, par Vahid Jamali

    So I’m trying to make a batch file to use FFMPEG to convert around 1000 MP4 video files.

    I want to recursively go through these folders, possibly use ffprobe to discover the frame height, and then based on the frame height options (360, 480, 720, or 1080 frame height) give them individually different ffmpeg commands.

    I’ve been reading up on various approaches to this just as far as batch processing goes.

    So far I’m at this stage :

    for %%a in ("*.*") do C:\ffinstall\local64\bin-video\ffmpeg -i "%%a"  -c:v libx264 -crf 18 -preset veryslow -tune film -refs 8 -bf 6 -aq-mode 2 -filter_complex "[0:v][1:v]overlay=30:main_h-overlay_h-30,subtitles='D:\add.ass'" -c:a copy "encoded\%%~na.mp4"

    pause

    Code to discover the frame height :

    ffprobe -v error -show_entries stream=height -of default=noprint_wrappers=1 inputfile.mp4

    Trying to figure out conditionals and how their syntax is. Also I’m getting a Unable to parse option value "add.ass" as image size error. Which I believe is due to not being to see the subtitle file.

    Any suggestions on where I can start ? Thanks for any help.

  • Revision 68384 : si on a un display aspect ratio Si le ration de width / height est ...

    14 décembre 2012, par kent1@… — Log

    si on a un display aspect ratio
    Si le ration de width / height est vraiment trop différent de celui qui est dans les metas, c’est un truc étrange de la vidéo
    On doit donc recréer une largeur en fonction de la hauteur qui soit valable, sinon les encodages auront des problèmes de ratio, notamment lors de la lecture en flash
    On passe en version 1.2.3 (Baroug)