Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (74)

  • 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 ;

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (9696)

  • Combine an image into audio file and make a video file in android programmatically

    20 mars 2015, par jagdish

    I read the tutorial of ffmpeg libray to combine the image into audio file.but is more complex and getting error environment value is null.I googled a lot but didn’t found any solution.

    Is there any way in android we can merge an image in audio file and make a video file.

    Thanks in advance....

  • ffmpeg : create video from images [duplicate]

    22 juillet 2021, par zuluk

    I am trying to create a video from my images on my Windows 10. The images are named lu_1.jpg, lu_2.jpg and so on up to 1000. Now I tried this code in a .bat file to get the video :

    


    ffmpeg -framerate 1 -i lu-%d.jpg -c:v libx264 -r 30 ../lu_output.mp4


    


    Unfortunately I get the following error from cmd :

    


    lu-v: No such file or directory


    


    The .bat file is placed in the same folder as the images.

    


    Could someoene please tell me how to solve this issue ? Thanks in advance.

    


  • Is there a need to apply Deblocking filter, when I have all Intra frames Encoding

    31 août 2015, par Codec Guy

    I am working on H.264 Deblocking Filter and need some clarity.

    • While designing an all Intra Encoder and Decoder, is it mandatory to
      add Deblocking Filter block in the Codec.
    • If deblocking filter is not enabled for all Intra Encoding does that
      cause any PSNR degradation(I checked few streams the PSNR almost
      remained the same).
    • If I am encoding all my frames using Intra prediction, does that also
      have any blocking artifacts.

    Thanks in advance