Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (62)

  • 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

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

  • Les images

    15 mai 2013

Sur d’autres sites (12127)

  • avcodec_find_decoder(CODEC_ID_MPEG2TS) always NULL

    21 janvier 2012, par mmoment

    I want to decode an incoming MPEG2-Transport Stream and then encode it to h264.
    Everything works fine with the h264 Codec, but the problem is that libavcodec doesn't seem to recognize the MPEG2-Transportstream. I am basically doing it analogue to the official example :

    http://ffmpeg.org/doxygen/trunk/decoding__encoding_8c-source.html

    ptrCodec = avcodec_find_decoder(CODEC_ID_MPEG2TS);

    ptrCodec is always NULL. Could anybody help me with this ?

  • I am using ffmpeg.wasm library and I can compress all type of videos except mov files

    14 décembre 2022, par Martí Serra Molina

    I am using ffmpeg.wasm library and I can't compress mov files in the browser. I don't know if there is a way to solve it. If you try it in their official website it doesn't work either : https://ffmpegwasm.netlify.app/#demo.

    


    How could I compress all videos in the browser without having any problem. I can't use the server because there are a lot of users and the server would have to do too much work.

    


  • Is it possible to cut a online streaming video with ffmpeg ?

    12 mai 2019, par Sam Zorn

    Is ffmpeg able to cut out a certain part of an online video stream ? for example, I would like to cut out only the 40 - 55 minutes from a one-hour
    online streaming video.

    I am aware of how I can do this with a local one. so for example :

    ffmpeg -ss [start] -i in.mp4 -t [duration] -c:v libx264 -c:a aac -strict experimental -b:a 128k out.mp4

    the little bit I know about codecs etc tells me that it either takes disproportionately long or is not possible at all...

    if someone could give me some advice, maybe even a short explanation, I would be very grateful... :)