Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (112)

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

  • ffmpeg x264 encoding cpu usage

    4 décembre 2016, par Amin Fazlali

    I want to convert a mkv formatted video to mp4, using the ffmpeg application.
    and for that I ran below command in terminal :

    ffmpeg -y -i c38a4990774b3c23.mkv -c:v libx264 -c:a aac -r 25 -strict -2 -map_metadata -1 -movflags faststart -vf "crop=1920:800:0:4, scale=iw*min(426/iw\,240/ih):ih*min(426/iw\,240/ih), pad=426:240:(426-iw*min(426/iw\,240/ih))/2:(240-ih*min(426/iw\,240/ih))/2, setsar=sar=1" output.mp4

    I have compiled ffmpeg with —enable-pthread configuration

    when I run this command on my personal PC with a 3.2GHz quad core cpu, it uses 60% of overall cpu process and encode video with 150fps ; but when I run this command on a production server with 8 2.4GHz dual core cpu (16 core) it only uses up to 20% of overall cpu process and encode video with 97fps.

    I have also tried ramdisk but I got no performance improvement.

  • Why am I receiving an error about unterminated %{} near '{localtime' when using ffmpeg

    28 juin 2019, par Randy Bailey

    I am using a line of code to try to record a camera and overlay some timestamp data while im at it.

    I have attempted placing a / and an ’ in various locations around the complaint but cant seem to fix the code. The video records fine but there is no timestamp data overlayed.

    ffmpeg -i https://CAMERAURL -vf drawtext=fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf:text='%{localtime:%T}':fontcolor=white@0.8:x=7:y=700 -vcodec libx264 -bsf:a aac_adtstoasc /home/test/StreamDriveway_$now.mp4

    Ideally the code should record with no issues. This is a screenshot of whats going in in terminal https://i.imgur.com/mnFmNtd.png

  • ffmpeg says "No such file or directory" [closed]

    10 octobre 2020, par srvnk

    Kindly see this screenshot

    


    ffmpeg says no such file or directory but the file exists. I want to extract a frame/thumbnail from that video (pre1.mp4). I have installed ffmpeg by sudo snap install ffmpeg. My ubuntu version is 18.04.4 LTS. I also tried ffmpeg -ss 00:00:01 -i pre1.mp4  -vframes 1 -q:v 2 output.jpg but same error.

    


    I am using php to generate the thumbnail. I tried functions - exec, shell_exec and system to run the command but same error. After getting error I tried to run the command in terminal but the error is same.