Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (67)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • ffmpeg bitrate/quality selection

    18 octobre 2020, par user209405

    I'm attempting to copy videos from a site. They are stored in 6 different resolutions, as an hls stream format. When I use the command ffmpeg -i http://c.brightcove.com/services/mobile/streaming/index/master.m3u8?videoId=5506754630001 -c copy output.ts I get the highest quality (1280x720). However, when I wget the .m3u8 I can see there are other qualities but am having trouble with how to copy those quality (i.e. 640x380). the original link is http://www.sportsnet.ca/hockey/nhl/analyzing-five-potential-trade-destinations-matt-duchene/.

    



    I'm hoping someone can help me out with this. Thank you.

    


  • Merge selected audio with camera recorded video in React Native

    13 avril 2023, par RoshaanAli

    I am trying to merge a different audio (like song audio) with the camera recorded video in react native.
Tiktok like video making functionality.
Is there any way to merge audio with the video to preview the recorded video with selected audio in react native app ??
I can use ffmpeg to merge audio and video but it is expensive task it will take more processing on mobile so that's why looking for other solutions.

    


    I have tried react native video player but there is not any prop to mute video audio and play different audio from link. May be some customizable player which play different video and different audio at the same time and control it

    


  • Android screencast function with Device been Root

    4 août 2015, par facebook-1663245907229773

    I am working on how to create a smooth mp4 format video in an android device which has been rooted. (This means that we already have the permission to access frame buffer).

    But now i have no idea to figure out this function. My current idea is :

    1. Screenshot a lot of screen image according to /dev/graphics/fb0

    2. Convert images to video use ffmpeg in android

    I am facing a few issues :

    1. I cant screenshot large images. This action is very costly to the CPU which may cause the mobile phone to run unsmoothly.

    2. Even if I screenshot enough images, it take lots of time to convert images into mp4 video.

    My ffmpeg command is as below :

     ./ffmpeg -y -f image2 -i /mnt/sdcard/image%d.jpg -s 320x240 /mnt/sdcard/temp/test.mp4

    Any suggestions ?