Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (43)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (6237)

  • ffmpeg for a android (using tutorial : "ffmpeg and Android.mk")

    13 septembre 2023, par Matthias

    I am trying to compile ffmpeg for a android. I have found several posts on this theme but non of these seems to work. If tried to build ffmpeg like it is posted on [1]. Did anybody successfully compile ffmpeg using theses tutorial ?
I am not sure how to realize step 4 to 5.

    



    


    STEP4 : Configuring ...

    
 


    STEP5 : cd to your NDK root dir, type make TARGET_ARCH=arm APP=ffmpeg-org

    


    



    It seems to me that building an application like it is explained in the tutorial in step 5 need some previous steps. Unfortunately I have no app in the folder to make. I am using the current android ndk release 3 and checked out the actual ffmpeg releases from [3] and [4]. I am thankful for every advice.

    



    [1] http://slworkthings.wordpress.com/
    
[2] http://gitorious.org/ olvaffe/ffmpeg/ffmpeg-android
    
[3] http://ffmpeg.org/download.html

    


  • Android : How to save two overlapped videos as one using mediacodec ?

    27 avril 2015, par Seba Niepodam

    I want to do something similar to this on android.

    I want to load video from file and display it twice with some transformations (mostly resize). And i want to encode it as one video file.

    Is it possible to do it in native android ? With mediacodec or in any other way ?

    I know there is a ffmpeg but i have trouble compiling it and working with Xamarin.

  • FFmpeg output video file much smaller than uncompressed input audio file, using option to preserve original audio quality

    17 mars 2021, par Jan

    I attempt to create a video slideshow from a number of image files and an audio file in 2 steps :

    


      

    1. Create a temporary video file from a sequence of image files
    2. 


    3. Add an audio file to the temporary video file with a delay of 5 seconds
    4. 


    


    The audio file is an uncompressed stereo wav file, encoded with a sample rate of 44100 Hz and a bit depth of 32 bits, with a size of 40.1 MB. To preserve the lossless quality of the input audio file I use the option -c:a aac -b:a 192k as per Slideshow Wiki. However, the final output video file has a size of only 4.49 MB.

    


    How can the output video file be about 10 times smaller than the input audio file and still preserve the original lossless quality ?

    


    My code :

    


    ffmpeg -f concat -i slide-sequence.txt -c:v libx264 -r 30 -filter_complex format=yuv420p temp.mp4
ffmpeg -i temp.mp4 -i audio.wav -af "adelay=5000|5000" -c:v copy -c:a aac -b:a 192k out.mp4