Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (112)

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

  • flutter_ffmpeg - Can we trim a part of the video in flutter while recording

    16 février 2021, par Mayur Agarwal

    I am making a flutter app, in which a user can record a video and pause in between, and when the user pauses the video a clip is formed.
So if the 4 clips are there, then 4th clip can be removed from the video (according to the time of the last clip).
By a clip I just mean the time interval between two continuous pauses. The video is being recorded continuously.
There's a way to trim a video after it's being record, for example,

    


     ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4


    


    But I think it's possible only when the video is recorded.

    


    So, Is there any way to to trim a video (using flutter_ffmpeg) or the last clip, while the recording is paused ?

    


  • could use some help on ffprobe

    27 décembre 2016, par Telkoboy

    I’m currently running the following command and it’s giving me mostly what I need, but I would like to also have it include the file name.

    for %%A IN (%VAR0%\*.wav) DO "C:\program files (x86)\ffmpeg\bin\ffprobe" -i "%%A" -show_entries format=duration -v quiet -of csv="p=0" >>output.txt

    The above produces this :

    110.994375

    This is great, but what I would really want is something like this as I need to import this data into a db for further processing. I need to know which file the 110.9943765 came from.

    recording1.wav, 110.994375

    Thanks,

    Steven

  • how to decode the byte array data which is in .h264 format for ios ?

    29 janvier 2015, par kunthsam madhuveerasatish

    How to decode the byte array data which is in .h264 format for ios with use of ffmpeg ?