Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (22)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (4871)

  • Record UDP stream with ffmpeg video+klv-data

    26 septembre 2017, par mfreiholz

    I’d like to record an MPEGTS UDP stream with ffmpeg binary to disk.

    This works in a stable network :

    ffmpeg.exe -i "udp://224.10.10.10:15006?multicast=1&timeout=360000000&reuse=1" -f mpegts -map 0:0? -map 0:1? -map 0:2? -c copy "C:/test.ts"

    The entire stream is saved to test.ts.

    Live Environment

    In my live environment it is possible that the connection is very bad or is not available at all (cable disconnect, device reboot, ...) for a few minutes. I want ffmpeg to simply continue writing upcoming frames to *.ts file. I don’t need the lost frames.

    Currently the following errors appears, if there was a too long brake between UDP frames :

    [mpegts @ 00000000003cf920] Application provided invalid, non monotonically increasing dts to muxer in stream 1: 11606399 >= 2084534
    av_interleaved_write_frame(): Invalid argument

    It looks like to be a problem with the timestamp. My idea would be to tell FFMPEG to ignore those errors and simply continue.

    Is it even possible with the ffmpeg binary or do I have to solve the problem with a custom C/C++ implementation using the library ?

    Thank you

    Update 1

    If I only record the video stream -map 0:0? and not the others it seems to work. Looks like the problem is associated with the second stream (No.1) which is KLV encoded data.

  • Anomalie #3609 (Fermé) : Problème avec les externals

    29 novembre 2015, par b b

    Il n’y a que 7 archives dans le XML et elles sont bien listées dans le privé sur la page du dépôt ecrire/ ?exec=depot&id_depot=X. Le problème est du côté de smart paquets, l’outil qui génère les xml du côté de la zone. Je ferme le ticket et t’invite à signaler le problème sur la liste spip-zone.

  • Compress / Reduce file size of VIDEO

    2 avril 2014, par rishiJasapara

    I currently have a system in place where the user can upload a MP4 file and the same is available for download on mobile devices. But sometimes, the videos are more than 5MB in size and back here in my country, majority of the population uses 2G. So it typically takes 15-20 minutes to download large videos.

    Is there any way in which I can compress MP4 files while they are being uploaded and then save them in the folder so that instead of a 5MB video, I get a 2MB video which takes relatively less time to download. File format will always be MP4 only.

    I know of FFMPEG-PHP, but as far as I read, it only supports extracting information of the video and for video conversion. I could not find any reference for VIDEO COMPRESSION. I would be grateful if you could guide me on this.