Recherche avancée

Médias (91)

Autres articles (83)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

Sur d’autres sites (6981)

  • avutil/cpu : fix cpu-test to work with ffmpegs cpuflags syntax

    6 août 2014, par Michael Niedermayer
    avutil/cpu : fix cpu-test to work with ffmpegs cpuflags syntax
    

    Found-by : jamrial
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/cpu.c
  • FFMPEG does not work

    28 novembre 2017, par rktech

    I use this command :
    ffmpeg -y -f concat -safe 0 -i out.txt -vsync vfr -pix_fmt yuv420p output.mp4
    But if I start encoding and play video, I can not play video.
    Can someone help me

  • Does 'force_style' work with 'subtitles=video.mkv' for FFMPEG ? [closed]

    8 septembre 2023, par http.bird

    I am using this script to encode an burn in subtiles for an entire folder :

    &#xA;

    for filepath in newFiles:&#xA;    video = os.path.basename(filepath)&#xA;    videoName = os.path.splitext(video)[0]&#xA;    newFile = &#x27;%s.mp4&#x27; % videoName&#xA;    i = filepath&#xA;    o = os.path.join(destinationDirectory, newFile)&#xA;    if os.path.isfile(o):&#xA;        continue&#xA;    encodeCommand = f&#x27;ffmpeg -i "{i}" -vf "scale=-2:480, subtitles="{video}":force_style=&#x27;PrimaryColour=&amp;H0300FFFF&amp;&#x27;" -c:v libx264 -profile:v baseline -level 3.0 -preset fast -crf 23 -pix_fmt yuv420p "{o}"&#x27;&#xA;    print(&#x27;Encoding %s&#x27; % newFile)&#xA;    encode = os.popen(encodeCommand).read()&#xA;

    &#xA;

    However, the force_style=&#x27;PrimaryColour=&amp;H0300FFFF&amp;&#x27; does not work and just keeps the subtitles built into the original file untouched. I am using subtitles="{video}" because it uses the subtitles that are saved in the video file. Does &#x27;force_style&#x27; only work if I am providing a separate subtitle file ?

    &#xA;

    I tried a mixture of quote combinations to see if that was the problem, but that stopped the script from running. This script still runs, just doesn't change the color of the subtitles.

    &#xA;

    Edit : suddenly it doesn't run. Says that PrimaryColour is invalid syntax. I didn't change anything

    &#xA;