Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (80)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

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

  • lavc/libutvideoenc : Cast an unsigned constant to int.

    12 mai 2016, par Carl Eugen Hoyos
    lavc/libutvideoenc : Cast an unsigned constant to int.
    

    Fixes the following warning / error :
    libavcodec/libutvideoenc.cpp:281:1 : warning : narrowing conversion of ‘3221258240u’ from ‘unsigned int’ to ‘int’ inside is ill-formed in C++11 [-Wnarrowing]

    Fixes ticket #5542.

    • [DH] libavcodec/libutvideoenc.cpp
  • avcodec/movtextenc : Ignore unmatched closing style tags

    23 avril 2017, par Philip Langdale
    avcodec/movtextenc : Ignore unmatched closing style tags
    

    The existing code will segfault if a closing tag shows up when there
    was never an opening tag. This isn't a well formed style, but it's also
    not a reason to crash.

    Fixes : https://trac.ffmpeg.org/ticket/6303

    • [DH] libavcodec/movtextenc.c
  • flutter_ffmpeg - Can we trim a part of the video in flutter while recording

    16 février 2021, par Mayur Agarwal

    I am making a flutter app, in which a user can record a video and pause in between, and when the user pauses the video a clip is formed.
So if the 4 clips are there, then 4th clip can be removed from the video (according to the time of the last clip).
By a clip I just mean the time interval between two continuous pauses. The video is being recorded continuously.
There's a way to trim a video after it's being record, for example,

    


     ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4


    


    But I think it's possible only when the video is recorded.

    


    So, Is there any way to to trim a video (using flutter_ffmpeg) or the last clip, while the recording is paused ?