Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (75)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (6545)

  • Encoding video for PS4 Pro using ffmpeg

    16 février 2023, par Calum J Craig

    I'm trying to encode video to watch on my PS4 Pro (so want to be able to handle 4k as well as 1080p).

    


    At first I had success with the default ffmpeg .mp4 command just using this :

    


    ffmpeg -i .mkv .mp4

    


    This was fine for the first batch of 1080p videos I encoded. But, then it started to fail me - the videos would encode but when I tried to watch them on the PS4 the file would start to play with only audio, no video, play for a few seconds then fail and become unusable.

    


    I checked and apparently the PS4 requires the H.264 codec. So, I installed libx264-dev and tried :

    


    ffmpeg -i .mkv -vcodec libx264 .mp4

    


    I got the same result - the video encoded and started to play on the PS4 with only audio then failed.

    


    Any suggestions for what I am missing / doing wrong ? This is the first time for me to use ffmpeg so I am not familiar with its various features / parameters. I'm running Ubuntu 22.04.

    


  • Chromakey filter to display transparent keyboard while recording game screen using ffmpeg

    31 janvier 2020, par captain_majid

    I’m trying to display a transparent keyboard like this one (he is using OBS studio) :
    https://www.youtube.com/watch?v=6RCXyh2aICY

    So I’m setting all "NohBoard v1.2.2" colors to green (0x00FF00), except the letters, then :

    ffmpeg -y -f gdigrab -framerate 30 -draw_mouse 0 -i title="NohBoard v1.2.2" keyboard.mp4
    ffmpeg -y -i keyboard.mp4 -c: png -vf "chromakey=0x00FF00:similarity=.200" keyboard1.mp4
    ffmpeg -y -i gameplay.avi -i keyboard1.mp4 -filter_complex "[1:v] scale=560x180 [kb]; [0:v][kb] overlay=x=W-w-520:y=H-h-0 [done]" -shortest -map [done] test.mkv

    Everything works great so far, but can I use 1 command for this ?

  • Wowza RTMP to RTSP

    3 août 2016, par Nmas

    We’re using a Raspicam to stream live video to a client using Wowza Streaming Engine. We use FFMPEG to encode and send to Wowza and we can succesfully watch the RTMP stream using JWPlayer. This is the FFMPEG command used :

    ffmpeg -t 0 -s 320x240 -f video4linux2 -i /dev/video0 -b:v 250k -tune zerolatency -preset ultrafast -f flv -r 15 rtmp://wowzaaddress:1935/live/live

    To be able to watch the stream on mobile devices we want to use RTSP or HLS which Wowza provides links to, however when we use those links (provided on the Test Player) nothing happens and we can’t even open them to test for example in VLC. We have already added the extra ports on our web server to see if that was the problem and still didn’t work.
    Does anybody know what the problem is or what could we be doing wrong ?