Recherche avancée

Médias (91)

Autres articles (63)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (7119)

  • Videos encoded by FFMPEG (mpeg codec) cannot be played on iOS14

    28 septembre 2020, par vanste25

    I have a piece of code that uses ffmpeg with default mpeg codec to merge multiple videos and audio songs.

    


    ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "concat=n=2:v=1:a=1" -f MOV -vn -y output.mp4


    


    Everything worked on iOS13 and after the update to iOS14, videos are black and cannot be played by any player. Sound is there and it's good.
I tried to switch to h264 and it works good, but as you already know, h264 is under GPL and it is expensive and requires code to be open sourced which is not acceptable for me.

    


    What was changed ? Anything in release notes ?
Is that a bug ? Or a feature ?

    


    Thanks

    


  • How to concatenate two or more videos with different framerates in FFMpeg ?

    10 septembre 2021, par Tik0

    I have multiple (> 100) videos with various constant frame rates (e.g. 7 FPS, 8 FPS, 16 FPS, 25 FPS) but same codecs and resolutions.&#xA;I want to concatenate (using ffmpeg concat) them into one video with a variable frame rate (VFR), so that the concatenated video plays every part with the respective framerate.&#xA;Until now, I only managed to concat all files to a single video with a constant (CFR) of eg. 25 FPS.&#xA;This as the downside, that all parts with <25 FPS play faster.&#xA;I use -vsync 2 -r 25 to try to tell ffmpeg to use VFR with a maximum FPS of 25, but mediainfo reports a video with CFR of 25 FPS.&#xA;If I just use -vsync 2 (without -r), I get a VFR video output, but, mediainfo reports that it is a video with minimum 11.9 FPS and maximum 12 FPS (so kind of mean FPS of all videos).&#xA;How do I concat various videos to a single VFR video ?

    &#xA;&#xA;

    Here is the command I used :

    &#xA;&#xA;

    ffmpeg -y -vsync 2 -r 25 -f concat -safe 0 -i /tmp/filelist.txt -c:v h264_omx -pix_fmt yuv420p -b:v 524231 -maxrate 524231 -bufsize 1048462 -an /tmp/${DATE}.mp4&#xA;

    &#xA;&#xA;

    I use ffmpeg version 3.2.12-1~deb9u1&#x2B;rpt on (Raspbian 6.3.0-18&#x2B;rpi1&#x2B;deb9u1

    &#xA;

  • Encoding all videos to MP4 and lowering resolution with Ubuntu

    14 avril 2014, par Mauro Valvano

    I have a web server based on Ubuntu 12.04, the user can upload a video (whatever the format/container/codec it is) then i want to convert it to an MP4 video. I tried ffmpeg without good result (and now it is also deprecated).

    How i can do this ?

    The important is also to reduce the resolution for HD videos for reduce video's size.

    Thank you in advance.