Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (53)

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

  • video.js record timestamp blob is invalid after the first one [closed]

    10 octobre 2022, par Codengine

    I am building a video messaging service. I have used video.js and videojs record to record video and audio.

    


    I have used timeSlice option of record plugin to 2 second so every 2 second I get blobs which I cans save in server and then merge later.

    


    Everything is fine. I can get the blob and upload ins server.

    


    But the issue is - only the first blob is correct and othr blobs I cannot concate altogether. I have tried ffmpeg and opencv both to merge the videos in backend. Both says all but the first blob is incorrect.

    


    Need help on this. I have been strugging with this last few days with no solution yet.

    


  • laravel ffmpeg upload video in amazon s3 failed 504 gateway Time-out

    21 mai 2020, par Ahmed Al-Rayan

    Why after uploading a video size of more than 1 Giga, I see a problem in the nginx 504 gateway timeout preventing me from completing the processing process. The meaning of the video after uploading starts the processing process and because of this problem it does not go to processing use laravel ffmpeg and use amazon s3 service to store the videos on it and the entire site uploaded to Digital hosting

    


  • Can I use ffmpeg to output JPEGs to a memory stream instead of a file ?

    10 juillet 2024, par Andrew Simpson

    I have a C# app. I have 100 JPEGs (for an example).

    



    I can easily encode this into a video file.

    



    When it has finished encoding on the client app I FTP upload to my server.

    



    It would be 'neater' if I could not write the video file to a disc but instead write it to a memory stream (or array of bytes) and upload via web service perhaps ?

    



    I have checked out the ffmpeg documentation but as a C# developer I do not find it natural to understand the C examples.

    



    I guess my first question is it possible, and if so can anyone post an example code in C# ? At the moment I am using the process class in C# to execute ffmpeg.