Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (87)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6853)

  • There are audio gaps when I join multiple .ts files into a single .mp4 file

    2 juin 2020, par woopwoop399

    After I merge multiple .ts files into a single .mp4 file, when I play this file, I hear short gaps in audio. The gap happens always at same places, but has only about 50% chance of happening, it feels like video player doesn't manage to decode something in time. This gap happens when I play the file with mpc-hc videoplayer, but doesn't happen with vlc player. I'd switch, but mpc-hc worked flawlessly for every file I opened so far for years, so I think the .mp4 file is somehow malformed.

    



    I used this command ffmpeg -f concat -safe 0 -i mylist.txt -c copy sm22413936-ts.mp4, all necessary files are here https://files.catbox.moe/9cl0pm.zip

    



    I asked about this here previously https://superuser.com/questions/1520894/there-are-audio-gaps-when-i-join-multiple-ts-files-into-a-single-mp4-file , but first solution required reencoding, and my solution caused desync really noticeable on long videos.

    



    I suspect that this .mp4 is muxed wrong or something, maybe I need to remux it somehow.

    


  • ffmpeg resulting in no audio and unplayble video

    9 juillet 2020, par Chris James Champeau

    I am trying to get ffmpeg to work as expected however I am having all kinds of trouble getting it to work.

    


    I need to output a webm and h264 for web play. However, the command I am using, while it used to work a few years ago, does not work at all now.

    


    Both my webm and h264 do not have audio, and neither will play in any browser.

    


    My command for webm is :

    


    ffmpeg -y -i "$KMVAR_File" -c:v libvpx -crf 24 -b:v 1000k -vf scale=720:-2 -c:a libvorbis "$KMVAR_webmPath"


    


    and my command for mp4 is :

    


    ffmpeg -y -i "$KMVAR_File" -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 3.0 -crf 32 -b:v 1M -minrate 1M -maxrate 1M -bufsize 2M -vf scale=720:-2 -c:a aac -strict experimental -movflags +faststart "$KMVAR_mp4Path"


    


  • How to use FFMPEG for a whole directory ? (Example code i found on a different thesd doesn't work for me) [closed]

    17 juillet 2020, par TrainNutter

    I have discovered that FFMPEG is a thing and I'm wondering how i can compress many files in 1 bat file execution and that the newly compressed filed keep the same name as the Raw files and subsiquently replace the raw file in MP4 format

    


    I am wondering this as i have over 700GB of Raw videos spanning over 3+ years of recording youtube videos (just for fun) and that my 2TB hard drive is now almost full lol

    


    I Tried using this example but it didn't work for some reason

    


    for i in *.mp4;
    do name=`echo "$i" | cut -d'.' -f1`
    echo "$name"
    ffmpeg -i "$i" "${name}.mp4"
done


    


    Edit : I am using Windows 10