Recherche avancée

Médias (91)

Autres articles (93)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (12607)

  • enc_recon_frame_test : don't print an error on EOF.

    8 novembre 2024, par Ronald S. Bultje
    enc_recon_frame_test : don't print an error on EOF.
    

    Before :
    $ make tools/enc_recon_frame_test
    $ tools/enc_recon_frame_test /Movies/cif/bus_cif.y4m libx264 'tune=psnr'
    Error submitting a frame for encoding

    After :
    All 150 encoded frames match

    • [DH] tools/enc_recon_frame_test.c
  • FFMPEG disabled automatic compression file

    2 novembre 2017, par HenrykVIII

    How to disable FFMPEG in its own compressed file compression, which does not come from the program code. This is when the file is merged (as the first task) or file stabilization (as the first task). I lose on file quality by reducing itself from 16k to 7k birate files (in parts) input.

    So, without loss, I have to merge files or stabilize them so that they do not change ?

    I will add that the effect does not affect every film - only the majority. None of which come out of a duel completely and eg for 16.2k input birate have output 16k birate .. What is no visible loss.

    But the loss from 16k to 7k is already visible on the details and especially the movies shot at night and in the wrong light.

    I enclose the wrapper code c # :
     
    The same situation occurs when the first task is to combine files :

    Can anyone help ?? : (((

  • ffmpeg audio voices only on right side

    9 octobre 2022, par xavi

    I am converting some high quality movies to lower quality with this command :

    


    ffmpeg -i video.mp4 -vcodec libx265 -crf 28 output_video.mp4


    


    The output result causes that (in some cases) audio of voices are only reproduced on the right side of the earphones. I have to execute these two commands to have the proper audio :

    


    ffmpeg -i output_video.mp4 -map 0:a:0 -async 1 audio.mp3
ffmpeg -i output_video.mp4 -i audio.mp3 -c:v copy -map 0:v:0 -map 1:a:0 output_video_with_audio.mp4


    


    I have tried adding mapping parameters (-map 0:v:0 -map 0:a:0 -async 1) to the first command, but I have the same audio problem result.

    


    What can be causing this problem ?