Recherche avancée

Médias (91)

Autres articles (67)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (6468)

  • Restreaming an rtsp stream through ffmpeg on iOS

    6 avril 2017, par animaonline

    I have an iOS application that displays an rtsp stream from an IP camera on the local network, I would like to restream it to an external server in real time (Wowza to be specific) the server will take care of converting rtsp to HLS so that the users can view the live broadcast on their devices.

    On a computer it would be pretty straight forward :

    ffmpeg [input-options] -i [input-file] [output-options] [output-stream-URI]

    But I need to do it programmatically on iOS, and I’m not really sure if it’s even possible. Anyone ?

  • avformat/matroskaenc : Only write Cues at the front if space has been reserved

    2 mai 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Only write Cues at the front if space has been reserved
    

    If the AVIOContext for output was unseekable when writing the header,
    no space for Cues would be reserved even if the reserve_index_space
    option was used (because it is reasonable to expect that one can't seek
    back to the beginning to write the Cues anyway). But if the AVIOContext
    was seekable when writing the trailer, it was presumed that space for
    the Cues had been reserved when the reserve_index_space option indicated
    so even when it was not. As a result, the beginning of the file would be
    overwritten.

    This commit fixes this : If the reserve_index_space option had been used
    and no space has been reserved in advance because of unseekability when
    writing the header, then no attempt to write Cues will be performed
    when writing the trailer ; after all, writing them at the front is
    impossible and writing them at the end is probably undesired.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • FFmpeg & Installation on phpmyadmin [migrated]

    18 septembre 2011, par Vivek

    I am attempting to have an interface in which people can upload music files and listen to them through the site. The biggest problem obviously is that someone who uploads an audio track in mp3 format into Mozilla wouldn't be able to play it back (since MF doesn't support mp3 playback since I'm using jPlayer).

    I did some research and found out that I could use command line php using FFmpeg to convert the mp3 to ogg or some other supportable format. I believe I understand (a little bit) how command line php works but I was wondering how I could install it onto phpmyadmin on my hosting service ? Could anyone link me to a tutorial or care to explain ? I tried googling it but I just couldn't find it.