Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (31)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Anomalie #4174 : Affichage du logo des auteurs dans le formulaire de connection

    8 septembre 2018, par nico d_

    NB : j’ai pas mis un border-radius à 50% pour faire un logo rond, parce que le logo qui remonte ici n’est pas recadré en carré, juste redimensionné.
    Il peut donc avoir une forme rectangulaire et dans ce cas, un border-radius à 50% en fait une ellipse, c’est assez moche.
    Du coup c’est un simple border-radius de 6px.
    Je suis pas remonté plus haut dans le code, mais y’a peut être moyen de le recadrer.

  • Need Help PRO ffmpeg Python input multi video type in folder for overlay logo and output to only mp4 with same or random name please

    29 août 2021, par noobherepleasehelpme

    I need help please
I'm new to python and ffmpeg.

    


    Now I use this basic command To use ffmpeg add a logo overlay to the video file.

    


    import ffmpeg
main = ffmpeg.input('1.mkv')
logo = ffmpeg.input('logo.png')
(
    ffmpeg
    .filter([main, logo], 'overlay', 10, 10)
    .output('2.mp4')
    .run(overwrite_output=True)
)



    


    It works very well, I found it on here.
But is it possible to have ffmpeg to input all mp4 or mkv files in a folder ?

    


    or command ffmpeg Find all types of video files in the folder. (if possible)

    


    and insert the logo with filter overlay as usual

    


    and output to the original file name or random name

    


    thanks please help me

    


  • ffmpeg starts too slow when using ip camera (the same as using OpenCV)

    15 mars 2015, par Turtle

    Here is my code :

    ffmpeg -i http://192.168.0.101:8889/video?dummy=param.mjpeg out.mjpg

    When I run this command, it will immediately print below :

    ffmpeg version N-70223-g7296716 Copyright (c) 2000-2015 the FFmpeg developers
     built with gcc 4.9.2 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-lzma --enable-decklink --enable-zlib
     libavutil      54. 19.100 / 54. 19.100
     libavcodec     56. 26.100 / 56. 26.100
     libavformat    56. 23.105 / 56. 23.105
     libavdevice    56.  4.100 / 56.  4.100
     libavfilter     5. 11.101 /  5. 11.101
     libswscale      3.  1.101 /  3.  1.101
     libswresample   1.  1.100 /  1.  1.100
     libpostproc    53.  3.100 / 53.  3.100

    However, it takes almost twenty seconds before showing next line, and it prints this warning :

    [mjpeg @ 0000000002c4fec0] Format mjpeg detected only with low score of 25, misdetection possible!

    Then it prints this :

    Input #0, mjpeg, from 'http://192.168.0.101:8889/video?dummy=param.mjpeg':
     Duration: N/A, bitrate: N/A
       Stream #0:0: Video: mjpeg, yuvj420p(pc, bt470bg/unknown/unknown), 640x480 [SAR 1:1 DAR 4:3], 25 tbr, 1200k tbn, 25 tbc
    Output #0, mjpeg, to 'a.mjpg':
     Metadata:
       encoder         : Lavf56.23.105
       Stream #0:0: Video: mjpeg, yuvj420p(pc), 640x480 [SAR 1:1 DAR 4:3], q=2-31,
    200 kb/s, 25 fps, 25 tbn, 25 tbc
       Metadata:
         encoder         : Lavc56.26.100 mjpeg
    Stream mapping:
     Stream #0:0 -> #0:0 (mjpeg (native) -> mjpeg (native))
    Press [q] to stop, [?] for help
    frame=  195 fps=0.0 q=24.8 size=    1022kB time=00:00:07.80 bitrate=1073.6kbits/
    frame=  199 fps=185 q=24.8 size=    1043kB time=00:00:07.96 bitrate=1073.6kbits/
    frame=  203 fps=125 q=24.8 size=    1064kB time=00:00:08.12 bitrate=1073.6kbits/

    What’s worse, when I am using OpenCV, the open of the VideoCapture also takes the same long time !

    #include "opencv2/opencv.hpp"
    #include <iostream>
    using namespace std;
    using namespace cv;

    int main(){
       cout&lt;&lt;"Start"&lt;/192.168.0.101:8889/video?dummy=param.mjpg");
       cout&lt;&lt;"End"&lt;code></iostream>

    20s after printing "start", it prints "end".

    I am using ffmpeg on win7 64 bit downloaded from here.

    Any idea will be appreciated !