Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

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

Sur d’autres sites (11358)

  • Revision 12eb2d0267 : Correct bug in loopfilter initialization The memset sets 16 bytes rather than t

    9 août 2013, par Adrian Grange

    Changed Paths :
     Modify /vp9/common/vp9_loopfilter.c



    Correct bug in loopfilter initialization

    The memset sets 16 bytes rather than the correct size of the
    final array dimension (MAX_MODE_LF_DELTAS).

    (In response to bug posted by Manjit Hota to codec-devel
    and webm-discuss lists)

    Change-Id : I8980f5aa71ddc9d7ef57c5b4700bc28ddf8651c7

  • flutter_ffmpeg package name

    22 septembre 2021, par JoergP

    when installing flutter_ffmpeg I should set the package name in

    


    android/build.gradle

    


     ext {&#xA;  flutterFFmpegPackage  = "<flutter ffmpeg="ffmpeg" package="package" listed="listed" in="in" section="section">"&#xA;</flutter>

    &#xA;

    }

    &#xA;

    and in ios/Podfile

    &#xA;

    if plugin_name == &#x27;flutter_ffmpeg&#x27;&#xA;      pod &#x27;flutter_ffmpeg/<package>&#x27;, &#xA;</package>

    &#xA;

    Do I just enter "flutter_ffmpeg" here or is the "package name" different ?&#xA;How does the final code should look like ?

    &#xA;

    Thanks !

    &#xA;

  • Concat three videos with one audio [duplicate]

    26 septembre 2018, par Михаил Безуглый

    Thank you for coming here.
    I have three video clips (the first is 3 seconds, the second is 20 seconds, the third is 2 seconds), I connect them using the following command :

    ffmpeg -i opening.mp4 -i middle.mp4 -i ending.mp4 -filter_complex "[0:v] [1:v] [2:v] concat=n=3:v=1 [v]" -map "[v]" output.mp4

    Since all three videos do not have audio tracks, I do not need to include [a]. And then the day came when I needed it. I have an audio track,
    duration of 35 seconds(which is much larger than the output.mp4 video) and I need this audio to be connected to the whole video.
    1) Do I need to crop the video to the length that is obtained by merging all three videos ?
    2) Is it possible to do this with one command, or i need first have to concatetate all together with my command, and then merge video and audio track ?