Recherche avancée

Médias (91)

Autres articles (59)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • ffmpeg Inserting Extra Frame when Transcoding a Stack of Images Using H.264

    13 mars 2018, par JMevorach

    So I have a stack of images named 1.jpeg, 2.jpeg, and so on.

    I’ve been using the following command in Python successfully to create a .mp4 from these images :

    os.system("ffmpeg -f image2 -i %d.jpeg -vcodec libx264 -crf 17 -r " + str(FrameRate) + " " + OutputDirectory + "\\" + OutputName + ".mp4")

    The problem I’m encountering right now is that when I do this I am able to successfully create a video but the video is about twice as long as it should be. I can’t seem to figure out why ffmpeg would be inserting extra frames into my video. Any guidance in this would be greatly appreciated.

  • Default Pixel Format For FFMPEG For Encoding an Image Stack To Movie

    11 septembre 2017, par JMevorach

    If one was converting a stack of images to a .mp4 with FFMPEG using libx264 to encode h.264 video and one didn’t specify a pixel format in the call to FFMPEG is the default pixel format YUVJ420 ? I’ve been doing some experiments and have been getting results identical to if I specified YUVJ420 for my format versus if I specify no format.

  • Stack architecture for handling video uploadings

    18 septembre 2017, par Lunf

    I have Springboot app (on EC2 xlarge) which handle multi-part upload video from mobile apps. The average video file is 250 350MB which currently stored in local disk before ffmpeg thread is started to convert and upload to S3 then will be removed from local disk.

    The problem is the app server could not keep up with number of uploads concurrently (5 videos), and CPU, RAM is maxed out.

    My question is what is the strategies (architecture) to scale in order to handle more uploads concurrently and should I need to rewrite the app server in specific way to meet my goal, let say 50 videos.

    Thank you