Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (86)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (5979)

  • extracting single frame FFmpeg Interop

    12 janvier 2016, par Jakub Wisniewski

    I am writing app (Windows Phone 8.1 Store App) that allows user to connect to IP Camera. I am using FFmpeg Interop library for ffmpeg which allows me to play eg. rtsp streams in media element. I need now a way to somehow extract a single frame from stream or from media element.

    I have tested other application wchih allows connecting to IP cameras - IP Centcom, and they have working snapshots only for mjpeg streams as far as I now (they were not working for rtsp). Becouse of that I belive that it is impossible or at very least very hard to export frame from media element.

    I have different question - if anyone has ever used FFmpeg Interop and would like to help/explain me how could I modify/extend FFmpegInteropMSS to add method called ’GetThumbnailForStream’ that would work similary to ’GetMediaStreamSource’ but would return single frame (bitmap or jpg) instead of MediaStreamSource ?

    Every help would be appreciated

  • Uploading single video file with subtitles to Facebook

    28 juin 2017, par Lukeg4

    I’m using ffmpeg to create a single video file with subtitles (captions) included for uploading to facebook.

    I’ve had success with creating the video file with subtitles included, but when I upload the file to facebook it comes up with no subtitles and no subtitle options.

    I can’t add subtitles manually on facebook, because the subtitles need to work across multiple platforms, and I can’t burn the subtitles permanently onto the video...

    So, is it possible to upload a single video file, with subtitles included (ideally an MPEG-4...), and have facebook recognise and use the subtitles that were included ? If not, are there any known workarounds ?

  • ffmpeg filter_complex single source input

    4 décembre 2022, par danunafig

    Qustions from ffmpeg newbie, after googling for answers with no luck.
I guess I am missing very basics.

    


      

    1. Is there a way to apply filter_complex (add transition) to the **single ** input source ? I would like to apply a xfade=transition effect at the specific second of my video.mp4.

      


    2. 


    3. I there a way to apply multi fadein and fadeout filters to the single input source in one request ?

      


    4. 


    


    Tried :
1.

    


        -i video.mp4 -filter_complex xfade=transition=dissolve:duration=3:offset=3 out.mp4


    


    got an error, as I have only one source input

    


    2.

    


        fade=in:0:50
    fade=out:100:50
    fade=in:200:50


    


    getting black screen (adding just one fadein and fideout works file)
Thank you