Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11608)

  • What's the Netflix / vmaf result stand for ?

    1er septembre 2021, par Hanamaki

    I ran the vamf between two mp4 files, and I got the result as :

    


    &#xA;<metric min="0.294617" max="0.999526" mean="0.902007"></metric>&#xA;<metric min="0.559920" max="0.994265" mean="0.918411"></metric>&#xA;<metric min="0.372149" max="0.999764" mean="0.907398"></metric>&#xA;<metric min="0.226668" max="0.999331" mean="0.915917"></metric>&#xA;<metric min="0.224996" max="1.010998" mean="0.881612"></metric>&#xA;<metric min="0.000000" max="32.177296" mean="6.365028"></metric>&#xA;<metric min="0.000000" max="145.765976" mean="7.202581"></metric>&#xA;<metric min="0.008498" max="0.910434" mean="0.247533"></metric>&#xA;<metric min="0.023310" max="0.990787" mean="0.457384"></metric>&#xA;<metric min="0.029596" max="0.995830" mean="0.529965"></metric>&#xA;<metric min="0.032303" max="0.997724" mean="0.586864"></metric>&#xA;<metric min="0.000000" max="100.000000" mean="71.630354"></metric>&#xA; &#xA;

    &#xA;

    I got the "vif" from the paper "IMAGE INFORMATION AND VISUAL QUALITY". However,what's the meaning of 4 scales of vif ?&#xA;And any detail introduction about this result ? Thank you very much.

    &#xA;

  • how to play audio output to a device using ffmpeg's avdevice library ?

    18 septembre 2022, par sssssss

    How can I use the ffmpeg's avdevices c library to output audio to an audio device (specifically alsa). All I could find is its doxygen and the only useful thing I was able to take out of it is, quote

    &#xA;

    "the (de)muxers in libavdevice are of the AVFMT_NOFILE type (they use their own I/O functions). The filename passed to avformat_open_input() often does not refer to an actually existing file, but has some special device-specific meaning - e.g. for xcbgrab it is the display name."

    &#xA;

    but I don't understand where do I specify AVFMT_NOFILE and where do I specify which device I want use.I see how I can get an 'AVOutputFormat' pointer but then what do I do with it ?

    &#xA;

    update :&#xA;so now i found the function 'avformat_alloc_output_context2' so my code looks like this :

    &#xA;

    AVPacket pkt = av_packet_alloc();&#xA;avformat_alloc_output_context2(&amp;ofmt_ctx, NULL, "alsa", NULL);&#xA;avformat_new_stream(ofmt_ctx, NULL);&#xA;&#xA;while(av_read_frame(fmt_ctx, pkt) == 0){&#xA;    av_write_frame(ofmt_ctx, pkt);&#xA;}&#xA;

    &#xA;

    fmt_ctx is the input file's AVFormatContext.

    &#xA;

    but I am still getting an error '[alsa @ 0x555daf361140] Invalid packet stream index : 1' what am I missing ?

    &#xA;

  • ffmpeg - Adding and Removing Subtitles without Changing the Video

    28 septembre 2018, par MeCe

    I’m trying to embed subtitles into video and removing the subtitles back again without changing the video, meaning I want the output video to be the same with the original video.

    I’m using the following command to embed the subtitles

    ffmpeg -i original.mp4 -i original.srt \
    -c:v copy -c:a copy -c:s mov_text \
    -map_metadata 0:g -map_metadata:s:v 0:s:v -map_metadata:s:a 0:s:a \
    -movflags +faststart -threads 8 \
    output.mp4

    To remove the subtitles,

    ffmpeg -i output.mp4 \
    -c:v copy -c:a copy \
    -map_metadata 0:g -map_metadata:s:v 0:s:v -map_metadata:s:a 0:s:a \
    -movflags +faststart -threads 8 \
    -sn \
    removed.mp4

    The output is almost the same but I couldn’t figure out what would cause the difference. When I compare the binaries, almost all of the differences are

    original: 0xF3
    removed: 0xF4

    The bytes are incremented by 1, I think only in the header.

    Can you help ? Thank you in advance.