
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (83)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (12222)
-
How to change name of segments in m3u8 file [closed]
30 décembre 2020, par Rekabet KurumuI have flussonic media server. I'm transcoding rtmp to m3u8 file.


Here my transcode :




transcoder deviceid=0 external=false fps=30 gop=150 hw=nvenc
seamless=true vb=1024k vcodec=h264 open_gop=false preset=veryfast
profile=main deinterlace=adaptive deinterlace_rate=frame ab=copy ;




if stream name is "sample" output will be
foo.com/stream.m3u8
this is perfect. but inside m3u8 file outout looking like this

#EXTM3U
#EXT-X-TARGETDURATION:5
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:20633
#EXT-X-PROGRAM-DATE-TIME:2020-12-30T11:15:07Z
#EXTINF:5.000,
2020/12/30/11/15/07-05000.ts?token=ADM1-1609326905-99fddfc3eb912171a5b85e553588a563704f5fb9
#EXTINF:5.000,
2020/12/30/11/15/12-05000.ts?token=ADM1-1609326905-99fddfc3eb912171a5b85e553588a563704f5fb9
#EXTINF:5.000,
2020/12/30/11/15/17-05000.ts?token=ADM1-1609326905-99fddfc3eb912171a5b85e553588a563704f5fb9



output lookin
2020/12/30/11/15/
like this. i want this part will be microtime or time.

For example :


1609326905-05000.ts?token=99fddfc3eb912171a5b85e553588a563704f5fb9
1609327050-05000.ts?token=99fddfc3eb912171a5b85e553588a563704f5fb9
1609329450-05000.ts?token=99fddfc3eb912171a5b85e553588a563704f5fb9



is it possible ?


-
MOOV atom not found - is there a way how to extract the audio from corrupted mp4 ?
25 janvier 2021, par JZKI'm trying to recover mp4 video file. Having a video would be nice, having an audio is crucial.
I've recorded the fottage with LG v30 which has some kind of HQ audio, therefore normal recovery software is unable to recover it (video was recovered with ease).


That's why I want to try different approach - separate audio from video already from an corrupted file.


but, I'm hitting the "MOOV atom not found" problem, using FFmpeg command


ffmpeg -i sample.avi -q:a 0 -map a sample.mp3



Please help me. Thank you


-
Converting mkv to h264 FFmpeg
14 janvier 2021, par Rikus HoneyEDIT :
This question has become very popular and is one of the top results for searching "convert mkv to h264 ffmpeg" and thus I feel it is appropriate to add that for anyone stumbling upon this question to rather use


ffmpeg -i input.mkv -c:v libx264 -c:a aac output.mp4



as
libvo_aacenc
has been removed in recent versions of FFmpeg and it now has a native aac encoder. For more information visit the FFmpeg wiki page for encoding AAC.

Here is the original question :


I would like to convert my .mkv files to .mp4 using FFmpeg. I have tried the following code :


ffmpeg -i input.mkv -c:v libx264 -c:a libvo_aacenc output.mp4



But I get the error :




Error while opening encoder for output stream #0:1 - maybe incorrect parameters such as bit_rate, rate, width or height.




Is there any way to get around this ? I have tried setting the bitrate of the audio but the problem seems to persist.