Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (68)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8479)

  • Is it possible to "lossless"-ly speed up a video ?

    15 novembre 2020, par Synn Ko

    Might sound like a strange question, but hear me out. I have hours of video I want to cut up and edit together, but a lot of it is just junk I don't need. I don't want to lose any quality, so I use LosslessCut.

    


    The problem for me is that it's... A LOT of footage, and I don't need to see every single second of it. It would be nice if LosslessCut had a button to change the speed of the playback, but it doesn't have that.

    


    So another idea would be to speed up all the videos in advance with ffmpeg, cut them up using LosslessCut, then change the remaining clips back to their original speed using ffmpeg again. Is it possible to speed up a video and change it back to its original speed without losing any quality or changing the video ?

    


  • ffmpeg distributed transcoding

    23 juillet 2020, par Kalava

    I have a 100GB 1080p video file which I want to transcode to 720 h264. Since transcoding is computationally expensive, i wanted to transcode smaller portions of video & stitch it back together. Can we use ffmpeg seek to transcode 10seconds of video & stitch it back together ? When I am reading through blogs they mention to go with GOP. I want to get opinion with below approach. Any help is appreciated.

    


    ffmpeg -ss 00:00:00 -i 80Gb.mp4 -t 10  -s 720x720 -c:v libx264 -c:a aac chunk1.mp4 
ffmpeg -ss 00:00:10 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk2.mp4
ffmpeg -ss 00:00:20 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk2.mp4


    


    ...

    


  • Parsing NAL units using FFMPEG

    6 novembre 2013, par 2ndlife

    I am new to MPEG-4 and taking baby steps to learn it. I am using FFMPEG as reference.

    1. I understand that all mpeg-4 are encoded into NAL units and wrt to FFMPEG av_read_frame() function returns one NAL unit, Am I right ? Is frame a NAL unit ? (though it can be a combination of multiple NALs)

    2. I also saw that h264_parser.c implements a function called h264_parse which is calling parse_nal_units() inside, If i need to get NAL units how can I use this parse_nal_units from my main function ?

    3. What is av_parse_Parse2() function do ? does it return decoded NAL units ?

    4. OR FFMPEG has -vbsf h264_mp4toannexb switch to dump raw NAL units, Can somebody help me understand how I can use the same from my main function ?

    Please help me out here...
    - ash5