
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (67)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Ecrire une actualité
21 juin 2013, parPré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 (11928)
-
avutil/softfloat : use abort() instead of av_assert0(0)
10 novembre 2015, par James Almer -
Asynchronous ffmpeg downloading not working with HLS source
23 août 2024, par Ali HusseinI have read about the async puller for HTTP client in ffmpeg to pull streams asynchronously. it seems it cannot pull the .ts files from the playlist file and this is a sample of the errors


[hls @ 0x55aa48240c00] Skip ('#EXT-X-VERSION:3')
[AVIOContext @ 0x55aa482a0700] Statistics: 519 bytes read, 0 seeks
[hls @ 0x55aa48240c00] Opening 'async:https://127.0.0.1/input.m3u8' for reading
[async @ 0x55aa482a5d80] No default whitelist set
[https @ 0x55aa48288dc0] Setting default whitelist 'http,https,tls,rtp,tcp,udp,crypto,httpproxy'
[tcp @ 0x55aa482a6400] Original list of addresses:
[tcp @ 0x55aa482a6400] Address 127.0.0.1 port 443
[tcp @ 0x55aa482a6400] Interleaved list of addresses:
[tcp @ 0x55aa482a6400] Address 127.0.0.1 port 443
[tcp @ 0x55aa482a6400] Starting connection attempt to 127.0.0.1 port 443
[tcp @ 0x55aa482a6400] Successfully connected to 127.0.0.1 port 443
[https @ 0x55aa48288dc0] request: GET /input.m3u8 HTTP/1.1
User-Agent: Lavf/58.76.100
Accept: */*
Range: bytes=0-
Connection: keep-alive
Host: localhost
Icy-MetaData: 1

[hls @ 0x55aa48240c00] Skip ('#EXT-X-VERSION:3')
[AVIOContext @ 0x55aa482a6040] Statistics: 519 bytes read, 0 seeks
[hls @ 0x55aa48240c00] HLS request for url 'async:https://127.0.0.1/input_1664112.ts', offset 0, playlist 0
[hls @ 0x55aa48240c00] Failed to open segment 1664112 of playlist 0
[hls @ 0x55aa48240c00] Opening 'async:https://127.0.0.1/input.m3u8' for reading
[async @ 0x55aa48288dc0] No default whitelist set
[https @ 0x55aa482a5d80] Setting default whitelist 'http,https,tls,rtp,tcp,udp,crypto,httpproxy'
[tcp @ 0x55aa48283b40] Original list of addresses:
[tcp @ 0x55aa48283b40] Address 127.0.0.1 port 443
[tcp @ 0x55aa48283b40] Interleaved list of addresses:
[tcp @ 0x55aa48283b40] Address 127.0.0.1 port 443
[tcp @ 0x55aa48283b40] Starting connection attempt to 127.0.0.1 port 443
[tcp @ 0x55aa48283b40] Successfully connected to 127.0.0.1 port 443
[https @ 0x55aa482a5d80] request: GET /input.m3u8 HTTP/1.1
User-Agent: Lavf/58.76.100
Accept: */*
Range: bytes=0-
Connection: keep-alive
Host: localhost
Icy-MetaData: 1



By the way, the stream is playable perfectly in VLC.


-
Getting "moov atom not found" error on linux but not windows/mac ?
22 juin 2020, par flynnstone9Hey I have a tool I built that makes a video for me and it works locally on a mac / windows machine. I setup a digital ocean ubuntu server to host my app and the final video is giving a "moov atom not found" when running ffprobe output.mp4.


The way the video is being created is thru this cmd :




ffmpeg -i 1.mp4 -i 3.mp4 -filter_complex "[0:v][0:a][1:v][1:a]concat=n=2:v=1:a=1" output.mp4




I'm using slightly different versions of ffmpeg on linux v Mac. I was running 4.3-2ubuntu0 18.04.sav0 on linux and ffmpeg version 4.2.2 on Mac.


Is this a linux specific issue or is it something with the video container I'm missing ?