Recherche avancée

Médias (91)

Autres articles (52)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5868)

  • How can I capture screen (in video format) in HTML 5 ?

    27 août 2012, par user1627117

    I want to capture the screen (or all the actions done in a canvas). I require this in video format and do not want a screenshot but a video of all actions done on the screen over a period of time.

    I want to implement this functionality in HTML5.

    Please advise. Also if this is not possible in HTML5, please suggest alternative technology for this ?

  • ffmpeg Video not converting from .mp4 to .ts format

    21 novembre 2019, par Shivaji Boraye

    We are using RecordRTC to record video. We have used "video/mp4" mimeType and recording the video and uploading to the upload directory using the PHP file upload function.

    Here is the function that I have used to record using RecordRTC

    recorder = RecordRTC(stream, {type: 'video',mimeType: 'video/mp4'});

    We have checked the uploaded file and played on multiple browsers and multiple devices and it’s playing video properly.

    But when we try to convert video from .mp4 to .ts format generating 0B .ts file. We have searched but not found any proper solution. We have converted video using FFmpeg and executing with exec() PHP function.

    We are using the below command to convert from .mp4 to .ts format

    exec(’ffmpeg -i abc.mp4 -c copy -framerate 30 -bsf:v h264_mp4toannexb
    -f mpegts -crf 32 pqr.ts’) ;

    So can anyone please check and let us know is there any solution.

    Thanks in advance.

  • is it possible to play h264-mpegts format in ios ?

    11 octobre 2012, par jAckOdE

    Server transcodes the video to the h264/aac, and send video data to client simultaneously. To play and save the video data at the same time, I use mpegts as the container format, but the problem is that ios MediaPlayer can not play mpegts file.

    Google said that i can used ios-build of ffmpeg to do the task, but it seem to be an overkill. is there any other ways to play mpegts in iphone using just iOS SDK ?