Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (16)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (1784)

  • Android mp4 remove rotation and rotate the video stream

    4 mars 2015, par Mathijs Segers

    I’m having some issues trying to remove the rotation value of Android video’s.
    For some reason convertion tools in the cloud cannot seem to handle android’s rotation value correctly. f/e I have a portrait video recorded in 1080x1920 (so the file’s headers tell me it’s actually 1920x1080 with rotation : 90).

    So now I’m trying to convert these video’s to an actual 1080x1920 format when they have this rotation value but i’m kind of stuck, probably using the wrong search terms on SO and Google.

    In the hope of making things clear I’ve actually added some ffmpeg libs to android following these steps, of course with some changes to parameters. I’m building this on a Mac and this all works fine now.
    http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/

    Now the following, I have no real clue how these libs work and how to use them or which I actually need or if I even need them at all.

    Is there anyone who can point me in the right direction of solving my issue ? Basicly the video’s are on my android filesystem and I can access them fully, before uploading I want to check the values and remove and rotate the video’s if needed.

  • Error using avisynth script as input to ffmpeg

    5 avril 2015, par ComputerVisioner

    I’ve searched the internet and haven’t found a solution. I hope this question does not come off as a duplicate.

    I have the following files in the same folder :

    • ffmpeg.exe (32-bit version)
    • IN.mp4 (video codec - AVC , audio codec - PCM)
    • RUN_FILE.bat and RUN_AVS.bat batch files
    • SCRIPT.avs (avisynth script file)
    • MSharpen.dll (sharpening filter for avisynth)

    The text within RUN_FILE.bat :

    ffmpeg -i "IN.mp4" -c:v libx264 -crf 24 -c:a libmp3lame -aq 2 OUT.mp4

    The text within RUN_AVS.bat :

    ffmpeg -i "SCRIPT.avs" -c:v libx264 -crf 24 -c:a libmp3lame -aq 2 OUT.mp4

    The text within SCRIPT.avs (3 lines) :

    LoadPlugin("D:\MSharpen.dll")

    DirectShowSource("D:\IN.MP4")

    MSharpen(15,150)

    If I try loading the avisynth script with an external program such as media player classic it works fine (and sharpens the video frames).

    Going to the command line and running RUN_FILE.bat works as expected, however running RUN_AVS.bat I get the following error (see screenshot) :

    error message

    I find this confusing as ffmpeg is configured with --enable-avisynth.

    I’d appreciate help with this - This is part of a larger and very important project (automatically scanning a folder with hundreds of video files, sharpening and re-encoding them to another folder with the same filenames).

  • Adjusting video length to fit audio length in FFmpeg

    8 avril 2015, par Spreadys

    This has been driving me mad !
    I have video.avi, a raw uncompressed video with a duration of 6mins
    I have audio.wav, a raw uncompressed audio with a duration of 9mins

    I need to mux these together, but map the timing information from the audio.
    Using Vsync 2 I would hope that video frames get duplicated in order to do this.

    My current (failed) attempt is

    ffmpeg -i video.avi -i audio.wav
    - c:v rawvideo -c:a copy
    - vsync 2 -map 0:0,1:0 -map 1:0,1:0
    newvideo.avi

    My understanding is that the -map first designates what file:stream, and this is followed by the file:stream to be used for timing information.

    I have attempted all my usual research methods in an attempt to avoid asking but it is still resulting in the avi container holding two streams with the video length unchanged.
    If anyone can shed some light on my errors, I would be very grateful....or if you need further info - please ask !

    Thanks
    David

    Any guidance on what other information may promote some suggestions to where i’m going wrong also appreciated.
    Thanks