Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (59)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (15247)

  • Unable to FW/RW video after remuxing multiple mpeg-ts to mp4

    21 juillet 2022, par Jona

    I have written custom code to concat multiple mpeg-ts files into an mp4 video file. I've used as reference the remuxing code sample.

    


    I'm having issues with the final output. I'm unable to fast-forward or rewind as the video looses it's information and plays the same frame till the end. But if i play from the beginning it plays fine.

    


    I compared using ffprobe my custom code remuxer results to that of using the following terminal command :

    


    ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.mp4


    


    To my surprise, the videos look almost identical but I'm noticing some differences in the reported distance and keyframe values. I also did a hex comparison and see minor differences at the end of the file which tells me I've muxed the frames correctly. What could I be missing ? Any tips or ideas would be really helpful !

    


    FFmpeg terminal remuxed video [WORKING VIDEO]
FFmpeg terminal working video

    


    Custom remuxer code video [SCRUBBING BROKEN]
Custom remuxer code video

    


    App.mp4 vs ffmpeg.mp4 remuxed video
Comparison of custom coded remuxer vs ffmpeg terminal concat to mp4 video.

    


  • Unable to scrub video after remuxing multiple mpeg-ts to mp4

    21 juillet 2022, par Jona

    I have written custom code to concat multiple mpeg-ts files into an mp4 video file. I've used as reference the remuxing code sample.

    


    I'm having issues with the final output. I'm unable to scrub the video on QuickTime. The final output seems to be missing something.

    


    I compared using ffprobe my custom code remuxer results to that of using the following terminal command :

    


    ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.mp4


    


    To my surprise, the videos look almost identical but I'm noticing some differences in the reported distance and keyframe values. I also did a hex comparison and see minor differences at the end of the file which tells me I've muxed the frames correctly. What could I be missing ? Any tips or ideas would be really helpful !

    


    FFmpeg terminal remuxed video [WORKING VIDEO]
FFmpeg terminal working video

    


    Custom remuxer code video [SCRUBBING BROKEN]
Custom remuxer code video

    


    App.mp4 vs ffmpeg.mp4 remuxed video
Comparison of custom coded remuxer vs ffmpeg terminal concat to mp4 video.

    


  • How to compres a image size to a desired file size in KBs using ffmpeg or python or Ubuntu Command line ?

    16 octobre 2017, par yash17

    I’m using ffmpeg to take a screenshot from a udp stream.
    Due to varying bit rates while transmission, the captured screenshot has different file size everytime.400KB,500KB..Eventhough it is screenshot of a same static page.

    Is there a way to get a specific file size everytime,in ffmpeg ?

    Or is there a command to convert a captured file to the desired KB using Python or through Ubuntu terminal ?

    Here is the command I’m using.

    ffmpeg -i udp://@XXX.XX.XX.XX:XXXX -vframes 1 -q:v 1 test.png

    I also tried the following commands in terminal,but it did nothing.

    convert -define jpeg:extent=100kb test.png output.png