Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4591)

  • Why is safari browser not able to play h.264 high10 with pixel format yuv420p10le video ?

    15 avril 2022, par Rajat Raghuwanshi

    I have read and found that Safari Supports HDR as well as H264 Codecs.
But When I generate HDR video using h.264 codecs using ffmpeg, the safari gives error in playing the video which chrome is easily able to play.
Video Error on Safari

    
I am able to play the video with pixel format yuv420p ( 8 bit ).
Is 10 bit video not supported with H264 in Safari ?

    


    I used FFMPEG.WASM to generate video with following properties :
    
-framerate 0.1 -pattern_type glob -i *.png -tag:v avc1 -c:v libx264
    
-profile:v high10 -crf 20
-sws_flags spline+accurate_rnd+full_chroma_int
    
-color_trc smpte2084 -color_primaries bt2020
-color_range pc -colorspace bt2020nc
    
-pix_fmt yuv420p10le -vf eq=brightness=0.12 out.mp4"

    


  • ffmpeg what is the codec for play video in windows media player and web browser

    27 septembre 2016, par Swagat

    I have a requirement to convert video to mp4 which can play both windows medial player(latest version) and web browser(video tag)

    I got to run video in both windows media player or web browser, but two different video. i.e. in below scenario :

    For windows media play, I am using -codec:v mpeg4 and an example is :

    ffmpeg -i input.mp4  -filter_complex  -codec:v mpeg4 -flags:v +qscale -global_quality:v 0 -codec:a libmp3lame  output.mp4

    For Web Browser I need to run with -codec:v libx264 and an example is :

    ffmpeg -i input.mp4  -filter_complex  -codec:v libx264 -flags:v +qscale -global_quality:v 0 -codec:a copy output.mp4

    Both them are working perfectly in their respective player. Even I tried with combine both codec, its obvious, it is raising error.

    Any way to play in both place. Any way of direction will also help me here.

    Thanks in advance.

  • GIF to MP4 Conversion with ffmpeg won't play in browsers or certain computers

    24 janvier 2014, par Gordnfreeman

    I am using a script to convert a gif to an mp4 file using ImageMagick and ffmpeg (the latest version from http://ffmpeg.gusari.org/static/). The conversion works and gives me a mp4 file which I can play on my home computer but not any other one, the file also does not play in browsers. I have downloaded a lot of codecs at home so I suspect that is the issue.

    The code I am using, I will include all of it incase there is a problem earlier on in the script :

    convert ORIGINALGIF.gif NEWPNG%03d.png
    ffmpeg -framerate 10 -i NEWPNG%03d.png NEWVIDEO.mp4

    And that is about it this script works and creates the file but I can only view it on my home computer, I did some research and found the script below :

    ffmpeg -framerate 10 -i NEWPNG%03d.png -b 1500k -vcodec libx264 -vpre slow -vpre baseline -g 30 NEWVID.mp4

    I have tried this and a few variations of it but even if the file gets made it cannot be played in any browsers.