Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (72)

  • 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 ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

Sur d’autres sites (4338)

  • What is the algorithm to achieve audio decoding in C through ffmpeg ? [on hold]

    16 août 2018, par user8371461

    I want to decode the MP3 audio file, I want to know the algorithm in terms of C language API’s. I have gone through dranger tutorials. But the API’s they used are deprecated now. Could anyone tell me what are the API’s I need to follow one by one ?

  • How to segment a video file (using FFMPEG) to "encoded" version (i.e., .mp4 is downloaded from one our CDN servers) in which each chunk must be 4MB ?

    13 janvier 2019, par Danyal Zia

    I am using FFMPEG command-line/terminal tool. I have a video in .mp4 format. I am well educated on the segmentation of videos in terms of length/duration, however, I want to segment the chunks of the "encoded/transcoded" version of the video (which I downloaded from our CDN in.mp4) to 4MB (4000000 Bytes), except the last one, which will vary in size (i.e., to encode/decode the video fully). If I am having trouble explaining what I am seeking, then just know I have no interest in segmenting the video in terms of duration/length, as this is irrelevant for me.

    To explain the scenario : I have two copies of the same video. The one is "original" and the second video is the one that I downloaded from the server/CDN. The second video turns out to be corrupted (despite the fact that the video is downloaded successfully, and has the same length/duration) ; it stops playing around 1:12 minutes, even though the seeker/slider keeps progressing until somewhere around 1:45 minutes where the video and audio start to work again.

    I have done the binary comparison (using "fc" in CMD) of these two videos, and they are not the same at all.

    In a nutshell : I think I need to "encode" the corrupted .mp4 video, and then segment the encoded data to multiple versions of 4MB. I don’t know how can I do it from FFMPEG.

    If anything isn’t clear, then ask as many questions you want.

    Thank you for reading !

    Edit : The following seems to work, however, not all the chunks are equivalent to 4MB. What is a something I am doing the wrong way ?

    ffmpeg -i "original.mp4" -b:v 1000000 -g 60 -hls_time 2 -hls
    _list_size 0 -hls_segment_size 4000000 output.m3u8
  • What is the algorithm to acheive audio decoding in C through ffmpeg ?

    16 août 2018, par Nani

    I want to decode the MP3 audio file, I want to know the algorithm in terms of C language API’s. I have gone through dranger tutorials. But the API’s they used are deprecated now. Could anyone tell me what are the API’s I need to follow one by one ?