
Recherche avancée
Autres articles (63)
-
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 (7927)
-
How to livestream on Youtube from a video in Google Drive without download ? [closed]
6 septembre 2023, par Ngọc Hoa DươngI have a bunch of video in Google Drive with large size of each video. Instead of download it to local and livesream, Have any solutions that I can livestream from Google Drive on Youtube ?


I try to use ffmpeg but seems no support for google drive


-
using ffmpeg to convert a mkv or mp4 suitable for a DVD player that supports MPEG-4 / DivX [closed]
17 juillet 2022, par Neil TelfordI got a DVD Player with USB support. It is a recent player (DVD-225), but the documentation is sparse, but it does claim MPEG-4 and DivX support.


Now, I have got certain AVI files to play via USB, but everything else fails. I looked at the metadata of an AVI file that worked via ffprobe, and got the following :


Metadata:
 encoder : Lavf58.17.101 Duration: 00:58:30.94, start: 0.000000, bitrate: 1336 kb/s
 Stream #0:0: Video: mpeg4 (Simple Profile) (xvid / 0x64697678), yuv420p, 640x290 [SAR 1:1 DAR 64:29], 1196 kb/s, 23.98 fps, 23.98 tbr,
23.98 tbn, 23.98 tbc
 Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, fltp, 128 kb/s



Now, I figured that if I can replicate the above, I can convert most things to play via USB, even if it isn't the most up to date codecs.


I've tried various combinations, but they all fail. The closest I got was by using the following shell script :


for i in *.avi; do ffmpeg -i "$i" -c:v mpeg4 -vtag divx -qscale:v 3 -c:a libmp3lame -qscale:a 4 "_${i%.*}.avi"; done



This has a strange result that it will play the audio track, but not the video track. The metadata I got from this was :


Metadata:
 encoder : Lavf58.45.100
 Duration: 00:58:07.99, start: 0.000000, bitrate: 3026 kb/s
 Stream #0:0: Video: mpeg4 (Simple Profile) (divx / 0x78766964), yuv420p, 1280x720 [SAR 3:4 DAR 4:3], 2901 kb/s, 23.98 fps, 23.98 tbr, 23.98 tbn, 24k tbc
 Metadata:
 title : ******************
 Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, fltp, 109 kb/s
 Metadata:
 title : ******************



Does anyone know where I am going wrong with this ? I've converted AVI, MKV and MP4 files, and while they work on my computer, the DVD player seems to be very picky.


Any suggestions ?


Thanks
Neil


-
C# Desktop recorder h.264 cross-"computer"
14 décembre 2013, par rodiI was looking for a method with "least requirements" for a maximum compatibility.
I have seen that there are mainly 2 ways : through directx, through .NET ( only >Win7) but both requires Win7 Or DirectX 9 installed.
could
ffmpeg
be useful ? I have tried following this Wiki, but it prompts me :> ffmpeg -f dshow -i video="UScreenCapture":audio="Microphone" output.flv
[dshow @ 00000000003ea700] Could not find video device.
video=UScreenCapture: Input/output errorAny advice ?