Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (54)

  • 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

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

Sur d’autres sites (8636)

  • avformat/flvdec : timestamps cannot use the full int64 range

    23 décembre 2021, par Michael Niedermayer
    avformat/flvdec : timestamps cannot use the full int64 range
    

    We do not support this as we multiply by 1000
    Fixes : signed integer overflow : -45318575073853696 * 1000 cannot be represented in type 'long'
    Fixes : 42804/clusterfuzz-testcase-minimized-ffmpeg_dem_LIVE_FLV_fuzzer-4630325425209344

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/flvdec.c
  • Keep including the full version.h when headers are included externally

    18 mars 2022, par Martin Storsjö
    Keep including the full version.h when headers are included externally
    

    This avoids unnecessary churn and build breakage for users, by
    making sure the whole version.h is included like it has been so far,
    while keeping the benefit of not needing to rebuild most files in
    the ffmpeg tree on minor/micro bumps.

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

    • [DH] doc/APIchanges
    • [DH] libavcodec/avcodec.h
    • [DH] libavdevice/avdevice.h
    • [DH] libavfilter/avfilter.h
    • [DH] libavformat/avformat.h
    • [DH] libpostproc/postprocess.h
    • [DH] libswresample/swresample.h
    • [DH] libswscale/swscale.h
  • How to concatenate variables and strings as a full path for the "output file" of an ffmpeg command in a bash script

    12 mai 2022, par djspatule

    I'm trying to learn to bash scripting and I tried to use variables and arguments, etc. to specify a complex output file name to a ffmpeg command as follows :

    &#xA;

    for file in "$1"/*; do&#xA;    #get the name of each file in the directory (without the path nor the extension)&#xA;    filename=$(basename $file .mp3)&#xA;    #use mimic for Text To Speech. Difficult to install but good and natural voices.&#xA;    ~/Desktop/mimic1/mimic -t "$filename" -o $1/wavefile.wav&#xA;    #converts the wav file outputed by mimic into mp3&#xA;    ffmpeg -i $1/wavefile.wav -f mp3 "${1}/${filename} (title).mp3"&#xA;done&#xA;&#xA;

    &#xA;

    But the "${1}/${filename} (title).mp3" part in particular really doesn't seem to work...

    &#xA;

    Indeed, if I run script.sh ./, I get a file called (title).mp3

    &#xA;

    Can you help me figure out what it is I'm doing wrong ?&#xA;Thanks a million in advance.&#xA;Best,

    &#xA;

    P.S. : i also get earlier in the terminal's output basename: extra operand ‘.mp3’...like my whole code is wrong....?

    &#xA;