Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

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

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

Sur d’autres sites (7170)

  • ffmpeg : how to convert iphone4 720p video into similar quality Flash video ?

    5 septembre 2011, par Sajee

    What are the proper arguments to ffmpeg to covert an iphone4 720p video into the similar quality Flash video ?

    I tried the following which resulted in a low quality Flash video :

    ffmpeg movie.mov movie.flv

    What are the right switches ?

  • frame extracted from a video using opencv or ffmpeg is vague, picture i snip from video is clear

    15 avril 2024, par user11317826

    I record a video from roadside, and I want to recognize plate license in video. but I find that if I extract every frame from video using python, the frame is too vague to recognize.

    


    I have tried opencv and ffmpeg -i input.mp4 -ss 00:00:10.000 -vframes 1 output.png
`

    


    enter image description here

    


    but if I snip video every second the picture is clear

    


    enter image description here

    


    what's the reason of this phenomenon, how can I fix it

    


    I have tried frame average, it didn't work

    


  • How to replace the video track of a part of a video file ?

    17 juin 2019, par yukashima huksay

    I have an mp4 file like this(same format but longer) :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'N1.2.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: mp42mp41
       creation_time   : 2018-10-31T13:44:21.000000Z
     Duration: 00:28:54.21, start: 0.000000, bitrate: 10295 kb/s
       Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080, 9972 kb/s, 50 fps, 50 tbr, 50k tbn, 100 tbc (default)
       Metadata:
         creation_time   : 2018-10-31T13:44:21.000000Z
         handler_name    : ?Mainconcept Video Media Handler
         encoder         : AVC Coding
       Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 317 kb/s (default)
       Metadata:
         creation_time   : 2018-10-31T13:44:21.000000Z
         handler_name    : #Mainconcept MP4 Sound Media Handler

    I also have another video file that is 3 minutes long. and has no audio. What is the fastest way to encode the other video in a way that it is encoded like my main video and then replace the last three minutes of the video track of my original video with this ?

    In other words.
    I have video A that is 1 hour long. With the encoding shown above.

    I have video B that is 3 minutes long with no audio. with a random encoding.

    I want to have video C with the same encoding and same audio as A. But it’s video track would be the first 57 minutes of A + B(which is 3 minutes).

    I want to do this as fast as possible so I would like to not re encode A.

    I know how to concatenate two videos, I use this command :

    ffmpeg -f concat -i files.txt -c copy res.mp4