Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (53)

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

  • ffmpeg.exe - Entry Point Not Found

    8 février 2018, par Mikkel Bachmann

    I know there’s a lot of "Entry point not found" posts ; But i find that they don’t fit on my problem.

    When i try to run ffmpeg i get this error message :

    Entry point not found

    but the catch is that i only get the message is i run ffmpeg from my server application or from the folder where the server application is located e:\StreamServer2\
    If i run from an other folder eg. e:\StreamServer2.BAK\ there are no problem.
    the same goes for when i run the StreamServer located in StreamServer2.BAK

    The ffmpeg.exe is a copy of the same file.

    I have tried to delete ffmpeg.exe and copy a new to the folder. As i assumed that it was ffmpeg.exe that was damaged when we moved the server to our new data center. but that did not make any difference.

    I am running ffmpeg with thise parameters :

    ffmpeg.exe -analyzeduration 0 -fpsprobesize 0 -rtsp_transport tcp -i rtsp://addrOnIpCam -g 52 -movflags frag_keyframe+empty_moov -b:v 64k -q 5 test.avi

    and from server application :

    ffmpeg.exe -analyzeduration 0 -fpsprobesize 0 -rtsp_transport tcp -i rtsp://addrOnIpCam -g 52 -movflags frag_keyframe+empty_moov -b:v 64k -q 5 -an -

  • libavutil : Adds gray floating-point pixel formats.

    3 août 2018, par Sergey Lavrushkin
    libavutil : Adds gray floating-point pixel formats.
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/pixdesc.c
    • [DH] libavutil/pixfmt.h
    • [DH] libavutil/version.h
    • [DH] tests/ref/fate/sws-pixdesc-query
  • Ffmpeg - Exclamation Point Stopping Watermark

    25 août 2018, par user5947524

    I am using the code below to automatically watermark videos in a folder :

    for %%a in ("C:\Users\Work\Desktop\Redo\*.mp4") do (
      for /F "delims=" %%I in ('ffprobe -v quiet -show_entries stream^=width -of csv^=p^=0:s^=x %%a') do set "codec=%%I"
      ffmpeg -i logo.png -y -v quiet -vf scale=!codec!*0.25:-1 scaled.png
      ffmpeg -i "%%a" -vf "movie=scaled.png [watermark]; [in][watermark] overlay=10:main_h-overlay_h [out]" "C:\Users\Work\Desktop\Redo Done\%%~na.mp4"
    )

    Some of the videos fail to watermark and give the similar error below :

    C:\Users\Work\Desktop\Redo\Arcade_h-overlay_h [out]: No such file or directory

    I found out all videos with exclamation points (!) in the name do this.

    How can I get these videos to watermark with an exclamation point in the title ?