Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (90)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (3724)

  • Reduce apk size when using ffmpeg

    26 juillet 2021, par Anas Ansari

    I am building an app that can trim a video into multiple segments , for that purpose i have used ffmpeg library

    


    This command does all the work

    


    ffmpeg -i testfile.mp4 -c copy -f segment -segment_time 1200 testfile_piece_%02d.mp4

    


    But including this library increased my app size upto 45 mb

    


    I want to reduce my apk size

    


    I want help in

    


      

    • Deleting non required libs like x86 , x86_64
    • 


    • or Building ffmpeg with required libs only but i dont know which lib is required for segment purpose
    • 


    • and also I dont know how to build ffmpeg from source code
    • 


    


    I am using this library 'com.arthenica:mobile-ffmpeg-min-gpl:4.4.LTS'

    


  • How do I add gif and text overlay on mp4 video using ffmpeg-full-gpl in Android ? [duplicate]

    15 juin 2021, par Dnyaneshwar Panchal

    I used below ffmpeg command for add gif on mp4 video & it is working fine,

    


    The question is different I have used ffmpeg gpl library for now the reason is getting video low very that's because I have used this library.

    


    int cmd= FFmpeg.execute(new String[]{"-y", "-i", "a.mp4", "-ignore_loop", "0", "-i", 
"storage/emulated/0/watermark/watermark.gif", "-filter_complex", "overlay=5:5:shortest=1", "-c:v", 
"libx264", "-r", "10", "-preset:v", "ultrafast", "b.mp4"});


    


    But, I want to add gif with text also.
    
how to add text also in above command ?
    
I used below library for ffmpeg,

    


    implementation 'com.arthenica:mobile-ffmpeg-full-gpl:4.4'                               


    


  • How to add gif and text overlay on mp4 video using ffmpeg-full-gpl in android [duplicate]

    11 février 2021, par Dnyaneshwar Panchal

    I used below ffmpeg command for add gif on mp4 video & it is working fine,

    


    The question is different I have used ffmpeg gpl library for now the reason is getting video low very thats I have used this library.

    


    int cmd= FFmpeg.execute(new String[]{"-y", "-i", "a.mp4", "-ignore_loop", "0", "-i", 
"storage/emulated/0/watermark/watermark.gif", "-filter_complex", "overlay=5:5:shortest=1", "-c:v", 
"libx264", "-r", "10", "-preset:v", "ultrafast", "b.mp4"});


    


    But, I want to add gif with text also.
how to add text also in above command ? please help !
    
I used below library for ffmpeg,

    


    implementation 'com.arthenica:mobile-ffmpeg-full-gpl:4.4'


    


    Thanks in adv !