Recherche avancée

Médias (91)

Autres articles (90)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Batch script calling its own name instead of files of a certain type ?

    27 juin 2020, par R. Elias
    cd %cd%
ffmpeg -i %cd%/%04d.png out.mp4


    



    A script with just this in it works completely fine and outputs exactly what I need it to, but :

    



    :: A simple script to convert a png or jpg image sequence to an         
mp4 file with ffmpeg
cls
@echo off
title PNG2MP4
color C
echo Ensure you have ffmpeg installed and setup in your environment variables or this script won't work.


:QUERY
echo This will convert all image files in the following directory to a single mp4, 
echo %cd%
echo are the files PNGs or JPEGs(PNG/P/JPG/J/CANCEL)?
set/p "ch=>"
if /I %ch%==PNG goto CONVERTPNG
if /I %ch%==P goto CONVERTPNG
if /I %ch%==JPG goto CONVERTJPG
if /I %ch%==J goto CONVERTJPG
if /I %ch%==CANCEL goto :eof
echo Invalid choice & goto QUERY

:CONVERTPNG
cd %cd%
ffmpeg -i %cd%/%04d.png out.mp4

:CONVERTJPG
cd %cd%
ffmpeg -i %cd%/%04d.jpg out.mp4


    



    This more complex version of the script fails, outputting :

    



    C:\tmp/img2mp4.bat4d.jpg: No such file or directory


    



    Why is it no longer calling the files that it did before and is there an easy fix for this ?

    


  • avfilter/vf_fps : properly preserve CEA-708 captions

    5 mai 2023, par Devin Heitmueller
    avfilter/vf_fps : properly preserve CEA-708 captions
    

    The existing implementation made an attempt to remove duplicate
    captions if increasing the framerate, but made no attempt to
    handle reducing the framerate, nor did it rewrite the caption
    payloads to have the appropriate cc_count (e.g. the cc_count needs
    to change from 20 to 10 when going from 1080i59 to 720p59 and
    vice-versa).

    Make use of the new ccfifo mechanism to ensure that caption data
    is properly preserved.

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/vf_fps.c
  • mpegts : Remove one memcpy per packet

    1er août 2013, par Ben Avison
    mpegts : Remove one memcpy per packet
    

    This was being performed to ensure that a complete packet was held in
    contiguous memory, prior to parsing the packet. However, the source buffer
    is typically large enough that the packet was already contiguous, so it is
    beneficial to return the packet by reference in most cases.

    Before After
    Mean StdDev Mean StdDev Change
    memcpy 720.7 32.7 649.8 25.1 +10.9%
    Overall 2372.7 46.1 2291.7 21.8 +3.5%

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mpegts.c