Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (37)

  • 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

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

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

  • Moviepy swap text mid video

    22 mai 2022, par Runeater DaWizKid

    I want to write text to a video and have it change mid playback, this is what I've tried but it overlays each text on eachother and only displays the text for 5 seconds ?

    


    def generateVideo(initial_text, secondary_text, tertiary_text):
    text_clip = TextClip(txt=initial_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip = text_clip.set_position('center').set_duration(5)

    text_clip_secondary = TextClip(txt=secondary_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip_secondary = text_clip_secondary.set_position('center').set_duration(10).cutout(0, 5)

    text_clip_tertiary = TextClip(txt=tertiary_text, color='AntiqueWhite1', font='Arial-Bold', fontsize=100)
    text_clip_tertiary = text_clip_tertiary.set_position('center').set_duration(15).cutout(0, 10)
    
    new_video = ColorClip(size=(1920, 1080), color=(0,0,0), duration=15)
    new_video.fps = 24
    
    new_video = CompositeVideoClip([new_video, text_clip, text_clip_secondary, text_clip_tertiary])

    new_video.write_videofile(codec='mpeg4', filename="test.mp4")
    new_video.close()


    


    Anyone see what im doing wrong ?

    


    Edit :
I've also tried the appropriate calls to subclip(pos1, pos2), ie

    


    text_clip_secondary = text_clip_secondary.set_position('center').set_duration(15).subclip(5, 10)


    


    With the same results

    


  • avformat/movenc : enable handle_eac3 to handle AC-3 tracks

    1er juin 2022, par Jan Ekström
    avformat/movenc : enable handle_eac3 to handle AC-3 tracks
    

    Add the AC-3 frame type, as well as early exit from additional packet
    parsing in case of AC-3, as only a single packet is required to get
    the required information.

    Additionally, expose ac3_bit_rate_code via the eac3_info struct as
    it is required for AC3SpecificBox.

    Signed-off-by : Jan Ekström <jan.ekstrom@24i.com>

    • [DH] libavformat/movenc.c
  • Unknown encoder 'libx265' when using command in Android studio java

    26 mai 2023, par Entwickler Witze

    I try to compress a video using a library and running a FFmpeg command in my android app written in java (although the library is in Kotlin)&#xA;I manage to do basic operations but the current one I am going to show you will always fail with the following error code : Unknown encoder 'libx265'

    &#xA;

    The library expects the input to be a String[] and I assume that there is something going wrong but I cannot find what exactly.

    &#xA;

    the command line

    &#xA;

        val query:Array<string> = arrayOf("-i", videoPath , "-c:v" , "libx265" ,"preset", "fast", "-crf", "30", "-tag:v", "hvc1", "-c:a", "eac3", "-b:a", "224k" ,            "$videoPath.mp4");&#xA;</string>

    &#xA;

    the entire code

    &#xA;

    fun videoCompress(videoPath: String) {&#xA;    val query:Array<string> = arrayOf("-i", videoPath , "-c:v" , "libx265" ,"-preset", "fast", "-crf", "30", "-tag:v", "hvc1", "-c:a", "eac3", "-b:a", "224k" , "$videoPath.mp4");&#xA;&#xA;    CallBackOfQuery().callQuery(query, object : FFmpegCallBack {&#xA;        override fun statisticsProcess(statistics: Statistics) {&#xA;            Log.i("FFMPEG LOG : ", statistics.videoFrameNumber.toString())&#xA;        }&#xA;&#xA;        override fun process(logMessage: LogMessage) {&#xA;            Log.i("FFMPEG LOG : ", logMessage.text)&#xA;        }&#xA;&#xA;        override fun success() {&#xA;            Log.d("yyyy", "success: ")&#xA;        }&#xA;&#xA;        override fun cancel() {&#xA;        }&#xA;&#xA;        override fun failed() {&#xA;        }&#xA;    })&#xA;}&#xA;</string>

    &#xA;

    The Log from the code

    &#xA;

    what I added to my build.gradle file

    &#xA;

        implementation &#x27;com.github.SimformSolutionsPvtLtd:SSffmpegVideoOperation:1.0.8&#x27;&#xA;

    &#xA;

    the result (exact)

    &#xA;

    Unknown encoder 'libx265'

    &#xA;