Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (105)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (8285)

  • Is this transcoding the video ?

    2 août 2018, par Michael Minton

    I have an application used in government and subject to regulation that prevents transcoding or altering the video quality in any way.

    I’m attempting to utilize FFmpeg to change a video into an MP4 by copying the raw streams to a new container.

    This is the command being used :

    ffmpeg.exe -y -i INPUT.ASF -c:av copy OUTPUT.MP4

    Notice the -c:av copy. The FFmpeg documentation says, “a special value copy (output only) to indicate that the stream is not to be re-encoded.“

    Visually the videos before and after appear to be identical quality with no pixelation on the ships.

    Is this altering the video quality or could this be considered transcoding ?

  • Change gray pixel to black pixels in video

    12 janvier 2023, par yabru

    I want to change every gray pixel in my video with the (r,g,b) 158,158,158 to black 0,0,0

    


    I've tried the solution of THIS post, but backwards. I just do not understand the syntax.

    


    ffmpeg -y -I my_video.mp4 -c copy -c:v libx264 -preset ultrafast -vf "yadif,format=rgb24, lutrgb=r='if(eq(val,158),0,val)':g='if(eq(val,158),0,val)':b='if(eq(val,158),0,val)'" my_video_fixed.mp4

    


    ^ doesn't change anything

    


    could anyone help me modify my command (with an explanation of the solution) :)

    


    version : ffmpeg version 5.1.2

    


  • How to make ffmpeg automatically fill frames ?

    8 mai 2018, par Chen Yang

    I want to use ffmpeg to convert a sequence of images to a video, the images are got in realtime, the interval of getting image is changeable, maybe i get next image in 1 second or even 1 millisecond.
    I want the target video in a special fps(like 100), now my implement is creating a loop, which fade ffmpeg last image then sleep(like 10ms).

    Do you guys know some options could let ffmpeg fill frames automatically ?

    If that option do exist, i wonder is that possible to make video real fps is half of it is claimed.

    My ffmpeg command likes follow :

    ffmpeg -f image2pipe -r 100 -i pipe:0 -f flv -r 100 pipe:1